diff --git a/common/define-grammar.js b/common/define-grammar.js index 6284c19f..7c97216d 100644 --- a/common/define-grammar.js +++ b/common/define-grammar.js @@ -1324,7 +1324,7 @@ module.exports = function defineGrammar(dialect) { '\'', ), - string_value: _ => token(prec(1, repeat1(/\\'|\\\\|\\?[^'\\]/))), // prec(1, ...) is needed to avoid conflict with $.comment + string_value: _ => token(repeat1(/\\'|\\\\|\\?[^'\\]/)), heredoc_body: $ => seq($._new_line, repeat1(prec.right( @@ -1512,7 +1512,7 @@ module.exports = function defineGrammar(dialect) { keyword('static'), ), - comment: _ => token(choice( + comment: _ => token(prec(-1, choice( seq( choice('//', /#[^?\[?\r?\n]/), repeat(/[^?\r?\n]|\?[^>\r\n]/), @@ -1524,7 +1524,7 @@ module.exports = function defineGrammar(dialect) { /[^*]*\*+([^/*][^*]*\*+)*/, '/', ), - )), + ))), _semicolon: $ => choice($._automatic_semicolon, ';'), }, diff --git a/php/src/grammar.json b/php/src/grammar.json index b858762c..98688f78 100644 --- a/php/src/grammar.json +++ b/php/src/grammar.json @@ -7181,14 +7181,10 @@ "string_value": { "type": "TOKEN", "content": { - "type": "PREC", - "value": 1, + "type": "REPEAT1", "content": { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "\\\\'|\\\\\\\\|\\\\?[^'\\\\]" - } + "type": "PATTERN", + "value": "\\\\'|\\\\\\\\|\\\\?[^'\\\\]" } } }, @@ -8839,67 +8835,71 @@ "comment": { "type": "TOKEN", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "//" - }, - { + "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": "PATTERN", - "value": "#[^?\\[?\\r?\\n]" + "value": "[^?\\r?\\n]|\\?[^>\\r\\n]" } - ] - }, - { - "type": "REPEAT", - "content": { + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "\\?\\r?\\n" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "STRING", + "value": "#" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/*" + }, + { "type": "PATTERN", - "value": "[^?\\r?\\n]|\\?[^>\\r\\n]" + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" + }, + { + "type": "STRING", + "value": "/" } - }, - { - "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 1394fdbe..3ef0d120 100644 --- a/php/src/parser.c +++ b/php/src/parser.c @@ -6492,90 +6492,90 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); switch (state) { case 0: - if (eof) ADVANCE(74); - if (lookahead == '!') ADVANCE(143); - if (lookahead == '"') ADVANCE(190); - if (lookahead == '#') ADVANCE(279); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '&') ADVANCE(93); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(229); - if (lookahead == '+') ADVANCE(135); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(138); - if (lookahead == '.') ADVANCE(227); - if (lookahead == '/') ADVANCE(232); - if (lookahead == '0') ADVANCE(124); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(215); - if (lookahead == '=') ADVANCE(96); - if (lookahead == '>') ADVANCE(216); - if (lookahead == '?') ADVANCE(106); - if (lookahead == '@') ADVANCE(132); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(206); - if (lookahead == '_') ADVANCE(274); - if (lookahead == '`') ADVANCE(195); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '|') ADVANCE(112); - if (lookahead == '}') ADVANCE(99); - if (lookahead == '~') ADVANCE(141); + if (eof) ADVANCE(78); + if (lookahead == '!') ADVANCE(149); + if (lookahead == '"') ADVANCE(196); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '%') ADVANCE(240); + if (lookahead == '&') ADVANCE(98); + if (lookahead == '\'') ADVANCE(200); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(110); + if (lookahead == '*') ADVANCE(235); + if (lookahead == '+') ADVANCE(141); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '.') ADVANCE(233); + if (lookahead == '/') ADVANCE(238); + if (lookahead == '0') ADVANCE(130); + if (lookahead == ':') ADVANCE(107); + if (lookahead == ';') ADVANCE(95); + if (lookahead == '<') ADVANCE(221); + if (lookahead == '=') ADVANCE(101); + if (lookahead == '>') ADVANCE(222); + if (lookahead == '?') ADVANCE(112); + if (lookahead == '@') ADVANCE(138); + if (lookahead == '[') ADVANCE(170); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == ']') ADVANCE(171); + if (lookahead == '^') ADVANCE(212); + if (lookahead == '_') ADVANCE(280); + if (lookahead == '`') ADVANCE(201); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(105); + if (lookahead == '~') ADVANCE(147); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(262); + lookahead == 'a') ADVANCE(268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(235); + lookahead == 'b') ADVANCE(241); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(238); + lookahead == 'e') ADVANCE(244); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(239); + lookahead == 'f') ADVANCE(245); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(257); + lookahead == 'i') ADVANCE(263); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(272); + lookahead == 'n') ADVANCE(278); if (lookahead == 'S' || - lookahead == 's') ADVANCE(265); + lookahead == 's') ADVANCE(271); if (lookahead == 'T' || - lookahead == 't') ADVANCE(261); + lookahead == 't') ADVANCE(267); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(255); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + lookahead == 'u') ADVANCE(261); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(69) + lookahead == 65279) SKIP(74) if (('C' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(277); + if (lookahead == '\n') ADVANCE(283); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(277); + if (lookahead == '\n') ADVANCE(283); if (lookahead == '\r') ADVANCE(1); if (lookahead != 0 && - lookahead != '>') ADVANCE(278); + lookahead != '>') ADVANCE(284); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(191); - if (lookahead == '\r') ADVANCE(191); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '-') ADVANCE(34); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '<') ADVANCE(40); - if (lookahead == '?') ADVANCE(36); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(58); - if (lookahead == '{') ADVANCE(98); + if (lookahead == '\n') ADVANCE(197); + if (lookahead == '\r') ADVANCE(197); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '-') ADVANCE(39); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '<') ADVANCE(45); + if (lookahead == '?') ADVANCE(41); + if (lookahead == '[') ADVANCE(170); + if (lookahead == '\\') ADVANCE(63); + if (lookahead == '{') ADVANCE(104); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 160 || @@ -6584,18 +6584,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(4) END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(191); - if (lookahead == '\r') ADVANCE(191); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '-') ADVANCE(34); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '<') ADVANCE(40); - if (lookahead == '?') ADVANCE(36); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(41); - if (lookahead == '{') ADVANCE(98); + if (lookahead == '\n') ADVANCE(197); + if (lookahead == '\r') ADVANCE(197); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '-') ADVANCE(39); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '<') ADVANCE(45); + if (lookahead == '?') ADVANCE(41); + if (lookahead == '[') ADVANCE(170); + if (lookahead == '\\') ADVANCE(46); + if (lookahead == '{') ADVANCE(104); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 160 || @@ -6604,11 +6604,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(4) END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(192); - if (lookahead == '\r') ADVANCE(192); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '?') ADVANCE(38); + if (lookahead == '\n') ADVANCE(198); + if (lookahead == '\r') ADVANCE(198); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '?') ADVANCE(43); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 160 || @@ -6617,53 +6617,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(5) END_STATE(); case 6: - if (lookahead == '!') ADVANCE(143); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(279); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '%') ADVANCE(233); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(230); - if (lookahead == '+') ADVANCE(134); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '.') ADVANCE(227); - if (lookahead == '/') ADVANCE(231); - if (lookahead == '0') ADVANCE(124); - if (lookahead == ':') ADVANCE(100); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(212); - if (lookahead == '=') ADVANCE(33); - if (lookahead == '>') ADVANCE(217); - if (lookahead == '?') ADVANCE(110); - if (lookahead == '@') ADVANCE(132); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(205); - if (lookahead == '_') ADVANCE(274); - if (lookahead == '`') ADVANCE(195); - if (lookahead == '|') ADVANCE(113); - if (lookahead == '}') ADVANCE(99); - if (lookahead == '~') ADVANCE(141); + if (lookahead == '!') ADVANCE(149); + if (lookahead == '"') ADVANCE(183); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '%') ADVANCE(239); + if (lookahead == '&') ADVANCE(97); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(110); + if (lookahead == '*') ADVANCE(236); + if (lookahead == '+') ADVANCE(140); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(143); + if (lookahead == '.') ADVANCE(233); + if (lookahead == '/') ADVANCE(237); + if (lookahead == '0') ADVANCE(130); + if (lookahead == ':') ADVANCE(106); + if (lookahead == ';') ADVANCE(95); + if (lookahead == '<') ADVANCE(218); + if (lookahead == '=') ADVANCE(38); + if (lookahead == '>') ADVANCE(223); + if (lookahead == '?') ADVANCE(116); + if (lookahead == '@') ADVANCE(138); + if (lookahead == '[') ADVANCE(170); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == ']') ADVANCE(171); + if (lookahead == '^') ADVANCE(211); + if (lookahead == '_') ADVANCE(280); + if (lookahead == '`') ADVANCE(201); + if (lookahead == '|') ADVANCE(119); + if (lookahead == '}') ADVANCE(105); + if (lookahead == '~') ADVANCE(147); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(262); + lookahead == 'a') ADVANCE(268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(236); + lookahead == 'b') ADVANCE(242); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(238); + lookahead == 'e') ADVANCE(244); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(240); + lookahead == 'f') ADVANCE(246); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(272); + lookahead == 'n') ADVANCE(278); if (lookahead == 'S' || - lookahead == 's') ADVANCE(270); + lookahead == 's') ADVANCE(276); if (lookahead == 'T' || - lookahead == 't') ADVANCE(261); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + lookahead == 't') ADVANCE(267); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6671,47 +6671,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(6) if (('C' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(142); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(279); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '+') ADVANCE(134); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '.') ADVANCE(120); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(124); - if (lookahead == '<') ADVANCE(31); - if (lookahead == '?') ADVANCE(38); - if (lookahead == '@') ADVANCE(132); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '_') ADVANCE(274); - if (lookahead == '`') ADVANCE(195); - if (lookahead == '~') ADVANCE(141); + if (lookahead == '!') ADVANCE(148); + if (lookahead == '"') ADVANCE(183); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(110); + if (lookahead == '+') ADVANCE(140); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(143); + if (lookahead == '.') ADVANCE(126); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '0') ADVANCE(130); + if (lookahead == '<') ADVANCE(36); + if (lookahead == '?') ADVANCE(43); + if (lookahead == '@') ADVANCE(138); + if (lookahead == '[') ADVANCE(170); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == ']') ADVANCE(171); + if (lookahead == '_') ADVANCE(280); + if (lookahead == '`') ADVANCE(201); + if (lookahead == '~') ADVANCE(147); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(262); + lookahead == 'a') ADVANCE(268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(236); + lookahead == 'b') ADVANCE(242); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(238); + lookahead == 'e') ADVANCE(244); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(240); + lookahead == 'f') ADVANCE(246); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(272); + lookahead == 'n') ADVANCE(278); if (lookahead == 'S' || - lookahead == 's') ADVANCE(270); + lookahead == 's') ADVANCE(276); if (lookahead == 'T' || - lookahead == 't') ADVANCE(261); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + lookahead == 't') ADVANCE(267); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6720,47 +6720,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(7) if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(142); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(279); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == '+') ADVANCE(134); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '.') ADVANCE(121); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(124); - if (lookahead == '<') ADVANCE(31); - if (lookahead == '?') ADVANCE(38); - if (lookahead == '@') ADVANCE(132); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == '_') ADVANCE(274); - if (lookahead == '`') ADVANCE(195); - if (lookahead == '~') ADVANCE(141); + if (lookahead == '!') ADVANCE(148); + if (lookahead == '"') ADVANCE(183); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '(') ADVANCE(109); + if (lookahead == '+') ADVANCE(140); + if (lookahead == '-') ADVANCE(143); + if (lookahead == '.') ADVANCE(127); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '0') ADVANCE(130); + if (lookahead == '<') ADVANCE(36); + if (lookahead == '?') ADVANCE(43); + if (lookahead == '@') ADVANCE(138); + if (lookahead == '[') ADVANCE(170); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == '_') ADVANCE(280); + if (lookahead == '`') ADVANCE(201); + if (lookahead == '~') ADVANCE(147); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(262); + lookahead == 'a') ADVANCE(268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(235); + lookahead == 'b') ADVANCE(241); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(238); + lookahead == 'e') ADVANCE(244); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(239); + lookahead == 'f') ADVANCE(245); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(257); + lookahead == 'i') ADVANCE(263); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(272); + lookahead == 'n') ADVANCE(278); if (lookahead == 'S' || - lookahead == 's') ADVANCE(265); + lookahead == 's') ADVANCE(271); if (lookahead == 'T' || - lookahead == 't') ADVANCE(261); + lookahead == 't') ADVANCE(267); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(255); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + lookahead == 'u') ADVANCE(261); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6769,222 +6769,202 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(8) if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '"') ADVANCE(190); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '%') ADVANCE(233); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(230); - if (lookahead == '+') ADVANCE(133); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(140); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(231); - if (lookahead == '0') ADVANCE(129); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(214); - if (lookahead == '=') ADVANCE(96); - if (lookahead == '>') ADVANCE(217); - if (lookahead == '?') ADVANCE(108); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(205); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '|') ADVANCE(113); - if (lookahead == '}') ADVANCE(99); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); + if (lookahead == '!') ADVANCE(37); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '%') ADVANCE(239); + if (lookahead == '&') ADVANCE(97); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(110); + if (lookahead == '*') ADVANCE(236); + if (lookahead == '+') ADVANCE(139); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(146); + if (lookahead == '.') ADVANCE(232); + if (lookahead == '/') ADVANCE(237); + if (lookahead == ':') ADVANCE(107); + if (lookahead == ';') ADVANCE(95); + if (lookahead == '<') ADVANCE(220); + if (lookahead == '=') ADVANCE(101); + if (lookahead == '>') ADVANCE(223); + if (lookahead == '?') ADVANCE(114); + if (lookahead == '[') ADVANCE(170); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == ']') ADVANCE(171); + if (lookahead == '^') ADVANCE(211); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '|') ADVANCE(119); + if (lookahead == '}') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(12) + lookahead == 65279) SKIP(9) if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '%') ADVANCE(233); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(230); - if (lookahead == '+') ADVANCE(134); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(139); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(231); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(214); - if (lookahead == '=') ADVANCE(33); - if (lookahead == '>') ADVANCE(217); - if (lookahead == '?') ADVANCE(108); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(58); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(205); - if (lookahead == '`') ADVANCE(195); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '|') ADVANCE(113); - if (lookahead == '}') ADVANCE(99); + if (lookahead == '!') ADVANCE(37); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '%') ADVANCE(240); + if (lookahead == '&') ADVANCE(98); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(110); + if (lookahead == '*') ADVANCE(235); + if (lookahead == '+') ADVANCE(141); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '.') ADVANCE(234); + if (lookahead == '/') ADVANCE(238); + if (lookahead == ':') ADVANCE(107); + if (lookahead == ';') ADVANCE(95); + if (lookahead == '<') ADVANCE(219); + if (lookahead == '=') ADVANCE(101); + if (lookahead == '>') ADVANCE(222); + if (lookahead == '?') ADVANCE(113); + if (lookahead == '[') ADVANCE(170); + if (lookahead == ']') ADVANCE(171); + if (lookahead == '^') ADVANCE(212); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(11) - if (('A' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + lookahead == 65279) SKIP(10) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '%') ADVANCE(233); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(230); - if (lookahead == '+') ADVANCE(134); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(139); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(231); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(214); - if (lookahead == '=') ADVANCE(33); - if (lookahead == '>') ADVANCE(217); - if (lookahead == '?') ADVANCE(108); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(41); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(205); - if (lookahead == '`') ADVANCE(195); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '|') ADVANCE(113); - if (lookahead == '}') ADVANCE(99); + if (lookahead == '!') ADVANCE(37); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '%') ADVANCE(239); + if (lookahead == '&') ADVANCE(97); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(110); + if (lookahead == '*') ADVANCE(236); + if (lookahead == '+') ADVANCE(140); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(145); + if (lookahead == '.') ADVANCE(232); + if (lookahead == '/') ADVANCE(237); + if (lookahead == ':') ADVANCE(107); + if (lookahead == ';') ADVANCE(95); + if (lookahead == '<') ADVANCE(220); + if (lookahead == '=') ADVANCE(38); + if (lookahead == '>') ADVANCE(223); + if (lookahead == '?') ADVANCE(114); + if (lookahead == '[') ADVANCE(170); + if (lookahead == ']') ADVANCE(171); + if (lookahead == '^') ADVANCE(211); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '|') ADVANCE(119); + if (lookahead == '}') ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(11) - if (('A' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '%') ADVANCE(233); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(230); - if (lookahead == '+') ADVANCE(133); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(140); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(231); - if (lookahead == '0') ADVANCE(129); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(214); - if (lookahead == '=') ADVANCE(96); - if (lookahead == '>') ADVANCE(217); - if (lookahead == '?') ADVANCE(108); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(205); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '|') ADVANCE(113); - if (lookahead == '}') ADVANCE(99); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); + if (lookahead == '!') ADVANCE(37); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '%') ADVANCE(239); + if (lookahead == '&') ADVANCE(97); + if (lookahead == ')') ADVANCE(110); + if (lookahead == '*') ADVANCE(236); + if (lookahead == '+') ADVANCE(139); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '.') ADVANCE(232); + if (lookahead == '/') ADVANCE(237); + if (lookahead == ':') ADVANCE(106); + if (lookahead == ';') ADVANCE(95); + if (lookahead == '<') ADVANCE(220); + if (lookahead == '=') ADVANCE(38); + if (lookahead == '>') ADVANCE(223); + if (lookahead == '?') ADVANCE(116); + if (lookahead == ']') ADVANCE(171); + if (lookahead == '^') ADVANCE(211); + if (lookahead == '|') ADVANCE(119); + if (lookahead == '}') ADVANCE(105); 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') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '%') ADVANCE(233); - if (lookahead == '&') ADVANCE(92); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(230); - if (lookahead == '+') ADVANCE(133); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(136); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(231); - if (lookahead == ':') ADVANCE(100); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(214); - if (lookahead == '=') ADVANCE(33); - if (lookahead == '>') ADVANCE(217); - if (lookahead == '?') ADVANCE(110); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(205); - if (lookahead == '|') ADVANCE(113); - if (lookahead == '}') ADVANCE(99); + if (lookahead == '"') ADVANCE(196); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '\'') ADVANCE(200); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '.') ADVANCE(31); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '0') ADVANCE(135); + if (lookahead == ':') ADVANCE(106); + if (lookahead == ';') ADVANCE(95); + if (lookahead == '=') ADVANCE(40); + if (lookahead == '?') ADVANCE(115); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '}') ADVANCE(105); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(13) + lookahead == 65279) SKIP(21) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); case 14: - if (lookahead == '"') ADVANCE(176); - if (lookahead == '\'') ADVANCE(178); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '\'') ADVANCE(184); END_STATE(); case 15: - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(279); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '<') ADVANCE(31); - if (lookahead == '?') ADVANCE(38); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); + if (lookahead == '"') ADVANCE(183); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '(') ADVANCE(109); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '<') ADVANCE(36); + if (lookahead == '?') ADVANCE(43); + if (lookahead == '[') ADVANCE(170); + if (lookahead == '\\') ADVANCE(103); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(262); + lookahead == 'a') ADVANCE(268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(236); + lookahead == 'b') ADVANCE(242); if (lookahead == 'S' || - lookahead == 's') ADVANCE(270); + lookahead == 's') ADVANCE(276); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6994,29 +6974,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); case 16: - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(129); - if (lookahead == '<') ADVANCE(31); - if (lookahead == '?') ADVANCE(38); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == '}') ADVANCE(99); + if (lookahead == '"') ADVANCE(183); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(110); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(39); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '0') ADVANCE(135); + if (lookahead == ':') ADVANCE(34); + if (lookahead == '<') ADVANCE(36); + if (lookahead == '?') ADVANCE(30); + if (lookahead == '[') ADVANCE(170); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == ']') ADVANCE(171); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '}') ADVANCE(105); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(262); + lookahead == 'a') ADVANCE(268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(236); + lookahead == 'b') ADVANCE(242); if (lookahead == 'S' || - lookahead == 's') ADVANCE(270); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); + lookahead == 's') ADVANCE(276); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7026,64 +7012,86 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '.') ADVANCE(121); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(124); - if (lookahead == '<') ADVANCE(31); - if (lookahead == '?') ADVANCE(38); - if (lookahead == '_') ADVANCE(61); + if (lookahead == '"') ADVANCE(183); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '-') ADVANCE(39); + if (lookahead == '.') ADVANCE(127); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '0') ADVANCE(130); + if (lookahead == '<') ADVANCE(36); + if (lookahead == '?') ADVANCE(43); + if (lookahead == '[') ADVANCE(170); + if (lookahead == '\\') ADVANCE(63); + if (lookahead == '_') ADVANCE(66); + if (lookahead == '`') ADVANCE(201); + if (lookahead == '{') ADVANCE(104); if (lookahead == 'B' || lookahead == 'b') ADVANCE(14); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(43); + lookahead == 'e') ADVANCE(48); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(44); + lookahead == 'f') ADVANCE(49); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(54); + lookahead == 'n') ADVANCE(59); if (lookahead == 'T' || - lookahead == 't') ADVANCE(51); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + lookahead == 't') ADVANCE(56); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(17) + lookahead == 65279) SKIP(18) END_STATE(); case 18: - if (lookahead == '#') ADVANCE(279); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '&') ADVANCE(91); - if (lookahead == ')') ADVANCE(104); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '.') ADVANCE(27); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '?') ADVANCE(109); - if (lookahead == '\\') ADVANCE(97); + if (lookahead == '"') ADVANCE(183); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '-') ADVANCE(39); + if (lookahead == '.') ADVANCE(127); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '0') ADVANCE(130); + if (lookahead == '<') ADVANCE(36); + if (lookahead == '?') ADVANCE(43); + if (lookahead == '[') ADVANCE(170); + if (lookahead == '\\') ADVANCE(46); + if (lookahead == '_') ADVANCE(66); + if (lookahead == '`') ADVANCE(201); + if (lookahead == '{') ADVANCE(104); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(14); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(48); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(49); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(59); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(56); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(18) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); END_STATE(); case 19: - if (lookahead == '#') ADVANCE(279); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '?') ADVANCE(38); - if (lookahead == '}') ADVANCE(99); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(270); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '&') ADVANCE(96); + if (lookahead == ')') ADVANCE(110); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '.') ADVANCE(31); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '?') ADVANCE(115); + if (lookahead == '\\') ADVANCE(103); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7093,16 +7101,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); case 20: - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '.') ADVANCE(27); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '?') ADVANCE(109); - if (lookahead == '\\') ADVANCE(97); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '?') ADVANCE(43); + if (lookahead == '}') ADVANCE(105); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(276); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7112,1663 +7119,1699 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); case 21: - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '<') ADVANCE(40); - if (lookahead == '?') ADVANCE(36); - if (lookahead == '\\') ADVANCE(58); - if (lookahead == '{') ADVANCE(98); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '.') ADVANCE(31); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '0') ADVANCE(135); + if (lookahead == ':') ADVANCE(106); + if (lookahead == ';') ADVANCE(95); + if (lookahead == '=') ADVANCE(40); + if (lookahead == '?') ADVANCE(115); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '}') ADVANCE(105); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(22) + lookahead == 65279) SKIP(21) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); case 22: - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '<') ADVANCE(40); - if (lookahead == '?') ADVANCE(36); - if (lookahead == '\\') ADVANCE(41); - if (lookahead == '{') ADVANCE(98); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '<') ADVANCE(45); + if (lookahead == '?') ADVANCE(41); + if (lookahead == '\\') ADVANCE(63); + if (lookahead == '{') ADVANCE(104); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(22) + lookahead == 65279) SKIP(23) END_STATE(); case 23: - if (lookahead == '#') ADVANCE(188); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '/') ADVANCE(182); - if (lookahead == '?') ADVANCE(185); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '<') ADVANCE(45); + if (lookahead == '?') ADVANCE(41); + if (lookahead == '\\') ADVANCE(46); + if (lookahead == '{') ADVANCE(104); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(181); - if (lookahead != 0) ADVANCE(187); + lookahead == 65279) SKIP(23) END_STATE(); case 24: - if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(278); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(110); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(39); + if (lookahead == '/') ADVANCE(26); + if (lookahead == ':') ADVANCE(34); + if (lookahead == '?') ADVANCE(30); + if (lookahead == '[') ADVANCE(170); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == '{') ADVANCE(104); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(24) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); case 25: - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(277); - if (lookahead != 0) ADVANCE(26); + if (lookahead == '#') ADVANCE(194); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '/') ADVANCE(188); + if (lookahead == '?') ADVANCE(191); + if (lookahead == '\\') ADVANCE(73); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(187); + if (lookahead != 0) ADVANCE(193); END_STATE(); case 26: - if (lookahead == '*') ADVANCE(25); - if (lookahead != 0) ADVANCE(26); + if (lookahead == '*') ADVANCE(28); + if (lookahead == '/') ADVANCE(284); END_STATE(); case 27: - if (lookahead == '.') ADVANCE(29); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(283); + if (lookahead != 0) ADVANCE(28); END_STATE(); case 28: - if (lookahead == '.') ADVANCE(121); - if (lookahead == '_') ADVANCE(61); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(28); + if (lookahead == '*') ADVANCE(27); + if (lookahead != 0) ADVANCE(28); END_STATE(); case 29: - if (lookahead == '.') ADVANCE(105); + if (lookahead == '*') ADVANCE(150); END_STATE(); case 30: - if (lookahead == '<') ADVANCE(189); + if (lookahead == '-') ADVANCE(42); + if (lookahead == '>') ADVANCE(81); END_STATE(); case 31: - if (lookahead == '<') ADVANCE(30); + if (lookahead == '.') ADVANCE(33); END_STATE(); case 32: - if (lookahead == '=') ADVANCE(208); + if (lookahead == '.') ADVANCE(127); + if (lookahead == '_') ADVANCE(66); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(48); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); END_STATE(); case 33: - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(102); + if (lookahead == '.') ADVANCE(111); END_STATE(); case 34: - if (lookahead == '>') ADVANCE(162); + if (lookahead == ':') ADVANCE(152); END_STATE(); case 35: - if (lookahead == '>') ADVANCE(102); + if (lookahead == '<') ADVANCE(195); END_STATE(); case 36: - if (lookahead == '>') ADVANCE(175); + if (lookahead == '<') ADVANCE(35); END_STATE(); case 37: - if (lookahead == '>') ADVANCE(163); + if (lookahead == '=') ADVANCE(214); END_STATE(); case 38: - if (lookahead == '>') ADVANCE(77); + if (lookahead == '=') ADVANCE(213); + if (lookahead == '>') ADVANCE(108); END_STATE(); case 39: - if (lookahead == '?') ADVANCE(76); + if (lookahead == '>') ADVANCE(168); END_STATE(); case 40: - if (lookahead == '?') ADVANCE(174); + if (lookahead == '>') ADVANCE(108); END_STATE(); case 41: - if (lookahead == 'u') ADVANCE(171); + if (lookahead == '>') ADVANCE(181); END_STATE(); case 42: - if (lookahead == '}') ADVANCE(167); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); + if (lookahead == '>') ADVANCE(169); END_STATE(); case 43: - if (lookahead == '+' || - lookahead == '-') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(123); + if (lookahead == '>') ADVANCE(81); END_STATE(); case 44: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(47); + if (lookahead == '?') ADVANCE(80); END_STATE(); case 45: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(196); + if (lookahead == '?') ADVANCE(180); END_STATE(); case 46: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(50); + if (lookahead == 'u') ADVANCE(177); END_STATE(); case 47: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(52); + if (lookahead == '}') ADVANCE(173); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); END_STATE(); case 48: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(198); + if (lookahead == '+' || + lookahead == '-') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); END_STATE(); case 49: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(48); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(52); END_STATE(); case 50: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(75); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(202); END_STATE(); case 51: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(53); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(55); END_STATE(); case 52: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(45); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(57); END_STATE(); case 53: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(45); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(204); END_STATE(); case 54: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(49); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(53); END_STATE(); case 55: - if (lookahead == '0' || - lookahead == '1') ADVANCE(127); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(79); END_STATE(); case 56: - if (lookahead == '8' || - lookahead == '9') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(125); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(58); END_STATE(); case 57: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(130); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(50); END_STATE(); case 58: - if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(167); - if (lookahead == 'u') ADVANCE(172); - if (lookahead == 'x') ADVANCE(65); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(169); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(50); END_STATE(); case 59: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(54); END_STATE(); case 60: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); + if (lookahead == '0' || + lookahead == '1') ADVANCE(133); END_STATE(); case 61: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(28); + if (lookahead == '8' || + lookahead == '9') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(131); END_STATE(); case 62: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(123); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(136); END_STATE(); case 63: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); + if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(173); + if (lookahead == 'u') ADVANCE(178); + if (lookahead == 'x') ADVANCE(70); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(175); END_STATE(); case 64: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); + END_STATE(); + case 65: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); + END_STATE(); + case 66: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); + END_STATE(); + case 67: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); + END_STATE(); + case 68: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); + END_STATE(); + case 69: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134); END_STATE(); - case 65: + case 70: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(170); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(176); END_STATE(); - case 66: + case 71: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); END_STATE(); - case 67: + case 72: if (lookahead != 0 && - lookahead != '*') ADVANCE(184); - if (lookahead == '*') ADVANCE(183); + lookahead != '*') ADVANCE(190); + if (lookahead == '*') ADVANCE(189); END_STATE(); - case 68: - if (lookahead != 0) ADVANCE(187); + case 73: + if (lookahead != 0) ADVANCE(193); END_STATE(); - case 69: - if (eof) ADVANCE(74); - if (lookahead == '!') ADVANCE(143); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(279); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '&') ADVANCE(93); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(229); - if (lookahead == '+') ADVANCE(135); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(138); - if (lookahead == '.') ADVANCE(227); - if (lookahead == '/') ADVANCE(232); - if (lookahead == '0') ADVANCE(124); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(215); - if (lookahead == '=') ADVANCE(96); - if (lookahead == '>') ADVANCE(216); - if (lookahead == '?') ADVANCE(106); - if (lookahead == '@') ADVANCE(132); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(206); - if (lookahead == '_') ADVANCE(274); - if (lookahead == '`') ADVANCE(195); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '|') ADVANCE(112); - if (lookahead == '}') ADVANCE(99); - if (lookahead == '~') ADVANCE(141); + case 74: + if (eof) ADVANCE(78); + if (lookahead == '!') ADVANCE(149); + if (lookahead == '"') ADVANCE(183); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '%') ADVANCE(240); + if (lookahead == '&') ADVANCE(98); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(110); + if (lookahead == '*') ADVANCE(235); + if (lookahead == '+') ADVANCE(141); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(144); + if (lookahead == '.') ADVANCE(233); + if (lookahead == '/') ADVANCE(238); + if (lookahead == '0') ADVANCE(130); + if (lookahead == ':') ADVANCE(107); + if (lookahead == ';') ADVANCE(95); + if (lookahead == '<') ADVANCE(221); + if (lookahead == '=') ADVANCE(101); + if (lookahead == '>') ADVANCE(222); + if (lookahead == '?') ADVANCE(112); + if (lookahead == '@') ADVANCE(138); + if (lookahead == '[') ADVANCE(170); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == ']') ADVANCE(171); + if (lookahead == '^') ADVANCE(212); + if (lookahead == '_') ADVANCE(280); + if (lookahead == '`') ADVANCE(201); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(105); + if (lookahead == '~') ADVANCE(147); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(262); + lookahead == 'a') ADVANCE(268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(235); + lookahead == 'b') ADVANCE(241); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(238); + lookahead == 'e') ADVANCE(244); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(239); + lookahead == 'f') ADVANCE(245); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(257); + lookahead == 'i') ADVANCE(263); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(272); + lookahead == 'n') ADVANCE(278); if (lookahead == 'S' || - lookahead == 's') ADVANCE(265); + lookahead == 's') ADVANCE(271); if (lookahead == 'T' || - lookahead == 't') ADVANCE(261); + lookahead == 't') ADVANCE(267); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(255); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + lookahead == 'u') ADVANCE(261); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(69) + lookahead == 65279) SKIP(74) if (('C' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 70: - if (eof) ADVANCE(74); - if (lookahead == '!') ADVANCE(142); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(279); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '+') ADVANCE(134); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '.') ADVANCE(121); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(124); - if (lookahead == ':') ADVANCE(100); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(31); - if (lookahead == '?') ADVANCE(38); - if (lookahead == '@') ADVANCE(132); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '_') ADVANCE(274); - if (lookahead == '`') ADVANCE(195); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '}') ADVANCE(99); - if (lookahead == '~') ADVANCE(141); + case 75: + if (eof) ADVANCE(78); + if (lookahead == '!') ADVANCE(148); + if (lookahead == '"') ADVANCE(183); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(110); + if (lookahead == '+') ADVANCE(140); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(143); + if (lookahead == '.') ADVANCE(127); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '0') ADVANCE(130); + if (lookahead == ':') ADVANCE(106); + if (lookahead == ';') ADVANCE(95); + if (lookahead == '<') ADVANCE(36); + if (lookahead == '?') ADVANCE(43); + if (lookahead == '@') ADVANCE(138); + if (lookahead == '[') ADVANCE(170); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == ']') ADVANCE(171); + if (lookahead == '_') ADVANCE(280); + if (lookahead == '`') ADVANCE(201); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '}') ADVANCE(105); + if (lookahead == '~') ADVANCE(147); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(262); + lookahead == 'a') ADVANCE(268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(236); + lookahead == 'b') ADVANCE(242); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(238); + lookahead == 'e') ADVANCE(244); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(240); + lookahead == 'f') ADVANCE(246); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(272); + lookahead == 'n') ADVANCE(278); if (lookahead == 'S' || - lookahead == 's') ADVANCE(270); + lookahead == 's') ADVANCE(276); if (lookahead == 'T' || - lookahead == 't') ADVANCE(261); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + lookahead == 't') ADVANCE(267); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(70) + lookahead == 65279) SKIP(75) if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 71: - if (eof) ADVANCE(74); - if (lookahead == '!') ADVANCE(32); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '&') ADVANCE(93); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(229); - if (lookahead == '+') ADVANCE(135); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(138); - if (lookahead == '.') ADVANCE(228); - if (lookahead == '/') ADVANCE(232); - if (lookahead == '0') ADVANCE(129); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(213); - if (lookahead == '=') ADVANCE(96); - if (lookahead == '>') ADVANCE(216); - if (lookahead == '?') ADVANCE(107); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(206); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '|') ADVANCE(112); - if (lookahead == '}') ADVANCE(99); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); + case 76: + if (eof) ADVANCE(78); + if (lookahead == '"') ADVANCE(183); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(110); + if (lookahead == '*') ADVANCE(29); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '.') ADVANCE(31); + if (lookahead == '/') ADVANCE(26); + if (lookahead == '0') ADVANCE(135); + if (lookahead == ':') ADVANCE(107); + if (lookahead == ';') ADVANCE(95); + if (lookahead == '<') ADVANCE(44); + if (lookahead == '=') ADVANCE(102); + if (lookahead == '?') ADVANCE(115); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == ']') ADVANCE(171); + if (lookahead == '{') ADVANCE(104); + if (lookahead == '|') ADVANCE(117); + if (lookahead == '}') ADVANCE(105); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(276); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(71) - if (('A' <= lookahead && lookahead <= '_') || + lookahead == 65279) SKIP(76) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 72: - if (eof) ADVANCE(74); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '/') ADVANCE(83); - if (lookahead == '<') ADVANCE(79); - if (lookahead == '?') ADVANCE(88); + case 77: + if (eof) ADVANCE(78); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '/') ADVANCE(88); + if (lookahead == '<') ADVANCE(84); + if (lookahead == '?') ADVANCE(91); if (lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(82); + lookahead == 65279) ADVANCE(87); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(72) - if (lookahead != 0) ADVANCE(89); + lookahead == ' ') SKIP(77) + if (lookahead != 0) ADVANCE(94); END_STATE(); - case 73: - if (eof) ADVANCE(74); - if (lookahead == '#') ADVANCE(280); - if (lookahead == '$') ADVANCE(200); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '.') ADVANCE(27); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '<') ADVANCE(39); - if (lookahead == '=') ADVANCE(35); - if (lookahead == '?') ADVANCE(109); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '|') ADVANCE(111); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(270); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(73) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); - END_STATE(); - case 74: + case 78: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 75: + case 79: ACCEPT_TOKEN(sym_php_tag); END_STATE(); - case 76: + case 80: ACCEPT_TOKEN(sym_php_tag); - if (lookahead == '=') ADVANCE(75); + if (lookahead == '=') ADVANCE(79); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(46); + lookahead == 'p') ADVANCE(51); END_STATE(); - case 77: + case 81: ACCEPT_TOKEN(anon_sym_QMARK_GT); END_STATE(); - case 78: + case 82: ACCEPT_TOKEN(anon_sym_QMARK_GT); + if (lookahead == '\\') ADVANCE(73); if (lookahead != 0 && - lookahead != '<') ADVANCE(89); + lookahead != '\'') ADVANCE(193); END_STATE(); - case 79: + case 83: + ACCEPT_TOKEN(anon_sym_QMARK_GT); + if (lookahead != 0 && + lookahead != '<') ADVANCE(94); + END_STATE(); + case 84: ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == '?') ADVANCE(76); + if (lookahead == '?') ADVANCE(80); END_STATE(); - case 80: + case 85: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(89); - if (lookahead == '\r') ADVANCE(81); - if (lookahead == '<') ADVANCE(278); - if (lookahead == '>') ADVANCE(89); - if (lookahead != 0) ADVANCE(86); + if (lookahead == '\n') ADVANCE(94); + if (lookahead == '\r') ADVANCE(86); + if (lookahead == '>') ADVANCE(94); + if (lookahead != 0 && + lookahead != '<') ADVANCE(92); END_STATE(); - case 81: + case 86: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(89); + if (lookahead == '\n') ADVANCE(94); if (lookahead != 0 && - lookahead != '<') ADVANCE(89); + lookahead != '<') ADVANCE(94); END_STATE(); - case 82: + case 87: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '/') ADVANCE(83); - if (lookahead == '?') ADVANCE(88); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '/') ADVANCE(88); + if (lookahead == '?') ADVANCE(91); if (lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(82); + lookahead == 65279) ADVANCE(87); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(82); + lookahead == ' ') ADVANCE(87); if (lookahead != 0 && - lookahead != '<') ADVANCE(89); + lookahead != '<') ADVANCE(94); END_STATE(); - case 83: + case 88: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(85); - if (lookahead == '/') ADVANCE(86); + if (lookahead == '*') ADVANCE(90); + if (lookahead == '/') ADVANCE(92); if (lookahead != 0 && - lookahead != '<') ADVANCE(89); + lookahead != '<') ADVANCE(94); END_STATE(); - case 84: + case 89: + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '*') ADVANCE(89); + if (lookahead == '/') ADVANCE(94); + if (lookahead != 0 && + lookahead != '<') ADVANCE(90); + END_STATE(); + case 90: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(84); - if (lookahead == '/') ADVANCE(89); - if (lookahead == '<') ADVANCE(26); - if (lookahead != 0) ADVANCE(85); + if (lookahead == '*') ADVANCE(89); + if (lookahead != 0 && + lookahead != '<') ADVANCE(90); END_STATE(); - case 85: + case 91: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(84); - if (lookahead == '<') ADVANCE(26); - if (lookahead != 0) ADVANCE(85); + if (lookahead == '>') ADVANCE(83); + if (lookahead != 0 && + lookahead != '<') ADVANCE(94); END_STATE(); - case 86: + case 92: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '<') ADVANCE(278); - if (lookahead == '?') ADVANCE(80); + if (lookahead == '?') ADVANCE(85); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(89); - if (lookahead != 0) ADVANCE(86); + lookahead == '\r') ADVANCE(94); + if (lookahead != 0 && + lookahead != '<') ADVANCE(92); END_STATE(); - case 87: + case 93: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '<') ADVANCE(278); if (lookahead == '\n' || lookahead == '\r' || lookahead == '?' || - lookahead == '[') ADVANCE(89); - if (lookahead != 0) ADVANCE(86); - END_STATE(); - case 88: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '>') ADVANCE(78); + lookahead == '[') ADVANCE(94); if (lookahead != 0 && - lookahead != '<') ADVANCE(89); + lookahead != '<') ADVANCE(92); END_STATE(); - case 89: + case 94: ACCEPT_TOKEN(aux_sym_text_token2); if (lookahead != 0 && - lookahead != '<') ADVANCE(89); + lookahead != '<') ADVANCE(94); END_STATE(); - case 90: + case 95: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 91: + case 96: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 92: + case 97: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(204); + if (lookahead == '&') ADVANCE(210); END_STATE(); - case 93: + case 98: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(204); - if (lookahead == '=') ADVANCE(158); + if (lookahead == '&') ADVANCE(210); + if (lookahead == '=') ADVANCE(164); END_STATE(); - case 94: + case 99: ACCEPT_TOKEN(aux_sym_function_static_declaration_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 95: + case 100: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 96: + case 101: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(102); + if (lookahead == '=') ADVANCE(213); + if (lookahead == '>') ADVANCE(108); END_STATE(); - case 97: + case 102: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(108); + END_STATE(); + case 103: ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); - case 98: + case 104: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 99: + case 105: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 100: + case 106: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 101: + case 107: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(146); + if (lookahead == ':') ADVANCE(152); END_STATE(); - case 102: + case 108: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 103: + case 109: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 104: + case 110: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 105: + case 111: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 106: + case 112: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(37); - if (lookahead == '>') ADVANCE(175); - if (lookahead == '?') ADVANCE(202); + if (lookahead == '-') ADVANCE(42); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '?') ADVANCE(208); END_STATE(); - case 107: + case 113: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(37); - if (lookahead == '>') ADVANCE(77); - if (lookahead == '?') ADVANCE(202); + if (lookahead == '-') ADVANCE(42); + if (lookahead == '>') ADVANCE(81); + if (lookahead == '?') ADVANCE(208); END_STATE(); - case 108: + case 114: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(37); - if (lookahead == '>') ADVANCE(77); - if (lookahead == '?') ADVANCE(201); + if (lookahead == '-') ADVANCE(42); + if (lookahead == '>') ADVANCE(81); + if (lookahead == '?') ADVANCE(207); END_STATE(); - case 109: + case 115: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(77); + if (lookahead == '>') ADVANCE(81); END_STATE(); - case 110: + case 116: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(77); - if (lookahead == '?') ADVANCE(201); + if (lookahead == '>') ADVANCE(81); + if (lookahead == '?') ADVANCE(207); END_STATE(); - case 111: + case 117: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 112: + case 118: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(160); - if (lookahead == '|') ADVANCE(203); + if (lookahead == '=') ADVANCE(166); + if (lookahead == '|') ADVANCE(209); END_STATE(); - case 113: + case 119: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(203); + if (lookahead == '|') ADVANCE(209); END_STATE(); - case 114: + case 120: ACCEPT_TOKEN(aux_sym_cast_type_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 115: + case 121: ACCEPT_TOKEN(aux_sym_cast_type_token3); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 116: + case 122: ACCEPT_TOKEN(aux_sym_cast_type_token6); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 117: + case 123: ACCEPT_TOKEN(aux_sym_cast_type_token8); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 118: + case 124: ACCEPT_TOKEN(aux_sym_cast_type_token11); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 119: + case 125: ACCEPT_TOKEN(aux_sym_cast_type_token12); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 120: + case 126: ACCEPT_TOKEN(sym_float); - if (lookahead == '.') ADVANCE(29); - if (lookahead == '_') ADVANCE(60); + if (lookahead == '.') ADVANCE(33); + if (lookahead == '_') ADVANCE(65); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); + lookahead == 'e') ADVANCE(48); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); END_STATE(); - case 121: + case 127: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(60); + if (lookahead == '_') ADVANCE(65); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); + lookahead == 'e') ADVANCE(48); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); END_STATE(); - case 122: + case 128: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(275); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); + if (lookahead == '_') ADVANCE(281); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 123: + case 129: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(123); + if (lookahead == '_') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); END_STATE(); - case 124: + case 130: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(121); - if (lookahead == '_') ADVANCE(56); + if (lookahead == '.') ADVANCE(127); + if (lookahead == '_') ADVANCE(61); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(55); + lookahead == 'b') ADVANCE(60); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(43); + lookahead == 'e') ADVANCE(48); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(130); + lookahead == 'o') ADVANCE(136); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(64); + lookahead == 'x') ADVANCE(69); if (lookahead == '8' || - lookahead == '9') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(125); + lookahead == '9') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(131); END_STATE(); - case 125: + case 131: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(121); - if (lookahead == '_') ADVANCE(56); + if (lookahead == '.') ADVANCE(127); + if (lookahead == '_') ADVANCE(61); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(43); + lookahead == 'e') ADVANCE(48); if (lookahead == '8' || - lookahead == '9') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(125); + lookahead == '9') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(131); END_STATE(); - case 126: + case 132: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(121); - if (lookahead == '_') ADVANCE(59); + if (lookahead == '.') ADVANCE(127); + if (lookahead == '_') ADVANCE(64); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); + lookahead == 'e') ADVANCE(48); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); END_STATE(); - case 127: + case 133: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(55); + if (lookahead == '_') ADVANCE(60); if (lookahead == '0' || - lookahead == '1') ADVANCE(127); + lookahead == '1') ADVANCE(133); END_STATE(); - case 128: + case 134: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(64); + if (lookahead == '_') ADVANCE(69); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134); END_STATE(); - case 129: + case 135: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(57); + if (lookahead == '_') ADVANCE(62); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(55); + lookahead == 'b') ADVANCE(60); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(130); + lookahead == 'o') ADVANCE(136); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(64); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(130); + lookahead == 'x') ADVANCE(69); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(136); END_STATE(); - case 130: + case 136: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(57); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(130); + if (lookahead == '_') ADVANCE(62); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(136); END_STATE(); - case 131: + case 137: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(63); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); + if (lookahead == '_') ADVANCE(68); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); END_STATE(); - case 132: + case 138: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 133: + case 139: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 134: + case 140: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(147); + if (lookahead == '+') ADVANCE(153); END_STATE(); - case 135: + case 141: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(147); - if (lookahead == '=') ADVANCE(153); + if (lookahead == '+') ADVANCE(153); + if (lookahead == '=') ADVANCE(159); END_STATE(); - case 136: + case 142: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 137: + case 143: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(148); + if (lookahead == '-') ADVANCE(154); END_STATE(); - case 138: + case 144: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(148); - if (lookahead == '=') ADVANCE(154); - if (lookahead == '>') ADVANCE(162); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '=') ADVANCE(160); + if (lookahead == '>') ADVANCE(168); END_STATE(); - case 139: + case 145: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(148); - if (lookahead == '>') ADVANCE(162); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '>') ADVANCE(168); END_STATE(); - case 140: + case 146: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(162); + if (lookahead == '>') ADVANCE(168); END_STATE(); - case 141: + case 147: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 142: + case 148: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 143: + case 149: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(208); + if (lookahead == '=') ADVANCE(214); END_STATE(); - case 144: + case 150: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 145: + case 151: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(149); + if (lookahead == '=') ADVANCE(155); END_STATE(); - case 146: + case 152: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 147: + case 153: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 148: + case 154: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 149: + case 155: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 150: + case 156: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 151: + case 157: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 152: + case 158: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 153: + case 159: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 154: + case 160: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 155: + case 161: ACCEPT_TOKEN(anon_sym_DOT_EQ); END_STATE(); - case 156: + case 162: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 157: + case 163: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 158: + case 164: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 159: + case 165: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 160: + case 166: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 161: + case 167: ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); - case 162: + case 168: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 163: + case 169: ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); END_STATE(); - case 164: + case 170: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 165: + case 171: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 166: + case 172: ACCEPT_TOKEN(anon_sym_POUND_LBRACK); END_STATE(); - case 167: + case 173: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 168: + case 174: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(167); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(173); END_STATE(); - case 169: + case 175: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(168); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(174); END_STATE(); - case 170: + case 176: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(173); END_STATE(); - case 171: + case 177: ACCEPT_TOKEN(anon_sym_BSLASHu); END_STATE(); - case 172: + case 178: ACCEPT_TOKEN(anon_sym_BSLASHu); - if (lookahead == '{') ADVANCE(66); + if (lookahead == '{') ADVANCE(71); END_STATE(); - case 173: + case 179: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 174: + case 180: ACCEPT_TOKEN(anon_sym_LT_QMARK); END_STATE(); - case 175: + case 181: ACCEPT_TOKEN(anon_sym_QMARK_GT2); END_STATE(); - case 176: + case 182: ACCEPT_TOKEN(aux_sym_encapsed_string_token1); END_STATE(); - case 177: + case 183: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 178: + case 184: ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); - case 179: + case 185: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '\r') ADVANCE(180); - if (lookahead == '>') ADVANCE(187); - if (lookahead == '\\') ADVANCE(281); + if (lookahead == '\n') ADVANCE(193); + if (lookahead == '\r') ADVANCE(186); + if (lookahead == '>') ADVANCE(193); + if (lookahead == '\\') ADVANCE(287); if (lookahead != 0 && - lookahead != '\'') ADVANCE(186); + lookahead != '\'') ADVANCE(192); END_STATE(); - case 180: + case 186: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '\n') ADVANCE(193); + if (lookahead == '\\') ADVANCE(73); if (lookahead != 0 && - lookahead != '\'') ADVANCE(187); + lookahead != '\'') ADVANCE(193); END_STATE(); - case 181: + case 187: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '#') ADVANCE(188); - if (lookahead == '/') ADVANCE(182); - if (lookahead == '?') ADVANCE(185); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '#') ADVANCE(194); + if (lookahead == '/') ADVANCE(188); + if (lookahead == '?') ADVANCE(191); + if (lookahead == '\\') ADVANCE(73); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(181); + lookahead == 65279) ADVANCE(187); if (lookahead != 0 && - lookahead != '\'') ADVANCE(187); + lookahead != '\'') ADVANCE(193); END_STATE(); - case 182: + case 188: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '*') ADVANCE(190); + if (lookahead == '/') ADVANCE(192); + if (lookahead == '\\') ADVANCE(73); if (lookahead != 0 && - lookahead != '\'') ADVANCE(187); + lookahead != '\'') ADVANCE(193); END_STATE(); - case 183: + case 189: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(183); - if (lookahead == '/') ADVANCE(187); - if (lookahead == '\\') ADVANCE(67); + if (lookahead == '*') ADVANCE(189); + if (lookahead == '/') ADVANCE(193); + if (lookahead == '\\') ADVANCE(72); if (lookahead != 0 && - lookahead != '\'') ADVANCE(184); + lookahead != '\'') ADVANCE(190); END_STATE(); - case 184: + case 190: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(183); - if (lookahead == '\\') ADVANCE(67); + if (lookahead == '*') ADVANCE(189); + if (lookahead == '\\') ADVANCE(72); if (lookahead != 0 && - lookahead != '\'') ADVANCE(184); + lookahead != '\'') ADVANCE(190); END_STATE(); - case 185: + case 191: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '>') ADVANCE(187); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '>') ADVANCE(82); + if (lookahead == '\\') ADVANCE(73); if (lookahead != 0 && - lookahead != '\'') ADVANCE(187); + lookahead != '\'') ADVANCE(193); END_STATE(); - case 186: + case 192: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '?') ADVANCE(179); - if (lookahead == '\\') ADVANCE(281); + if (lookahead == '?') ADVANCE(185); + if (lookahead == '\\') ADVANCE(287); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(187); + lookahead == '\r') ADVANCE(193); if (lookahead != 0 && - lookahead != '\'') ADVANCE(186); + lookahead != '\'') ADVANCE(192); END_STATE(); - case 187: + case 193: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '\\') ADVANCE(73); if (lookahead != 0 && - lookahead != '\'') ADVANCE(187); + lookahead != '\'') ADVANCE(193); END_STATE(); - case 188: + case 194: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\\') ADVANCE(281); + if (lookahead == '\\') ADVANCE(287); if (lookahead == '\n' || lookahead == '\r' || lookahead == '?' || - lookahead == '[') ADVANCE(187); + lookahead == '[') ADVANCE(193); if (lookahead != 0 && - lookahead != '\'') ADVANCE(186); + lookahead != '\'') ADVANCE(192); END_STATE(); - case 189: + case 195: ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); - case 190: + case 196: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 191: + case 197: ACCEPT_TOKEN(sym__new_line); - if (lookahead == '\n') ADVANCE(191); - if (lookahead == '\r') ADVANCE(191); - if (lookahead == '?') ADVANCE(36); + if (lookahead == '\n') ADVANCE(197); + if (lookahead == '\r') ADVANCE(197); + if (lookahead == '?') ADVANCE(41); END_STATE(); - case 192: + case 198: ACCEPT_TOKEN(sym__new_line); - if (lookahead == '\n') ADVANCE(192); - if (lookahead == '\r') ADVANCE(192); + if (lookahead == '\n') ADVANCE(198); + if (lookahead == '\r') ADVANCE(198); END_STATE(); - case 193: + case 199: ACCEPT_TOKEN(anon_sym_); END_STATE(); - case 194: + case 200: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 195: + case 201: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 196: + case 202: ACCEPT_TOKEN(sym_boolean); END_STATE(); - case 197: + case 203: ACCEPT_TOKEN(sym_boolean); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 198: + case 204: ACCEPT_TOKEN(sym_null); END_STATE(); - case 199: + case 205: ACCEPT_TOKEN(sym_null); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 200: + case 206: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 201: + case 207: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 202: + case 208: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(161); + if (lookahead == '=') ADVANCE(167); END_STATE(); - case 203: + case 209: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 204: + case 210: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 205: + case 211: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 206: + case 212: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(159); + if (lookahead == '=') ADVANCE(165); END_STATE(); - case 207: + case 213: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(210); + if (lookahead == '=') ADVANCE(216); END_STATE(); - case 208: + case 214: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(211); + if (lookahead == '=') ADVANCE(217); END_STATE(); - case 209: + case 215: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 210: + case 216: ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 211: + case 217: ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 212: + case 218: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(222); - if (lookahead == '=') ADVANCE(218); - if (lookahead == '>') ADVANCE(209); + if (lookahead == '<') ADVANCE(228); + if (lookahead == '=') ADVANCE(224); + if (lookahead == '>') ADVANCE(215); END_STATE(); - case 213: + case 219: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(223); - if (lookahead == '=') ADVANCE(218); - if (lookahead == '>') ADVANCE(209); + if (lookahead == '<') ADVANCE(229); + if (lookahead == '=') ADVANCE(224); + if (lookahead == '>') ADVANCE(215); END_STATE(); - case 214: + case 220: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(221); - if (lookahead == '=') ADVANCE(218); - if (lookahead == '>') ADVANCE(209); + if (lookahead == '<') ADVANCE(227); + if (lookahead == '=') ADVANCE(224); + if (lookahead == '>') ADVANCE(215); END_STATE(); - case 215: + case 221: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '?') ADVANCE(76); + if (lookahead == '?') ADVANCE(80); END_STATE(); - case 216: + case 222: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(219); - if (lookahead == '>') ADVANCE(225); + if (lookahead == '=') ADVANCE(225); + if (lookahead == '>') ADVANCE(231); END_STATE(); - case 217: + case 223: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(219); - if (lookahead == '>') ADVANCE(224); + if (lookahead == '=') ADVANCE(225); + if (lookahead == '>') ADVANCE(230); END_STATE(); - case 218: + case 224: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(220); + if (lookahead == '>') ADVANCE(226); END_STATE(); - case 219: + case 225: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 220: + case 226: ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); - case 221: + case 227: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 222: + case 228: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '<') ADVANCE(189); + if (lookahead == '<') ADVANCE(195); END_STATE(); - case 223: + case 229: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(156); + if (lookahead == '=') ADVANCE(162); END_STATE(); - case 224: + case 230: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 225: + case 231: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(157); + if (lookahead == '=') ADVANCE(163); END_STATE(); - case 226: + case 232: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 227: + case 233: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(29); - if (lookahead == '_') ADVANCE(60); + if (lookahead == '.') ADVANCE(33); + if (lookahead == '_') ADVANCE(65); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); + lookahead == 'e') ADVANCE(48); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); END_STATE(); - case 228: + case 234: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '=') ADVANCE(155); + if (lookahead == '=') ADVANCE(161); END_STATE(); - case 229: + case 235: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(145); - if (lookahead == '=') ADVANCE(150); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '=') ADVANCE(156); END_STATE(); - case 230: + case 236: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(144); + if (lookahead == '*') ADVANCE(150); END_STATE(); - case 231: + case 237: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(278); END_STATE(); - case 232: + case 238: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(278); - if (lookahead == '=') ADVANCE(151); + if (lookahead == '=') ADVANCE(157); END_STATE(); - case 233: + case 239: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 234: + case 240: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(152); + if (lookahead == '=') ADVANCE(158); END_STATE(); - case 235: + case 241: ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(176); - if (lookahead == '\'') ADVANCE(178); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '\'') ADVANCE(184); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(259); + lookahead == 'o') ADVANCE(265); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 236: + case 242: ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(176); - if (lookahead == '\'') ADVANCE(178); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '\'') ADVANCE(184); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 237: + case 243: ACCEPT_TOKEN(sym_name); - if (lookahead == '.') ADVANCE(121); - if (lookahead == '_') ADVANCE(274); + if (lookahead == '.') ADVANCE(127); + if (lookahead == '_') ADVANCE(280); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(238); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); + lookahead == 'e') ADVANCE(244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(243); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 238: + case 244: ACCEPT_TOKEN(sym_name); if (lookahead == '+' || - lookahead == '-') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); + lookahead == '-') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 239: + case 245: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(254); + lookahead == 'a') ADVANCE(260); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(258); + lookahead == 'l') ADVANCE(264); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 240: + case 246: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(254); + lookahead == 'a') ADVANCE(260); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 241: + case 247: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(273); + lookahead == 'a') ADVANCE(279); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 242: + case 248: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(269); + lookahead == 'a') ADVANCE(275); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(250); + lookahead == 'r') ADVANCE(256); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 243: + case 249: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(269); + lookahead == 'a') ADVANCE(275); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 244: + case 250: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(267); + lookahead == 'a') ADVANCE(273); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 245: + case 251: ACCEPT_TOKEN(sym_name); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(94); + lookahead == 'c') ADVANCE(99); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 246: + case 252: ACCEPT_TOKEN(sym_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(197); + lookahead == 'e') ADVANCE(203); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 247: + case 253: ACCEPT_TOKEN(sym_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(268); + lookahead == 'e') ADVANCE(274); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 248: + case 254: ACCEPT_TOKEN(sym_name); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(118); + lookahead == 'g') ADVANCE(124); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 249: + case 255: ACCEPT_TOKEN(sym_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(245); + lookahead == 'i') ADVANCE(251); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 250: + case 256: ACCEPT_TOKEN(sym_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(256); + lookahead == 'i') ADVANCE(262); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 251: + case 257: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(115); + lookahead == 'l') ADVANCE(121); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 252: + case 258: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(199); + lookahead == 'l') ADVANCE(205); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 253: + case 259: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(252); + lookahead == 'l') ADVANCE(258); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 254: + case 260: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(263); + lookahead == 'l') ADVANCE(269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 255: + case 261: ACCEPT_TOKEN(sym_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(264); + lookahead == 'n') ADVANCE(270); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 256: + case 262: ACCEPT_TOKEN(sym_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(248); + lookahead == 'n') ADVANCE(254); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 257: + case 263: ACCEPT_TOKEN(sym_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(266); + lookahead == 'n') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 258: + case 264: ACCEPT_TOKEN(sym_name); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(244); + lookahead == 'o') ADVANCE(250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 259: + case 265: ACCEPT_TOKEN(sym_name); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(251); + lookahead == 'o') ADVANCE(257); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 260: + case 266: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(241); + lookahead == 'r') ADVANCE(247); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 261: + case 267: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(271); + lookahead == 'r') ADVANCE(277); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 262: + case 268: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(260); + lookahead == 'r') ADVANCE(266); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 263: + case 269: ACCEPT_TOKEN(sym_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(246); + lookahead == 's') ADVANCE(252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 264: + case 270: ACCEPT_TOKEN(sym_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(247); + lookahead == 's') ADVANCE(253); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 265: + case 271: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(242); + lookahead == 't') ADVANCE(248); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 266: + case 272: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(116); + lookahead == 't') ADVANCE(122); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 267: + case 273: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(117); + lookahead == 't') ADVANCE(123); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 268: + case 274: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(119); + lookahead == 't') ADVANCE(125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 269: + case 275: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(249); + lookahead == 't') ADVANCE(255); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 270: + case 276: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(243); + lookahead == 't') ADVANCE(249); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 271: + case 277: ACCEPT_TOKEN(sym_name); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(246); + lookahead == 'u') ADVANCE(252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 272: + case 278: ACCEPT_TOKEN(sym_name); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(253); + lookahead == 'u') ADVANCE(259); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 273: + case 279: ACCEPT_TOKEN(sym_name); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(114); + lookahead == 'y') ADVANCE(120); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 274: + case 280: ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(243); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 275: + case 281: ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 276: + case 282: ACCEPT_TOKEN(sym_name); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(276); + (161 <= lookahead && lookahead <= 255)) ADVANCE(282); END_STATE(); - case 277: + case 283: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 278: + case 284: ACCEPT_TOKEN(sym_comment); if (lookahead == '?') ADVANCE(2); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(278); + lookahead != '\r') ADVANCE(284); END_STATE(); - case 279: + case 285: ACCEPT_TOKEN(sym_comment); - if (lookahead == '[') ADVANCE(166); + if (lookahead == '[') ADVANCE(172); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '?') ADVANCE(278); + lookahead != '?') ADVANCE(284); END_STATE(); - case 280: + case 286: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '?' && - lookahead != '[') ADVANCE(278); + lookahead != '[') ADVANCE(284); END_STATE(); - case 281: + case 287: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '?') ADVANCE(186); - if (lookahead == '?') ADVANCE(179); + lookahead != '?') ADVANCE(192); + if (lookahead == '?') ADVANCE(185); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(187); + lookahead == '\r') ADVANCE(193); END_STATE(); default: return false; @@ -10430,91 +10473,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 = 72}, - [2] = {.lex_state = 70}, - [3] = {.lex_state = 70}, - [4] = {.lex_state = 70}, - [5] = {.lex_state = 70}, - [6] = {.lex_state = 70}, - [7] = {.lex_state = 70}, - [8] = {.lex_state = 70}, - [9] = {.lex_state = 70}, - [10] = {.lex_state = 70}, - [11] = {.lex_state = 70}, - [12] = {.lex_state = 70, .external_lex_state = 2}, - [13] = {.lex_state = 70, .external_lex_state = 2}, - [14] = {.lex_state = 70, .external_lex_state = 2}, - [15] = {.lex_state = 70, .external_lex_state = 2}, - [16] = {.lex_state = 70}, - [17] = {.lex_state = 70}, - [18] = {.lex_state = 70, .external_lex_state = 2}, - [19] = {.lex_state = 70}, - [20] = {.lex_state = 70}, - [21] = {.lex_state = 70}, - [22] = {.lex_state = 70}, - [23] = {.lex_state = 70}, - [24] = {.lex_state = 70}, - [25] = {.lex_state = 70}, - [26] = {.lex_state = 70}, - [27] = {.lex_state = 70}, - [28] = {.lex_state = 70, .external_lex_state = 2}, - [29] = {.lex_state = 70, .external_lex_state = 2}, - [30] = {.lex_state = 70}, - [31] = {.lex_state = 70}, - [32] = {.lex_state = 70}, - [33] = {.lex_state = 70}, - [34] = {.lex_state = 70}, - [35] = {.lex_state = 70, .external_lex_state = 2}, - [36] = {.lex_state = 70}, - [37] = {.lex_state = 70, .external_lex_state = 2}, - [38] = {.lex_state = 70, .external_lex_state = 2}, - [39] = {.lex_state = 70, .external_lex_state = 2}, - [40] = {.lex_state = 70, .external_lex_state = 2}, - [41] = {.lex_state = 70}, - [42] = {.lex_state = 70}, - [43] = {.lex_state = 70}, - [44] = {.lex_state = 70}, - [45] = {.lex_state = 70, .external_lex_state = 2}, - [46] = {.lex_state = 70}, - [47] = {.lex_state = 70}, - [48] = {.lex_state = 70, .external_lex_state = 2}, - [49] = {.lex_state = 70}, - [50] = {.lex_state = 70}, - [51] = {.lex_state = 70}, - [52] = {.lex_state = 70}, - [53] = {.lex_state = 70}, - [54] = {.lex_state = 70}, - [55] = {.lex_state = 70}, - [56] = {.lex_state = 70}, - [57] = {.lex_state = 70}, - [58] = {.lex_state = 70, .external_lex_state = 2}, - [59] = {.lex_state = 70, .external_lex_state = 2}, - [60] = {.lex_state = 70}, - [61] = {.lex_state = 70}, - [62] = {.lex_state = 70, .external_lex_state = 2}, - [63] = {.lex_state = 70}, - [64] = {.lex_state = 70, .external_lex_state = 2}, - [65] = {.lex_state = 70, .external_lex_state = 2}, - [66] = {.lex_state = 70}, - [67] = {.lex_state = 70}, - [68] = {.lex_state = 70, .external_lex_state = 2}, - [69] = {.lex_state = 70, .external_lex_state = 2}, - [70] = {.lex_state = 70}, - [71] = {.lex_state = 70, .external_lex_state = 2}, - [72] = {.lex_state = 70}, - [73] = {.lex_state = 70}, - [74] = {.lex_state = 70}, - [75] = {.lex_state = 70, .external_lex_state = 2}, - [76] = {.lex_state = 70, .external_lex_state = 2}, - [77] = {.lex_state = 70}, - [78] = {.lex_state = 70}, - [79] = {.lex_state = 70}, - [80] = {.lex_state = 70}, - [81] = {.lex_state = 70}, - [82] = {.lex_state = 70}, - [83] = {.lex_state = 70}, - [84] = {.lex_state = 70}, - [85] = {.lex_state = 70}, + [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}, + [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, .external_lex_state = 2}, + [29] = {.lex_state = 75, .external_lex_state = 2}, + [30] = {.lex_state = 75}, + [31] = {.lex_state = 75}, + [32] = {.lex_state = 75}, + [33] = {.lex_state = 75}, + [34] = {.lex_state = 75}, + [35] = {.lex_state = 75, .external_lex_state = 2}, + [36] = {.lex_state = 75}, + [37] = {.lex_state = 75, .external_lex_state = 2}, + [38] = {.lex_state = 75, .external_lex_state = 2}, + [39] = {.lex_state = 75, .external_lex_state = 2}, + [40] = {.lex_state = 75, .external_lex_state = 2}, + [41] = {.lex_state = 75}, + [42] = {.lex_state = 75}, + [43] = {.lex_state = 75}, + [44] = {.lex_state = 75}, + [45] = {.lex_state = 75, .external_lex_state = 2}, + [46] = {.lex_state = 75}, + [47] = {.lex_state = 75}, + [48] = {.lex_state = 75, .external_lex_state = 2}, + [49] = {.lex_state = 75}, + [50] = {.lex_state = 75}, + [51] = {.lex_state = 75}, + [52] = {.lex_state = 75}, + [53] = {.lex_state = 75}, + [54] = {.lex_state = 75}, + [55] = {.lex_state = 75}, + [56] = {.lex_state = 75}, + [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}, + [62] = {.lex_state = 75, .external_lex_state = 2}, + [63] = {.lex_state = 75}, + [64] = {.lex_state = 75, .external_lex_state = 2}, + [65] = {.lex_state = 75, .external_lex_state = 2}, + [66] = {.lex_state = 75}, + [67] = {.lex_state = 75}, + [68] = {.lex_state = 75, .external_lex_state = 2}, + [69] = {.lex_state = 75, .external_lex_state = 2}, + [70] = {.lex_state = 75}, + [71] = {.lex_state = 75, .external_lex_state = 2}, + [72] = {.lex_state = 75}, + [73] = {.lex_state = 75}, + [74] = {.lex_state = 75}, + [75] = {.lex_state = 75, .external_lex_state = 2}, + [76] = {.lex_state = 75, .external_lex_state = 2}, + [77] = {.lex_state = 75}, + [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}, [86] = {.lex_state = 6}, [87] = {.lex_state = 6}, [88] = {.lex_state = 6, .external_lex_state = 2}, @@ -10548,14 +10591,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [116] = {.lex_state = 7}, [117] = {.lex_state = 7}, [118] = {.lex_state = 7}, - [119] = {.lex_state = 70}, + [119] = {.lex_state = 75}, [120] = {.lex_state = 7}, [121] = {.lex_state = 7}, [122] = {.lex_state = 7}, [123] = {.lex_state = 7}, [124] = {.lex_state = 7}, [125] = {.lex_state = 7}, - [126] = {.lex_state = 70}, + [126] = {.lex_state = 75}, [127] = {.lex_state = 7}, [128] = {.lex_state = 7}, [129] = {.lex_state = 7}, @@ -10573,547 +10616,547 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [141] = {.lex_state = 7}, [142] = {.lex_state = 7}, [143] = {.lex_state = 7}, - [144] = {.lex_state = 70}, + [144] = {.lex_state = 75}, [145] = {.lex_state = 7}, [146] = {.lex_state = 7}, - [147] = {.lex_state = 70}, + [147] = {.lex_state = 75}, [148] = {.lex_state = 7}, - [149] = {.lex_state = 70}, - [150] = {.lex_state = 70}, - [151] = {.lex_state = 70}, - [152] = {.lex_state = 70}, - [153] = {.lex_state = 70}, - [154] = {.lex_state = 70}, + [149] = {.lex_state = 75}, + [150] = {.lex_state = 75}, + [151] = {.lex_state = 75}, + [152] = {.lex_state = 75}, + [153] = {.lex_state = 75}, + [154] = {.lex_state = 75}, [155] = {.lex_state = 7}, - [156] = {.lex_state = 70}, - [157] = {.lex_state = 70}, - [158] = {.lex_state = 70}, - [159] = {.lex_state = 70}, - [160] = {.lex_state = 70}, - [161] = {.lex_state = 70}, - [162] = {.lex_state = 70}, - [163] = {.lex_state = 70}, - [164] = {.lex_state = 70}, - [165] = {.lex_state = 70}, - [166] = {.lex_state = 70}, - [167] = {.lex_state = 70}, - [168] = {.lex_state = 70}, - [169] = {.lex_state = 70}, - [170] = {.lex_state = 70}, - [171] = {.lex_state = 70}, - [172] = {.lex_state = 70}, - [173] = {.lex_state = 70}, - [174] = {.lex_state = 70}, - [175] = {.lex_state = 70}, - [176] = {.lex_state = 70}, - [177] = {.lex_state = 70}, - [178] = {.lex_state = 70}, - [179] = {.lex_state = 70}, - [180] = {.lex_state = 70}, - [181] = {.lex_state = 70}, - [182] = {.lex_state = 70}, - [183] = {.lex_state = 70}, - [184] = {.lex_state = 70}, - [185] = {.lex_state = 70}, - [186] = {.lex_state = 70}, - [187] = {.lex_state = 70, .external_lex_state = 2}, - [188] = {.lex_state = 70, .external_lex_state = 2}, - [189] = {.lex_state = 70}, - [190] = {.lex_state = 70}, + [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}, + [187] = {.lex_state = 75, .external_lex_state = 2}, + [188] = {.lex_state = 75, .external_lex_state = 2}, + [189] = {.lex_state = 75}, + [190] = {.lex_state = 75}, [191] = {.lex_state = 7}, - [192] = {.lex_state = 70}, - [193] = {.lex_state = 70}, - [194] = {.lex_state = 70}, - [195] = {.lex_state = 70, .external_lex_state = 2}, - [196] = {.lex_state = 70}, + [192] = {.lex_state = 75}, + [193] = {.lex_state = 75}, + [194] = {.lex_state = 75}, + [195] = {.lex_state = 75, .external_lex_state = 2}, + [196] = {.lex_state = 75}, [197] = {.lex_state = 7}, - [198] = {.lex_state = 70, .external_lex_state = 2}, - [199] = {.lex_state = 70}, - [200] = {.lex_state = 70, .external_lex_state = 2}, - [201] = {.lex_state = 70}, - [202] = {.lex_state = 70}, - [203] = {.lex_state = 70, .external_lex_state = 2}, - [204] = {.lex_state = 70}, - [205] = {.lex_state = 70}, - [206] = {.lex_state = 70}, - [207] = {.lex_state = 70}, - [208] = {.lex_state = 70}, - [209] = {.lex_state = 70}, - [210] = {.lex_state = 70}, - [211] = {.lex_state = 70}, - [212] = {.lex_state = 70}, - [213] = {.lex_state = 70}, - [214] = {.lex_state = 70}, - [215] = {.lex_state = 70}, - [216] = {.lex_state = 70}, - [217] = {.lex_state = 70}, - [218] = {.lex_state = 70}, - [219] = {.lex_state = 70}, - [220] = {.lex_state = 70}, - [221] = {.lex_state = 70}, - [222] = {.lex_state = 70}, - [223] = {.lex_state = 70}, - [224] = {.lex_state = 70}, - [225] = {.lex_state = 70}, - [226] = {.lex_state = 70}, - [227] = {.lex_state = 70}, - [228] = {.lex_state = 70}, - [229] = {.lex_state = 70}, - [230] = {.lex_state = 70}, - [231] = {.lex_state = 70}, - [232] = {.lex_state = 70}, - [233] = {.lex_state = 70}, - [234] = {.lex_state = 70}, - [235] = {.lex_state = 70}, - [236] = {.lex_state = 70}, - [237] = {.lex_state = 70}, - [238] = {.lex_state = 70}, - [239] = {.lex_state = 70}, - [240] = {.lex_state = 70}, - [241] = {.lex_state = 70}, - [242] = {.lex_state = 70}, - [243] = {.lex_state = 70}, - [244] = {.lex_state = 70}, - [245] = {.lex_state = 70}, - [246] = {.lex_state = 70}, - [247] = {.lex_state = 70}, - [248] = {.lex_state = 70}, - [249] = {.lex_state = 70}, - [250] = {.lex_state = 70}, - [251] = {.lex_state = 70}, - [252] = {.lex_state = 70}, - [253] = {.lex_state = 70}, - [254] = {.lex_state = 70}, - [255] = {.lex_state = 70}, - [256] = {.lex_state = 70}, - [257] = {.lex_state = 70}, - [258] = {.lex_state = 70}, - [259] = {.lex_state = 70}, - [260] = {.lex_state = 70}, - [261] = {.lex_state = 70}, - [262] = {.lex_state = 70}, - [263] = {.lex_state = 70}, - [264] = {.lex_state = 70}, - [265] = {.lex_state = 70}, - [266] = {.lex_state = 70}, - [267] = {.lex_state = 70}, - [268] = {.lex_state = 70}, - [269] = {.lex_state = 70}, - [270] = {.lex_state = 70}, - [271] = {.lex_state = 70}, - [272] = {.lex_state = 70}, - [273] = {.lex_state = 70}, - [274] = {.lex_state = 70}, - [275] = {.lex_state = 70}, - [276] = {.lex_state = 70}, - [277] = {.lex_state = 70}, - [278] = {.lex_state = 70}, - [279] = {.lex_state = 70}, - [280] = {.lex_state = 70}, - [281] = {.lex_state = 70}, - [282] = {.lex_state = 70}, - [283] = {.lex_state = 70}, - [284] = {.lex_state = 70}, - [285] = {.lex_state = 70}, - [286] = {.lex_state = 70}, - [287] = {.lex_state = 70}, - [288] = {.lex_state = 70}, - [289] = {.lex_state = 70}, - [290] = {.lex_state = 70}, - [291] = {.lex_state = 70}, - [292] = {.lex_state = 70}, - [293] = {.lex_state = 70}, - [294] = {.lex_state = 70}, - [295] = {.lex_state = 70}, - [296] = {.lex_state = 70}, - [297] = {.lex_state = 70}, - [298] = {.lex_state = 70}, - [299] = {.lex_state = 70}, - [300] = {.lex_state = 70}, - [301] = {.lex_state = 70}, - [302] = {.lex_state = 70}, - [303] = {.lex_state = 70}, - [304] = {.lex_state = 70}, - [305] = {.lex_state = 70}, - [306] = {.lex_state = 70}, - [307] = {.lex_state = 70}, - [308] = {.lex_state = 70}, - [309] = {.lex_state = 70}, - [310] = {.lex_state = 70}, - [311] = {.lex_state = 70}, - [312] = {.lex_state = 70}, - [313] = {.lex_state = 70}, - [314] = {.lex_state = 70}, - [315] = {.lex_state = 70}, - [316] = {.lex_state = 70}, - [317] = {.lex_state = 70}, - [318] = {.lex_state = 70}, - [319] = {.lex_state = 70}, - [320] = {.lex_state = 70}, - [321] = {.lex_state = 70}, - [322] = {.lex_state = 70}, - [323] = {.lex_state = 70}, - [324] = {.lex_state = 70}, - [325] = {.lex_state = 70}, - [326] = {.lex_state = 70}, - [327] = {.lex_state = 70}, - [328] = {.lex_state = 70}, - [329] = {.lex_state = 70}, - [330] = {.lex_state = 70}, - [331] = {.lex_state = 70}, - [332] = {.lex_state = 70}, - [333] = {.lex_state = 70}, - [334] = {.lex_state = 70}, - [335] = {.lex_state = 70}, - [336] = {.lex_state = 70}, - [337] = {.lex_state = 70}, - [338] = {.lex_state = 70}, - [339] = {.lex_state = 70}, - [340] = {.lex_state = 70}, - [341] = {.lex_state = 70}, - [342] = {.lex_state = 70}, - [343] = {.lex_state = 70}, - [344] = {.lex_state = 70}, - [345] = {.lex_state = 70}, - [346] = {.lex_state = 70}, - [347] = {.lex_state = 70}, - [348] = {.lex_state = 70}, - [349] = {.lex_state = 70}, - [350] = {.lex_state = 70}, - [351] = {.lex_state = 70}, - [352] = {.lex_state = 70}, - [353] = {.lex_state = 70}, - [354] = {.lex_state = 70}, - [355] = {.lex_state = 70}, - [356] = {.lex_state = 70}, - [357] = {.lex_state = 70}, - [358] = {.lex_state = 70}, - [359] = {.lex_state = 70}, - [360] = {.lex_state = 70}, - [361] = {.lex_state = 70}, - [362] = {.lex_state = 70}, - [363] = {.lex_state = 70}, - [364] = {.lex_state = 70}, - [365] = {.lex_state = 70}, - [366] = {.lex_state = 70}, - [367] = {.lex_state = 70}, - [368] = {.lex_state = 70}, - [369] = {.lex_state = 70}, - [370] = {.lex_state = 70}, - [371] = {.lex_state = 70}, - [372] = {.lex_state = 70}, - [373] = {.lex_state = 70}, - [374] = {.lex_state = 70}, - [375] = {.lex_state = 70}, - [376] = {.lex_state = 70}, - [377] = {.lex_state = 70}, - [378] = {.lex_state = 70}, - [379] = {.lex_state = 70}, - [380] = {.lex_state = 70}, - [381] = {.lex_state = 70}, - [382] = {.lex_state = 70}, - [383] = {.lex_state = 70}, - [384] = {.lex_state = 70}, - [385] = {.lex_state = 70}, - [386] = {.lex_state = 70}, - [387] = {.lex_state = 70}, - [388] = {.lex_state = 70}, - [389] = {.lex_state = 70}, - [390] = {.lex_state = 70}, - [391] = {.lex_state = 70}, - [392] = {.lex_state = 70}, - [393] = {.lex_state = 70}, - [394] = {.lex_state = 70}, - [395] = {.lex_state = 70}, - [396] = {.lex_state = 70}, - [397] = {.lex_state = 70}, - [398] = {.lex_state = 70}, - [399] = {.lex_state = 70}, - [400] = {.lex_state = 70}, - [401] = {.lex_state = 70}, - [402] = {.lex_state = 70}, - [403] = {.lex_state = 70}, - [404] = {.lex_state = 70}, - [405] = {.lex_state = 70}, - [406] = {.lex_state = 70}, - [407] = {.lex_state = 70}, - [408] = {.lex_state = 70}, - [409] = {.lex_state = 70}, - [410] = {.lex_state = 70}, - [411] = {.lex_state = 70}, - [412] = {.lex_state = 70}, - [413] = {.lex_state = 70}, - [414] = {.lex_state = 70}, - [415] = {.lex_state = 70}, - [416] = {.lex_state = 70}, - [417] = {.lex_state = 70}, - [418] = {.lex_state = 70}, - [419] = {.lex_state = 70}, - [420] = {.lex_state = 70}, - [421] = {.lex_state = 70}, - [422] = {.lex_state = 70}, - [423] = {.lex_state = 70}, - [424] = {.lex_state = 70}, - [425] = {.lex_state = 70}, - [426] = {.lex_state = 70}, - [427] = {.lex_state = 70}, - [428] = {.lex_state = 70}, - [429] = {.lex_state = 70}, - [430] = {.lex_state = 70}, - [431] = {.lex_state = 70}, - [432] = {.lex_state = 70}, - [433] = {.lex_state = 70}, - [434] = {.lex_state = 70}, - [435] = {.lex_state = 70}, - [436] = {.lex_state = 70}, - [437] = {.lex_state = 70}, - [438] = {.lex_state = 70}, - [439] = {.lex_state = 70}, - [440] = {.lex_state = 70}, - [441] = {.lex_state = 70}, - [442] = {.lex_state = 70, .external_lex_state = 2}, - [443] = {.lex_state = 70, .external_lex_state = 2}, - [444] = {.lex_state = 70, .external_lex_state = 2}, - [445] = {.lex_state = 70, .external_lex_state = 2}, - [446] = {.lex_state = 70, .external_lex_state = 2}, - [447] = {.lex_state = 70, .external_lex_state = 2}, - [448] = {.lex_state = 70, .external_lex_state = 2}, - [449] = {.lex_state = 70, .external_lex_state = 2}, - [450] = {.lex_state = 70, .external_lex_state = 2}, - [451] = {.lex_state = 70, .external_lex_state = 2}, - [452] = {.lex_state = 70, .external_lex_state = 2}, - [453] = {.lex_state = 70, .external_lex_state = 2}, - [454] = {.lex_state = 70, .external_lex_state = 2}, - [455] = {.lex_state = 70, .external_lex_state = 2}, - [456] = {.lex_state = 70, .external_lex_state = 2}, - [457] = {.lex_state = 70, .external_lex_state = 2}, - [458] = {.lex_state = 70, .external_lex_state = 2}, - [459] = {.lex_state = 70, .external_lex_state = 2}, - [460] = {.lex_state = 70, .external_lex_state = 2}, - [461] = {.lex_state = 70, .external_lex_state = 2}, - [462] = {.lex_state = 70}, - [463] = {.lex_state = 70}, - [464] = {.lex_state = 70}, - [465] = {.lex_state = 70}, - [466] = {.lex_state = 70}, - [467] = {.lex_state = 70}, - [468] = {.lex_state = 70}, - [469] = {.lex_state = 70}, - [470] = {.lex_state = 70}, - [471] = {.lex_state = 70}, - [472] = {.lex_state = 70}, - [473] = {.lex_state = 70}, - [474] = {.lex_state = 70}, - [475] = {.lex_state = 70}, - [476] = {.lex_state = 70}, - [477] = {.lex_state = 70}, - [478] = {.lex_state = 70}, - [479] = {.lex_state = 70}, - [480] = {.lex_state = 70}, - [481] = {.lex_state = 70}, - [482] = {.lex_state = 70}, - [483] = {.lex_state = 70}, - [484] = {.lex_state = 70}, - [485] = {.lex_state = 70}, - [486] = {.lex_state = 70}, - [487] = {.lex_state = 70}, - [488] = {.lex_state = 70}, - [489] = {.lex_state = 70}, - [490] = {.lex_state = 70}, - [491] = {.lex_state = 70}, - [492] = {.lex_state = 70}, - [493] = {.lex_state = 70}, - [494] = {.lex_state = 70}, - [495] = {.lex_state = 70}, - [496] = {.lex_state = 70}, - [497] = {.lex_state = 70}, - [498] = {.lex_state = 70}, - [499] = {.lex_state = 70}, - [500] = {.lex_state = 70}, - [501] = {.lex_state = 70}, - [502] = {.lex_state = 70}, - [503] = {.lex_state = 70}, - [504] = {.lex_state = 70}, - [505] = {.lex_state = 70}, - [506] = {.lex_state = 70}, - [507] = {.lex_state = 70}, - [508] = {.lex_state = 70}, - [509] = {.lex_state = 70}, - [510] = {.lex_state = 70}, - [511] = {.lex_state = 70}, - [512] = {.lex_state = 70}, - [513] = {.lex_state = 70}, - [514] = {.lex_state = 70}, - [515] = {.lex_state = 70}, - [516] = {.lex_state = 70}, - [517] = {.lex_state = 70}, - [518] = {.lex_state = 70}, - [519] = {.lex_state = 70}, - [520] = {.lex_state = 70}, - [521] = {.lex_state = 70}, - [522] = {.lex_state = 70}, - [523] = {.lex_state = 70}, - [524] = {.lex_state = 70}, - [525] = {.lex_state = 70}, - [526] = {.lex_state = 70}, - [527] = {.lex_state = 70}, - [528] = {.lex_state = 70}, - [529] = {.lex_state = 70}, - [530] = {.lex_state = 70}, - [531] = {.lex_state = 70}, - [532] = {.lex_state = 70}, - [533] = {.lex_state = 70}, - [534] = {.lex_state = 70}, - [535] = {.lex_state = 70}, - [536] = {.lex_state = 70}, - [537] = {.lex_state = 70}, - [538] = {.lex_state = 70}, - [539] = {.lex_state = 70}, - [540] = {.lex_state = 70}, - [541] = {.lex_state = 70}, - [542] = {.lex_state = 70}, - [543] = {.lex_state = 70}, - [544] = {.lex_state = 70}, - [545] = {.lex_state = 70}, - [546] = {.lex_state = 70}, - [547] = {.lex_state = 70}, - [548] = {.lex_state = 70}, - [549] = {.lex_state = 70}, - [550] = {.lex_state = 70}, - [551] = {.lex_state = 70}, - [552] = {.lex_state = 70}, - [553] = {.lex_state = 70}, - [554] = {.lex_state = 70}, - [555] = {.lex_state = 70}, - [556] = {.lex_state = 70}, - [557] = {.lex_state = 70}, - [558] = {.lex_state = 70}, - [559] = {.lex_state = 70}, - [560] = {.lex_state = 70}, - [561] = {.lex_state = 70}, - [562] = {.lex_state = 70}, - [563] = {.lex_state = 70}, - [564] = {.lex_state = 70}, - [565] = {.lex_state = 70}, - [566] = {.lex_state = 70}, - [567] = {.lex_state = 70}, - [568] = {.lex_state = 70}, - [569] = {.lex_state = 70}, - [570] = {.lex_state = 70}, - [571] = {.lex_state = 71}, - [572] = {.lex_state = 71}, - [573] = {.lex_state = 71}, - [574] = {.lex_state = 71}, - [575] = {.lex_state = 71}, - [576] = {.lex_state = 71}, - [577] = {.lex_state = 71}, - [578] = {.lex_state = 71}, - [579] = {.lex_state = 71}, - [580] = {.lex_state = 71}, - [581] = {.lex_state = 71}, - [582] = {.lex_state = 71}, - [583] = {.lex_state = 71}, - [584] = {.lex_state = 71}, - [585] = {.lex_state = 71}, - [586] = {.lex_state = 71}, - [587] = {.lex_state = 71}, - [588] = {.lex_state = 71}, - [589] = {.lex_state = 71}, - [590] = {.lex_state = 71}, - [591] = {.lex_state = 71}, - [592] = {.lex_state = 71}, - [593] = {.lex_state = 71}, - [594] = {.lex_state = 71}, - [595] = {.lex_state = 71}, - [596] = {.lex_state = 71}, - [597] = {.lex_state = 71}, - [598] = {.lex_state = 71}, - [599] = {.lex_state = 71}, - [600] = {.lex_state = 71}, - [601] = {.lex_state = 71, .external_lex_state = 2}, - [602] = {.lex_state = 71}, - [603] = {.lex_state = 71, .external_lex_state = 2}, - [604] = {.lex_state = 71, .external_lex_state = 2}, - [605] = {.lex_state = 71, .external_lex_state = 2}, - [606] = {.lex_state = 71, .external_lex_state = 2}, - [607] = {.lex_state = 71, .external_lex_state = 2}, - [608] = {.lex_state = 71, .external_lex_state = 2}, - [609] = {.lex_state = 71, .external_lex_state = 2}, - [610] = {.lex_state = 71}, - [611] = {.lex_state = 71, .external_lex_state = 2}, - [612] = {.lex_state = 71, .external_lex_state = 2}, - [613] = {.lex_state = 71, .external_lex_state = 2}, - [614] = {.lex_state = 71}, - [615] = {.lex_state = 71, .external_lex_state = 2}, - [616] = {.lex_state = 71, .external_lex_state = 2}, - [617] = {.lex_state = 71}, - [618] = {.lex_state = 71, .external_lex_state = 2}, - [619] = {.lex_state = 71, .external_lex_state = 2}, - [620] = {.lex_state = 71, .external_lex_state = 2}, - [621] = {.lex_state = 71, .external_lex_state = 2}, - [622] = {.lex_state = 71, .external_lex_state = 2}, - [623] = {.lex_state = 71, .external_lex_state = 2}, - [624] = {.lex_state = 71, .external_lex_state = 2}, - [625] = {.lex_state = 71, .external_lex_state = 2}, - [626] = {.lex_state = 71}, - [627] = {.lex_state = 71}, - [628] = {.lex_state = 71, .external_lex_state = 2}, - [629] = {.lex_state = 71}, - [630] = {.lex_state = 71, .external_lex_state = 2}, - [631] = {.lex_state = 71}, - [632] = {.lex_state = 71}, - [633] = {.lex_state = 71, .external_lex_state = 2}, - [634] = {.lex_state = 71, .external_lex_state = 2}, - [635] = {.lex_state = 71, .external_lex_state = 2}, - [636] = {.lex_state = 71, .external_lex_state = 2}, - [637] = {.lex_state = 71}, - [638] = {.lex_state = 71, .external_lex_state = 2}, - [639] = {.lex_state = 71}, - [640] = {.lex_state = 71}, - [641] = {.lex_state = 71}, - [642] = {.lex_state = 71}, - [643] = {.lex_state = 71}, - [644] = {.lex_state = 71}, - [645] = {.lex_state = 71}, - [646] = {.lex_state = 71}, - [647] = {.lex_state = 10}, - [648] = {.lex_state = 10}, - [649] = {.lex_state = 10}, + [198] = {.lex_state = 75, .external_lex_state = 2}, + [199] = {.lex_state = 75}, + [200] = {.lex_state = 75, .external_lex_state = 2}, + [201] = {.lex_state = 75}, + [202] = {.lex_state = 75}, + [203] = {.lex_state = 75, .external_lex_state = 2}, + [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}, + [437] = {.lex_state = 75}, + [438] = {.lex_state = 75}, + [439] = {.lex_state = 75}, + [440] = {.lex_state = 75}, + [441] = {.lex_state = 75}, + [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, .external_lex_state = 2}, + [457] = {.lex_state = 75, .external_lex_state = 2}, + [458] = {.lex_state = 75, .external_lex_state = 2}, + [459] = {.lex_state = 75, .external_lex_state = 2}, + [460] = {.lex_state = 75, .external_lex_state = 2}, + [461] = {.lex_state = 75, .external_lex_state = 2}, + [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 = 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}, + [598] = {.lex_state = 10}, + [599] = {.lex_state = 10}, + [600] = {.lex_state = 10}, + [601] = {.lex_state = 10, .external_lex_state = 2}, + [602] = {.lex_state = 10}, + [603] = {.lex_state = 10, .external_lex_state = 2}, + [604] = {.lex_state = 10, .external_lex_state = 2}, + [605] = {.lex_state = 10, .external_lex_state = 2}, + [606] = {.lex_state = 10, .external_lex_state = 2}, + [607] = {.lex_state = 10, .external_lex_state = 2}, + [608] = {.lex_state = 10, .external_lex_state = 2}, + [609] = {.lex_state = 10, .external_lex_state = 2}, + [610] = {.lex_state = 10}, + [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}, + [615] = {.lex_state = 10, .external_lex_state = 2}, + [616] = {.lex_state = 10, .external_lex_state = 2}, + [617] = {.lex_state = 10}, + [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, .external_lex_state = 2}, + [622] = {.lex_state = 10, .external_lex_state = 2}, + [623] = {.lex_state = 10, .external_lex_state = 2}, + [624] = {.lex_state = 10, .external_lex_state = 2}, + [625] = {.lex_state = 10, .external_lex_state = 2}, + [626] = {.lex_state = 10}, + [627] = {.lex_state = 10}, + [628] = {.lex_state = 10, .external_lex_state = 2}, + [629] = {.lex_state = 10}, + [630] = {.lex_state = 10, .external_lex_state = 2}, + [631] = {.lex_state = 10}, + [632] = {.lex_state = 10}, + [633] = {.lex_state = 10, .external_lex_state = 2}, + [634] = {.lex_state = 10, .external_lex_state = 2}, + [635] = {.lex_state = 10, .external_lex_state = 2}, + [636] = {.lex_state = 10, .external_lex_state = 2}, + [637] = {.lex_state = 10}, + [638] = {.lex_state = 10, .external_lex_state = 2}, + [639] = {.lex_state = 10}, + [640] = {.lex_state = 10}, + [641] = {.lex_state = 10}, + [642] = {.lex_state = 10}, + [643] = {.lex_state = 10}, + [644] = {.lex_state = 10}, + [645] = {.lex_state = 10}, + [646] = {.lex_state = 10}, + [647] = {.lex_state = 11}, + [648] = {.lex_state = 11}, + [649] = {.lex_state = 11}, [650] = {.lex_state = 9}, - [651] = {.lex_state = 10}, - [652] = {.lex_state = 10}, + [651] = {.lex_state = 11}, + [652] = {.lex_state = 11}, [653] = {.lex_state = 9}, [654] = {.lex_state = 9}, - [655] = {.lex_state = 10}, + [655] = {.lex_state = 11}, [656] = {.lex_state = 9}, - [657] = {.lex_state = 10}, - [658] = {.lex_state = 73}, - [659] = {.lex_state = 73}, + [657] = {.lex_state = 11}, + [658] = {.lex_state = 76}, + [659] = {.lex_state = 76}, [660] = {.lex_state = 9}, [661] = {.lex_state = 15}, - [662] = {.lex_state = 10}, - [663] = {.lex_state = 10}, - [664] = {.lex_state = 10}, - [665] = {.lex_state = 10}, - [666] = {.lex_state = 10}, - [667] = {.lex_state = 10}, - [668] = {.lex_state = 10}, - [669] = {.lex_state = 10}, + [662] = {.lex_state = 11}, + [663] = {.lex_state = 11}, + [664] = {.lex_state = 11}, + [665] = {.lex_state = 11}, + [666] = {.lex_state = 11}, + [667] = {.lex_state = 11}, + [668] = {.lex_state = 11}, + [669] = {.lex_state = 11}, [670] = {.lex_state = 15}, - [671] = {.lex_state = 10}, - [672] = {.lex_state = 10}, - [673] = {.lex_state = 10}, + [671] = {.lex_state = 11}, + [672] = {.lex_state = 11}, + [673] = {.lex_state = 11}, [674] = {.lex_state = 9}, - [675] = {.lex_state = 10}, - [676] = {.lex_state = 10}, - [677] = {.lex_state = 10}, - [678] = {.lex_state = 10}, - [679] = {.lex_state = 10}, - [680] = {.lex_state = 10}, + [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 = 9}, [682] = {.lex_state = 9}, [683] = {.lex_state = 9}, - [684] = {.lex_state = 18}, + [684] = {.lex_state = 19}, [685] = {.lex_state = 16}, [686] = {.lex_state = 9}, [687] = {.lex_state = 9}, @@ -11141,14 +11184,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [709] = {.lex_state = 9}, [710] = {.lex_state = 9}, [711] = {.lex_state = 9}, - [712] = {.lex_state = 10}, + [712] = {.lex_state = 11}, [713] = {.lex_state = 9}, - [714] = {.lex_state = 10}, + [714] = {.lex_state = 11}, [715] = {.lex_state = 9}, [716] = {.lex_state = 9}, [717] = {.lex_state = 9}, [718] = {.lex_state = 9}, - [719] = {.lex_state = 18}, + [719] = {.lex_state = 19}, [720] = {.lex_state = 9}, [721] = {.lex_state = 9}, [722] = {.lex_state = 9}, @@ -11170,8 +11213,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [738] = {.lex_state = 16}, [739] = {.lex_state = 9}, [740] = {.lex_state = 9}, - [741] = {.lex_state = 18}, - [742] = {.lex_state = 18}, + [741] = {.lex_state = 19}, + [742] = {.lex_state = 19}, [743] = {.lex_state = 9}, [744] = {.lex_state = 9}, [745] = {.lex_state = 9}, @@ -11187,65 +11230,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [755] = {.lex_state = 9}, [756] = {.lex_state = 9}, [757] = {.lex_state = 9}, - [758] = {.lex_state = 18}, - [759] = {.lex_state = 18}, + [758] = {.lex_state = 19}, + [759] = {.lex_state = 19}, [760] = {.lex_state = 9}, [761] = {.lex_state = 9}, [762] = {.lex_state = 9}, [763] = {.lex_state = 9}, [764] = {.lex_state = 9}, [765] = {.lex_state = 9}, - [766] = {.lex_state = 13}, + [766] = {.lex_state = 12}, [767] = {.lex_state = 9}, [768] = {.lex_state = 9, .external_lex_state = 2}, [769] = {.lex_state = 9}, - [770] = {.lex_state = 18}, + [770] = {.lex_state = 19}, [771] = {.lex_state = 9}, - [772] = {.lex_state = 13}, + [772] = {.lex_state = 12}, [773] = {.lex_state = 9, .external_lex_state = 2}, [774] = {.lex_state = 9}, - [775] = {.lex_state = 10, .external_lex_state = 2}, - [776] = {.lex_state = 10, .external_lex_state = 2}, - [777] = {.lex_state = 10, .external_lex_state = 2}, + [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 = 9, .external_lex_state = 2}, [779] = {.lex_state = 9}, - [780] = {.lex_state = 10, .external_lex_state = 2}, + [780] = {.lex_state = 11, .external_lex_state = 2}, [781] = {.lex_state = 9, .external_lex_state = 2}, - [782] = {.lex_state = 10, .external_lex_state = 2}, - [783] = {.lex_state = 10, .external_lex_state = 2}, + [782] = {.lex_state = 11, .external_lex_state = 2}, + [783] = {.lex_state = 11, .external_lex_state = 2}, [784] = {.lex_state = 9}, - [785] = {.lex_state = 10, .external_lex_state = 2}, + [785] = {.lex_state = 11, .external_lex_state = 2}, [786] = {.lex_state = 9, .external_lex_state = 2}, - [787] = {.lex_state = 10, .external_lex_state = 2}, - [788] = {.lex_state = 10, .external_lex_state = 2}, - [789] = {.lex_state = 10, .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 = 9, .external_lex_state = 2}, - [791] = {.lex_state = 10, .external_lex_state = 2}, + [791] = {.lex_state = 11, .external_lex_state = 2}, [792] = {.lex_state = 7}, [793] = {.lex_state = 9}, - [794] = {.lex_state = 10, .external_lex_state = 2}, - [795] = {.lex_state = 10, .external_lex_state = 2}, - [796] = {.lex_state = 10, .external_lex_state = 2}, - [797] = {.lex_state = 10, .external_lex_state = 2}, - [798] = {.lex_state = 10, .external_lex_state = 2}, - [799] = {.lex_state = 10, .external_lex_state = 2}, - [800] = {.lex_state = 10, .external_lex_state = 2}, - [801] = {.lex_state = 10, .external_lex_state = 2}, - [802] = {.lex_state = 10, .external_lex_state = 2}, - [803] = {.lex_state = 10, .external_lex_state = 2}, - [804] = {.lex_state = 10, .external_lex_state = 2}, - [805] = {.lex_state = 10, .external_lex_state = 2}, - [806] = {.lex_state = 10, .external_lex_state = 2}, + [794] = {.lex_state = 11, .external_lex_state = 2}, + [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 = 11, .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 = 11, .external_lex_state = 2}, + [806] = {.lex_state = 11, .external_lex_state = 2}, [807] = {.lex_state = 16}, [808] = {.lex_state = 16}, - [809] = {.lex_state = 13}, + [809] = {.lex_state = 12}, [810] = {.lex_state = 9, .external_lex_state = 2}, [811] = {.lex_state = 9, .external_lex_state = 2}, [812] = {.lex_state = 9, .external_lex_state = 2}, [813] = {.lex_state = 9, .external_lex_state = 2}, [814] = {.lex_state = 9, .external_lex_state = 2}, [815] = {.lex_state = 16}, - [816] = {.lex_state = 13}, + [816] = {.lex_state = 12}, [817] = {.lex_state = 9, .external_lex_state = 2}, [818] = {.lex_state = 9, .external_lex_state = 2}, [819] = {.lex_state = 16}, @@ -11275,9 +11318,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [843] = {.lex_state = 16}, [844] = {.lex_state = 16}, [845] = {.lex_state = 16}, - [846] = {.lex_state = 10, .external_lex_state = 2}, + [846] = {.lex_state = 11, .external_lex_state = 2}, [847] = {.lex_state = 16}, - [848] = {.lex_state = 10, .external_lex_state = 2}, + [848] = {.lex_state = 11, .external_lex_state = 2}, [849] = {.lex_state = 9, .external_lex_state = 2}, [850] = {.lex_state = 9, .external_lex_state = 2}, [851] = {.lex_state = 16}, @@ -11335,1752 +11378,1752 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [903] = {.lex_state = 9, .external_lex_state = 2}, [904] = {.lex_state = 9, .external_lex_state = 2}, [905] = {.lex_state = 9, .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 = 13}, - [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, .external_lex_state = 2}, - [972] = {.lex_state = 13, .external_lex_state = 2}, - [973] = {.lex_state = 20}, - [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 = 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}, - [1034] = {.lex_state = 13}, - [1035] = {.lex_state = 13}, - [1036] = {.lex_state = 13}, - [1037] = {.lex_state = 13}, - [1038] = {.lex_state = 13}, - [1039] = {.lex_state = 13}, - [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 = 13, .external_lex_state = 2}, - [1061] = {.lex_state = 13, .external_lex_state = 2}, - [1062] = {.lex_state = 13, .external_lex_state = 2}, - [1063] = {.lex_state = 73}, - [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 = 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 = 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 = 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 = 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 = 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 = 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}, - [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 = 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, .external_lex_state = 2}, - [1175] = {.lex_state = 19}, - [1176] = {.lex_state = 19}, - [1177] = {.lex_state = 19}, - [1178] = {.lex_state = 13}, - [1179] = {.lex_state = 19}, - [1180] = {.lex_state = 13}, - [1181] = {.lex_state = 13, .external_lex_state = 2}, - [1182] = {.lex_state = 13, .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 = 12}, + [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, .external_lex_state = 2}, + [972] = {.lex_state = 12, .external_lex_state = 2}, + [973] = {.lex_state = 13}, + [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 = 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}, + [1034] = {.lex_state = 12}, + [1035] = {.lex_state = 12}, + [1036] = {.lex_state = 12}, + [1037] = {.lex_state = 12}, + [1038] = {.lex_state = 12}, + [1039] = {.lex_state = 12}, + [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 = 12, .external_lex_state = 2}, + [1061] = {.lex_state = 12, .external_lex_state = 2}, + [1062] = {.lex_state = 12, .external_lex_state = 2}, + [1063] = {.lex_state = 76}, + [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 = 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 = 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 = 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 = 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 = 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, .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}, + [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}, + [1174] = {.lex_state = 12, .external_lex_state = 2}, + [1175] = {.lex_state = 20}, + [1176] = {.lex_state = 20}, + [1177] = {.lex_state = 20}, + [1178] = {.lex_state = 12}, + [1179] = {.lex_state = 20}, + [1180] = {.lex_state = 12}, + [1181] = {.lex_state = 12, .external_lex_state = 2}, + [1182] = {.lex_state = 12, .external_lex_state = 2}, [1183] = {.lex_state = 13}, [1184] = {.lex_state = 13}, - [1185] = {.lex_state = 13}, - [1186] = {.lex_state = 13, .external_lex_state = 2}, - [1187] = {.lex_state = 19}, - [1188] = {.lex_state = 13, .external_lex_state = 2}, - [1189] = {.lex_state = 19}, - [1190] = {.lex_state = 13}, - [1191] = {.lex_state = 19}, - [1192] = {.lex_state = 19}, - [1193] = {.lex_state = 19}, - [1194] = {.lex_state = 13}, - [1195] = {.lex_state = 13}, - [1196] = {.lex_state = 13, .external_lex_state = 2}, - [1197] = {.lex_state = 13}, - [1198] = {.lex_state = 13}, - [1199] = {.lex_state = 13, .external_lex_state = 2}, - [1200] = {.lex_state = 13}, - [1201] = {.lex_state = 73}, - [1202] = {.lex_state = 13}, - [1203] = {.lex_state = 13}, - [1204] = {.lex_state = 13}, - [1205] = {.lex_state = 13}, - [1206] = {.lex_state = 13}, - [1207] = {.lex_state = 13}, - [1208] = {.lex_state = 13, .external_lex_state = 2}, - [1209] = {.lex_state = 13}, - [1210] = {.lex_state = 13}, - [1211] = {.lex_state = 13}, - [1212] = {.lex_state = 13}, - [1213] = {.lex_state = 13}, - [1214] = {.lex_state = 13}, - [1215] = {.lex_state = 13}, - [1216] = {.lex_state = 13}, - [1217] = {.lex_state = 13}, - [1218] = {.lex_state = 13}, - [1219] = {.lex_state = 13}, - [1220] = {.lex_state = 13}, - [1221] = {.lex_state = 13, .external_lex_state = 2}, - [1222] = {.lex_state = 13, .external_lex_state = 2}, - [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 = 13, .external_lex_state = 2}, - [1228] = {.lex_state = 13}, - [1229] = {.lex_state = 13}, - [1230] = {.lex_state = 73}, - [1231] = {.lex_state = 13}, - [1232] = {.lex_state = 13}, - [1233] = {.lex_state = 13}, - [1234] = {.lex_state = 13}, - [1235] = {.lex_state = 13}, - [1236] = {.lex_state = 13}, - [1237] = {.lex_state = 13}, + [1185] = {.lex_state = 12}, + [1186] = {.lex_state = 12, .external_lex_state = 2}, + [1187] = {.lex_state = 20}, + [1188] = {.lex_state = 12, .external_lex_state = 2}, + [1189] = {.lex_state = 20}, + [1190] = {.lex_state = 12}, + [1191] = {.lex_state = 20}, + [1192] = {.lex_state = 20}, + [1193] = {.lex_state = 20}, + [1194] = {.lex_state = 12}, + [1195] = {.lex_state = 12}, + [1196] = {.lex_state = 12, .external_lex_state = 2}, + [1197] = {.lex_state = 12}, + [1198] = {.lex_state = 12}, + [1199] = {.lex_state = 12, .external_lex_state = 2}, + [1200] = {.lex_state = 12}, + [1201] = {.lex_state = 76}, + [1202] = {.lex_state = 12}, + [1203] = {.lex_state = 12}, + [1204] = {.lex_state = 12}, + [1205] = {.lex_state = 12}, + [1206] = {.lex_state = 12}, + [1207] = {.lex_state = 12}, + [1208] = {.lex_state = 12, .external_lex_state = 2}, + [1209] = {.lex_state = 12}, + [1210] = {.lex_state = 12}, + [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 = 12}, + [1218] = {.lex_state = 12}, + [1219] = {.lex_state = 12}, + [1220] = {.lex_state = 12}, + [1221] = {.lex_state = 12, .external_lex_state = 2}, + [1222] = {.lex_state = 12, .external_lex_state = 2}, + [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, .external_lex_state = 2}, + [1228] = {.lex_state = 12}, + [1229] = {.lex_state = 12}, + [1230] = {.lex_state = 76}, + [1231] = {.lex_state = 12}, + [1232] = {.lex_state = 12}, + [1233] = {.lex_state = 12}, + [1234] = {.lex_state = 12}, + [1235] = {.lex_state = 12}, + [1236] = {.lex_state = 12}, + [1237] = {.lex_state = 12}, [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 = 19}, - [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}, + [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 = 20}, + [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 = 13}, - [1270] = {.lex_state = 13}, - [1271] = {.lex_state = 13}, - [1272] = {.lex_state = 13}, - [1273] = {.lex_state = 13}, - [1274] = {.lex_state = 73}, - [1275] = {.lex_state = 13}, - [1276] = {.lex_state = 13}, - [1277] = {.lex_state = 19}, - [1278] = {.lex_state = 13}, - [1279] = {.lex_state = 13}, - [1280] = {.lex_state = 13}, - [1281] = {.lex_state = 13}, - [1282] = {.lex_state = 13}, - [1283] = {.lex_state = 19}, - [1284] = {.lex_state = 13}, - [1285] = {.lex_state = 13}, - [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 = 13}, - [1303] = {.lex_state = 13}, - [1304] = {.lex_state = 13}, - [1305] = {.lex_state = 19}, - [1306] = {.lex_state = 19}, - [1307] = {.lex_state = 13}, - [1308] = {.lex_state = 13}, - [1309] = {.lex_state = 73}, + [1270] = {.lex_state = 12}, + [1271] = {.lex_state = 12}, + [1272] = {.lex_state = 12}, + [1273] = {.lex_state = 12}, + [1274] = {.lex_state = 76}, + [1275] = {.lex_state = 12}, + [1276] = {.lex_state = 12}, + [1277] = {.lex_state = 20}, + [1278] = {.lex_state = 12}, + [1279] = {.lex_state = 12}, + [1280] = {.lex_state = 12}, + [1281] = {.lex_state = 12}, + [1282] = {.lex_state = 12}, + [1283] = {.lex_state = 20}, + [1284] = {.lex_state = 12}, + [1285] = {.lex_state = 12}, + [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 = 20}, + [1306] = {.lex_state = 20}, + [1307] = {.lex_state = 12}, + [1308] = {.lex_state = 12}, + [1309] = {.lex_state = 76}, [1310] = {.lex_state = 13}, [1311] = {.lex_state = 13}, - [1312] = {.lex_state = 73}, - [1313] = {.lex_state = 73}, - [1314] = {.lex_state = 73}, - [1315] = {.lex_state = 73}, - [1316] = {.lex_state = 73}, - [1317] = {.lex_state = 73}, - [1318] = {.lex_state = 18}, - [1319] = {.lex_state = 18}, + [1312] = {.lex_state = 76}, + [1313] = {.lex_state = 76}, + [1314] = {.lex_state = 76}, + [1315] = {.lex_state = 76}, + [1316] = {.lex_state = 76}, + [1317] = {.lex_state = 76}, + [1318] = {.lex_state = 19}, + [1319] = {.lex_state = 19}, [1320] = {.lex_state = 13}, [1321] = {.lex_state = 13}, [1322] = {.lex_state = 13}, [1323] = {.lex_state = 13}, - [1324] = {.lex_state = 18}, - [1325] = {.lex_state = 18}, - [1326] = {.lex_state = 18}, + [1324] = {.lex_state = 19}, + [1325] = {.lex_state = 19}, + [1326] = {.lex_state = 19}, [1327] = {.lex_state = 13}, [1328] = {.lex_state = 13}, - [1329] = {.lex_state = 18}, - [1330] = {.lex_state = 71}, - [1331] = {.lex_state = 71}, - [1332] = {.lex_state = 71}, + [1329] = {.lex_state = 19}, + [1330] = {.lex_state = 13}, + [1331] = {.lex_state = 13}, + [1332] = {.lex_state = 13}, [1333] = {.lex_state = 13}, - [1334] = {.lex_state = 73}, + [1334] = {.lex_state = 76}, [1335] = {.lex_state = 13}, - [1336] = {.lex_state = 73}, + [1336] = {.lex_state = 76}, [1337] = {.lex_state = 3, .external_lex_state = 3}, [1338] = {.lex_state = 3, .external_lex_state = 3}, - [1339] = {.lex_state = 19}, - [1340] = {.lex_state = 73}, - [1341] = {.lex_state = 73}, - [1342] = {.lex_state = 19}, + [1339] = {.lex_state = 20}, + [1340] = {.lex_state = 76}, + [1341] = {.lex_state = 76}, + [1342] = {.lex_state = 20}, [1343] = {.lex_state = 3, .external_lex_state = 3}, [1344] = {.lex_state = 3, .external_lex_state = 4}, [1345] = {.lex_state = 3, .external_lex_state = 3}, [1346] = {.lex_state = 3, .external_lex_state = 3}, - [1347] = {.lex_state = 73}, + [1347] = {.lex_state = 76}, [1348] = {.lex_state = 16}, - [1349] = {.lex_state = 19}, - [1350] = {.lex_state = 19}, - [1351] = {.lex_state = 21, .external_lex_state = 4}, - [1352] = {.lex_state = 19}, - [1353] = {.lex_state = 19}, - [1354] = {.lex_state = 19}, + [1349] = {.lex_state = 20}, + [1350] = {.lex_state = 20}, + [1351] = {.lex_state = 22, .external_lex_state = 4}, + [1352] = {.lex_state = 20}, + [1353] = {.lex_state = 20}, + [1354] = {.lex_state = 20}, [1355] = {.lex_state = 17}, - [1356] = {.lex_state = 19}, - [1357] = {.lex_state = 19}, - [1358] = {.lex_state = 10, .external_lex_state = 5}, - [1359] = {.lex_state = 19}, - [1360] = {.lex_state = 19}, - [1361] = {.lex_state = 19}, - [1362] = {.lex_state = 19}, - [1363] = {.lex_state = 19}, - [1364] = {.lex_state = 19}, - [1365] = {.lex_state = 10, .external_lex_state = 5}, - [1366] = {.lex_state = 10, .external_lex_state = 5}, - [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 = 10, .external_lex_state = 5}, - [1376] = {.lex_state = 19}, - [1377] = {.lex_state = 10, .external_lex_state = 5}, - [1378] = {.lex_state = 73}, + [1356] = {.lex_state = 20}, + [1357] = {.lex_state = 20}, + [1358] = {.lex_state = 17, .external_lex_state = 5}, + [1359] = {.lex_state = 20}, + [1360] = {.lex_state = 20}, + [1361] = {.lex_state = 20}, + [1362] = {.lex_state = 20}, + [1363] = {.lex_state = 20}, + [1364] = {.lex_state = 20}, + [1365] = {.lex_state = 17, .external_lex_state = 5}, + [1366] = {.lex_state = 17, .external_lex_state = 5}, + [1367] = {.lex_state = 20}, + [1368] = {.lex_state = 20}, + [1369] = {.lex_state = 20}, + [1370] = {.lex_state = 20}, + [1371] = {.lex_state = 20}, + [1372] = {.lex_state = 20}, + [1373] = {.lex_state = 20}, + [1374] = {.lex_state = 20}, + [1375] = {.lex_state = 17, .external_lex_state = 5}, + [1376] = {.lex_state = 20}, + [1377] = {.lex_state = 17, .external_lex_state = 5}, + [1378] = {.lex_state = 76}, [1379] = {.lex_state = 3, .external_lex_state = 6}, - [1380] = {.lex_state = 19}, - [1381] = {.lex_state = 73}, - [1382] = {.lex_state = 19}, + [1380] = {.lex_state = 20}, + [1381] = {.lex_state = 76}, + [1382] = {.lex_state = 20}, [1383] = {.lex_state = 3, .external_lex_state = 6}, - [1384] = {.lex_state = 19}, - [1385] = {.lex_state = 19}, - [1386] = {.lex_state = 19}, - [1387] = {.lex_state = 19}, - [1388] = {.lex_state = 19}, - [1389] = {.lex_state = 19}, - [1390] = {.lex_state = 19}, - [1391] = {.lex_state = 73}, - [1392] = {.lex_state = 19}, - [1393] = {.lex_state = 19}, - [1394] = {.lex_state = 10, .external_lex_state = 7}, - [1395] = {.lex_state = 19}, - [1396] = {.lex_state = 19}, - [1397] = {.lex_state = 19}, - [1398] = {.lex_state = 10, .external_lex_state = 7}, - [1399] = {.lex_state = 19}, - [1400] = {.lex_state = 19}, - [1401] = {.lex_state = 19}, - [1402] = {.lex_state = 73}, - [1403] = {.lex_state = 19}, - [1404] = {.lex_state = 19}, - [1405] = {.lex_state = 10, .external_lex_state = 7}, - [1406] = {.lex_state = 10, .external_lex_state = 7}, - [1407] = {.lex_state = 19}, - [1408] = {.lex_state = 19}, - [1409] = {.lex_state = 10, .external_lex_state = 7}, - [1410] = {.lex_state = 19}, - [1411] = {.lex_state = 19}, - [1412] = {.lex_state = 19}, - [1413] = {.lex_state = 73}, - [1414] = {.lex_state = 73}, - [1415] = {.lex_state = 73}, - [1416] = {.lex_state = 73}, - [1417] = {.lex_state = 73}, - [1418] = {.lex_state = 73}, - [1419] = {.lex_state = 73}, - [1420] = {.lex_state = 73}, - [1421] = {.lex_state = 71}, - [1422] = {.lex_state = 73}, - [1423] = {.lex_state = 73}, - [1424] = {.lex_state = 71}, - [1425] = {.lex_state = 71}, + [1384] = {.lex_state = 20}, + [1385] = {.lex_state = 20}, + [1386] = {.lex_state = 20}, + [1387] = {.lex_state = 20}, + [1388] = {.lex_state = 20}, + [1389] = {.lex_state = 20}, + [1390] = {.lex_state = 20}, + [1391] = {.lex_state = 76}, + [1392] = {.lex_state = 20}, + [1393] = {.lex_state = 20}, + [1394] = {.lex_state = 17, .external_lex_state = 7}, + [1395] = {.lex_state = 20}, + [1396] = {.lex_state = 20}, + [1397] = {.lex_state = 20}, + [1398] = {.lex_state = 17, .external_lex_state = 7}, + [1399] = {.lex_state = 20}, + [1400] = {.lex_state = 20}, + [1401] = {.lex_state = 20}, + [1402] = {.lex_state = 76}, + [1403] = {.lex_state = 20}, + [1404] = {.lex_state = 20}, + [1405] = {.lex_state = 17, .external_lex_state = 7}, + [1406] = {.lex_state = 17, .external_lex_state = 7}, + [1407] = {.lex_state = 20}, + [1408] = {.lex_state = 20}, + [1409] = {.lex_state = 17, .external_lex_state = 7}, + [1410] = {.lex_state = 20}, + [1411] = {.lex_state = 20}, + [1412] = {.lex_state = 20}, + [1413] = {.lex_state = 76}, + [1414] = {.lex_state = 76}, + [1415] = {.lex_state = 76}, + [1416] = {.lex_state = 76}, + [1417] = {.lex_state = 76}, + [1418] = {.lex_state = 76}, + [1419] = {.lex_state = 76}, + [1420] = {.lex_state = 76}, + [1421] = {.lex_state = 24}, + [1422] = {.lex_state = 76}, + [1423] = {.lex_state = 76}, + [1424] = {.lex_state = 24}, + [1425] = {.lex_state = 24}, [1426] = {.lex_state = 3, .external_lex_state = 3}, [1427] = {.lex_state = 3, .external_lex_state = 3}, [1428] = {.lex_state = 3, .external_lex_state = 3}, [1429] = {.lex_state = 3, .external_lex_state = 3}, [1430] = {.lex_state = 3, .external_lex_state = 3}, - [1431] = {.lex_state = 73}, + [1431] = {.lex_state = 76}, [1432] = {.lex_state = 3, .external_lex_state = 3}, [1433] = {.lex_state = 3, .external_lex_state = 3}, - [1434] = {.lex_state = 73}, - [1435] = {.lex_state = 73}, - [1436] = {.lex_state = 71}, - [1437] = {.lex_state = 71}, - [1438] = {.lex_state = 71}, + [1434] = {.lex_state = 76}, + [1435] = {.lex_state = 76}, + [1436] = {.lex_state = 16}, + [1437] = {.lex_state = 16}, + [1438] = {.lex_state = 16}, [1439] = {.lex_state = 3, .external_lex_state = 3}, - [1440] = {.lex_state = 10, .external_lex_state = 8}, - [1441] = {.lex_state = 73}, - [1442] = {.lex_state = 10, .external_lex_state = 8}, + [1440] = {.lex_state = 17, .external_lex_state = 8}, + [1441] = {.lex_state = 76}, + [1442] = {.lex_state = 17, .external_lex_state = 8}, [1443] = {.lex_state = 3, .external_lex_state = 3}, - [1444] = {.lex_state = 71}, - [1445] = {.lex_state = 71}, - [1446] = {.lex_state = 71}, - [1447] = {.lex_state = 73}, + [1444] = {.lex_state = 16}, + [1445] = {.lex_state = 16}, + [1446] = {.lex_state = 24}, + [1447] = {.lex_state = 76}, [1448] = {.lex_state = 3, .external_lex_state = 3}, [1449] = {.lex_state = 3, .external_lex_state = 3}, - [1450] = {.lex_state = 73}, - [1451] = {.lex_state = 73}, - [1452] = {.lex_state = 73}, - [1453] = {.lex_state = 73}, - [1454] = {.lex_state = 73}, - [1455] = {.lex_state = 73}, - [1456] = {.lex_state = 71}, - [1457] = {.lex_state = 71}, - [1458] = {.lex_state = 73}, - [1459] = {.lex_state = 73}, - [1460] = {.lex_state = 73}, - [1461] = {.lex_state = 73}, - [1462] = {.lex_state = 73}, - [1463] = {.lex_state = 73}, - [1464] = {.lex_state = 73}, - [1465] = {.lex_state = 73}, - [1466] = {.lex_state = 73}, - [1467] = {.lex_state = 73}, - [1468] = {.lex_state = 73}, - [1469] = {.lex_state = 73}, - [1470] = {.lex_state = 71}, - [1471] = {.lex_state = 73}, - [1472] = {.lex_state = 73}, - [1473] = {.lex_state = 71}, - [1474] = {.lex_state = 71}, - [1475] = {.lex_state = 73}, - [1476] = {.lex_state = 73}, - [1477] = {.lex_state = 73}, - [1478] = {.lex_state = 73}, - [1479] = {.lex_state = 71}, - [1480] = {.lex_state = 73}, - [1481] = {.lex_state = 73}, - [1482] = {.lex_state = 73}, - [1483] = {.lex_state = 73}, - [1484] = {.lex_state = 73}, - [1485] = {.lex_state = 73}, - [1486] = {.lex_state = 73}, - [1487] = {.lex_state = 73}, - [1488] = {.lex_state = 73}, - [1489] = {.lex_state = 71}, - [1490] = {.lex_state = 73}, - [1491] = {.lex_state = 71}, - [1492] = {.lex_state = 71}, - [1493] = {.lex_state = 73}, - [1494] = {.lex_state = 71}, - [1495] = {.lex_state = 73}, - [1496] = {.lex_state = 73}, - [1497] = {.lex_state = 10, .external_lex_state = 9}, - [1498] = {.lex_state = 71}, - [1499] = {.lex_state = 73}, - [1500] = {.lex_state = 73}, - [1501] = {.lex_state = 73}, - [1502] = {.lex_state = 73}, - [1503] = {.lex_state = 73}, - [1504] = {.lex_state = 73}, - [1505] = {.lex_state = 10, .external_lex_state = 9}, - [1506] = {.lex_state = 73}, - [1507] = {.lex_state = 73}, - [1508] = {.lex_state = 71}, - [1509] = {.lex_state = 71}, - [1510] = {.lex_state = 71}, - [1511] = {.lex_state = 71}, - [1512] = {.lex_state = 71}, - [1513] = {.lex_state = 71}, - [1514] = {.lex_state = 71}, - [1515] = {.lex_state = 71, .external_lex_state = 2}, - [1516] = {.lex_state = 71}, - [1517] = {.lex_state = 71}, - [1518] = {.lex_state = 71}, - [1519] = {.lex_state = 71}, - [1520] = {.lex_state = 71}, - [1521] = {.lex_state = 71}, - [1522] = {.lex_state = 71, .external_lex_state = 2}, - [1523] = {.lex_state = 10, .external_lex_state = 5}, - [1524] = {.lex_state = 10, .external_lex_state = 5}, - [1525] = {.lex_state = 10, .external_lex_state = 5}, - [1526] = {.lex_state = 10, .external_lex_state = 5}, - [1527] = {.lex_state = 10, .external_lex_state = 5}, - [1528] = {.lex_state = 71}, - [1529] = {.lex_state = 71}, - [1530] = {.lex_state = 9}, - [1531] = {.lex_state = 71}, - [1532] = {.lex_state = 71}, - [1533] = {.lex_state = 71}, - [1534] = {.lex_state = 71}, - [1535] = {.lex_state = 71}, - [1536] = {.lex_state = 10, .external_lex_state = 5}, - [1537] = {.lex_state = 10, .external_lex_state = 5}, - [1538] = {.lex_state = 10, .external_lex_state = 5}, - [1539] = {.lex_state = 73}, - [1540] = {.lex_state = 71}, - [1541] = {.lex_state = 10, .external_lex_state = 5}, - [1542] = {.lex_state = 73}, - [1543] = {.lex_state = 71}, - [1544] = {.lex_state = 71}, - [1545] = {.lex_state = 71}, - [1546] = {.lex_state = 9}, - [1547] = {.lex_state = 73}, - [1548] = {.lex_state = 71, .external_lex_state = 2}, - [1549] = {.lex_state = 10, .external_lex_state = 5}, - [1550] = {.lex_state = 71}, - [1551] = {.lex_state = 71}, - [1552] = {.lex_state = 71}, - [1553] = {.lex_state = 10, .external_lex_state = 5}, - [1554] = {.lex_state = 71}, - [1555] = {.lex_state = 71}, - [1556] = {.lex_state = 71}, - [1557] = {.lex_state = 73}, - [1558] = {.lex_state = 71}, - [1559] = {.lex_state = 71}, - [1560] = {.lex_state = 71}, - [1561] = {.lex_state = 71}, - [1562] = {.lex_state = 71, .external_lex_state = 2}, - [1563] = {.lex_state = 71}, - [1564] = {.lex_state = 71}, - [1565] = {.lex_state = 9}, - [1566] = {.lex_state = 73}, - [1567] = {.lex_state = 71}, - [1568] = {.lex_state = 71}, - [1569] = {.lex_state = 71}, - [1570] = {.lex_state = 10, .external_lex_state = 7}, - [1571] = {.lex_state = 71}, - [1572] = {.lex_state = 71}, - [1573] = {.lex_state = 71}, - [1574] = {.lex_state = 71}, - [1575] = {.lex_state = 71}, - [1576] = {.lex_state = 71}, - [1577] = {.lex_state = 71}, - [1578] = {.lex_state = 73}, - [1579] = {.lex_state = 10, .external_lex_state = 7}, - [1580] = {.lex_state = 71}, - [1581] = {.lex_state = 71}, - [1582] = {.lex_state = 71, .external_lex_state = 2}, - [1583] = {.lex_state = 71}, - [1584] = {.lex_state = 71}, - [1585] = {.lex_state = 71}, - [1586] = {.lex_state = 71}, - [1587] = {.lex_state = 71}, - [1588] = {.lex_state = 72, .external_lex_state = 10}, - [1589] = {.lex_state = 71}, - [1590] = {.lex_state = 73}, - [1591] = {.lex_state = 71}, - [1592] = {.lex_state = 71}, - [1593] = {.lex_state = 10, .external_lex_state = 7}, - [1594] = {.lex_state = 71}, - [1595] = {.lex_state = 10, .external_lex_state = 7}, - [1596] = {.lex_state = 10, .external_lex_state = 7}, - [1597] = {.lex_state = 71, .external_lex_state = 2}, - [1598] = {.lex_state = 71}, - [1599] = {.lex_state = 10, .external_lex_state = 7}, - [1600] = {.lex_state = 71}, - [1601] = {.lex_state = 73}, - [1602] = {.lex_state = 71}, - [1603] = {.lex_state = 71}, - [1604] = {.lex_state = 73}, - [1605] = {.lex_state = 71}, - [1606] = {.lex_state = 71}, - [1607] = {.lex_state = 71}, - [1608] = {.lex_state = 71}, - [1609] = {.lex_state = 10, .external_lex_state = 7}, - [1610] = {.lex_state = 71}, - [1611] = {.lex_state = 71}, - [1612] = {.lex_state = 71}, - [1613] = {.lex_state = 71, .external_lex_state = 2}, - [1614] = {.lex_state = 71}, - [1615] = {.lex_state = 71}, - [1616] = {.lex_state = 73}, - [1617] = {.lex_state = 71}, - [1618] = {.lex_state = 73}, - [1619] = {.lex_state = 71}, - [1620] = {.lex_state = 71}, - [1621] = {.lex_state = 73}, - [1622] = {.lex_state = 10, .external_lex_state = 7}, - [1623] = {.lex_state = 73}, - [1624] = {.lex_state = 71}, - [1625] = {.lex_state = 73}, - [1626] = {.lex_state = 71}, - [1627] = {.lex_state = 71}, - [1628] = {.lex_state = 71}, - [1629] = {.lex_state = 73}, - [1630] = {.lex_state = 71}, - [1631] = {.lex_state = 71}, - [1632] = {.lex_state = 71}, - [1633] = {.lex_state = 10, .external_lex_state = 7}, - [1634] = {.lex_state = 71}, - [1635] = {.lex_state = 10, .external_lex_state = 7}, - [1636] = {.lex_state = 71}, - [1637] = {.lex_state = 73}, - [1638] = {.lex_state = 71}, - [1639] = {.lex_state = 71}, - [1640] = {.lex_state = 71}, - [1641] = {.lex_state = 71}, - [1642] = {.lex_state = 73}, - [1643] = {.lex_state = 71}, - [1644] = {.lex_state = 71, .external_lex_state = 2}, - [1645] = {.lex_state = 71, .external_lex_state = 2}, - [1646] = {.lex_state = 71, .external_lex_state = 2}, - [1647] = {.lex_state = 71}, - [1648] = {.lex_state = 71}, - [1649] = {.lex_state = 71}, - [1650] = {.lex_state = 71, .external_lex_state = 2}, - [1651] = {.lex_state = 71}, - [1652] = {.lex_state = 71}, - [1653] = {.lex_state = 71}, - [1654] = {.lex_state = 71}, - [1655] = {.lex_state = 71}, - [1656] = {.lex_state = 71}, - [1657] = {.lex_state = 71}, - [1658] = {.lex_state = 71}, - [1659] = {.lex_state = 71, .external_lex_state = 2}, - [1660] = {.lex_state = 71}, - [1661] = {.lex_state = 71}, - [1662] = {.lex_state = 73}, - [1663] = {.lex_state = 71, .external_lex_state = 2}, - [1664] = {.lex_state = 73}, - [1665] = {.lex_state = 71}, - [1666] = {.lex_state = 71}, - [1667] = {.lex_state = 73}, - [1668] = {.lex_state = 72, .external_lex_state = 10}, - [1669] = {.lex_state = 73}, - [1670] = {.lex_state = 71}, - [1671] = {.lex_state = 71, .external_lex_state = 2}, - [1672] = {.lex_state = 71}, - [1673] = {.lex_state = 71}, - [1674] = {.lex_state = 71}, - [1675] = {.lex_state = 71, .external_lex_state = 2}, - [1676] = {.lex_state = 71, .external_lex_state = 2}, - [1677] = {.lex_state = 71, .external_lex_state = 2}, - [1678] = {.lex_state = 72, .external_lex_state = 10}, - [1679] = {.lex_state = 71}, - [1680] = {.lex_state = 71, .external_lex_state = 2}, - [1681] = {.lex_state = 71}, - [1682] = {.lex_state = 71, .external_lex_state = 2}, - [1683] = {.lex_state = 71}, - [1684] = {.lex_state = 71}, - [1685] = {.lex_state = 71}, - [1686] = {.lex_state = 71}, - [1687] = {.lex_state = 71}, - [1688] = {.lex_state = 71, .external_lex_state = 2}, - [1689] = {.lex_state = 71, .external_lex_state = 2}, - [1690] = {.lex_state = 71}, - [1691] = {.lex_state = 71}, - [1692] = {.lex_state = 71}, - [1693] = {.lex_state = 71}, - [1694] = {.lex_state = 71}, - [1695] = {.lex_state = 71, .external_lex_state = 2}, - [1696] = {.lex_state = 71}, - [1697] = {.lex_state = 71}, - [1698] = {.lex_state = 71, .external_lex_state = 2}, - [1699] = {.lex_state = 71}, - [1700] = {.lex_state = 72}, - [1701] = {.lex_state = 71}, - [1702] = {.lex_state = 71, .external_lex_state = 2}, - [1703] = {.lex_state = 71}, - [1704] = {.lex_state = 71}, - [1705] = {.lex_state = 71}, - [1706] = {.lex_state = 71}, - [1707] = {.lex_state = 71}, - [1708] = {.lex_state = 71, .external_lex_state = 2}, - [1709] = {.lex_state = 71, .external_lex_state = 2}, - [1710] = {.lex_state = 71, .external_lex_state = 2}, - [1711] = {.lex_state = 71}, - [1712] = {.lex_state = 71, .external_lex_state = 2}, - [1713] = {.lex_state = 71, .external_lex_state = 2}, - [1714] = {.lex_state = 71, .external_lex_state = 2}, - [1715] = {.lex_state = 71}, - [1716] = {.lex_state = 71, .external_lex_state = 2}, - [1717] = {.lex_state = 71}, - [1718] = {.lex_state = 71, .external_lex_state = 2}, - [1719] = {.lex_state = 71, .external_lex_state = 2}, - [1720] = {.lex_state = 71}, - [1721] = {.lex_state = 71, .external_lex_state = 2}, - [1722] = {.lex_state = 71}, - [1723] = {.lex_state = 71}, - [1724] = {.lex_state = 73}, - [1725] = {.lex_state = 71, .external_lex_state = 2}, - [1726] = {.lex_state = 71}, - [1727] = {.lex_state = 71, .external_lex_state = 2}, - [1728] = {.lex_state = 71, .external_lex_state = 2}, - [1729] = {.lex_state = 71, .external_lex_state = 2}, - [1730] = {.lex_state = 71, .external_lex_state = 2}, - [1731] = {.lex_state = 71}, - [1732] = {.lex_state = 71, .external_lex_state = 2}, - [1733] = {.lex_state = 71, .external_lex_state = 2}, - [1734] = {.lex_state = 71, .external_lex_state = 2}, - [1735] = {.lex_state = 73}, - [1736] = {.lex_state = 71, .external_lex_state = 2}, - [1737] = {.lex_state = 71}, - [1738] = {.lex_state = 71}, - [1739] = {.lex_state = 71}, - [1740] = {.lex_state = 73}, - [1741] = {.lex_state = 72}, - [1742] = {.lex_state = 71, .external_lex_state = 2}, - [1743] = {.lex_state = 71, .external_lex_state = 2}, - [1744] = {.lex_state = 71, .external_lex_state = 2}, - [1745] = {.lex_state = 71}, - [1746] = {.lex_state = 71, .external_lex_state = 2}, - [1747] = {.lex_state = 71}, - [1748] = {.lex_state = 71}, - [1749] = {.lex_state = 71}, - [1750] = {.lex_state = 71}, - [1751] = {.lex_state = 71}, - [1752] = {.lex_state = 71}, - [1753] = {.lex_state = 73}, - [1754] = {.lex_state = 71}, - [1755] = {.lex_state = 73}, - [1756] = {.lex_state = 71, .external_lex_state = 2}, - [1757] = {.lex_state = 71, .external_lex_state = 2}, - [1758] = {.lex_state = 71}, - [1759] = {.lex_state = 71}, - [1760] = {.lex_state = 71}, - [1761] = {.lex_state = 71, .external_lex_state = 2}, - [1762] = {.lex_state = 73}, - [1763] = {.lex_state = 71}, - [1764] = {.lex_state = 71}, - [1765] = {.lex_state = 71}, - [1766] = {.lex_state = 71, .external_lex_state = 2}, - [1767] = {.lex_state = 71}, - [1768] = {.lex_state = 71, .external_lex_state = 2}, - [1769] = {.lex_state = 71, .external_lex_state = 2}, - [1770] = {.lex_state = 71, .external_lex_state = 2}, - [1771] = {.lex_state = 71, .external_lex_state = 2}, - [1772] = {.lex_state = 71, .external_lex_state = 2}, - [1773] = {.lex_state = 71, .external_lex_state = 2}, - [1774] = {.lex_state = 71}, - [1775] = {.lex_state = 71}, - [1776] = {.lex_state = 71}, - [1777] = {.lex_state = 71, .external_lex_state = 2}, - [1778] = {.lex_state = 71, .external_lex_state = 2}, - [1779] = {.lex_state = 71}, - [1780] = {.lex_state = 71}, - [1781] = {.lex_state = 71}, - [1782] = {.lex_state = 71}, - [1783] = {.lex_state = 71}, - [1784] = {.lex_state = 71, .external_lex_state = 2}, - [1785] = {.lex_state = 71, .external_lex_state = 2}, - [1786] = {.lex_state = 71}, - [1787] = {.lex_state = 71, .external_lex_state = 2}, - [1788] = {.lex_state = 71, .external_lex_state = 2}, - [1789] = {.lex_state = 71, .external_lex_state = 2}, - [1790] = {.lex_state = 71}, - [1791] = {.lex_state = 71}, - [1792] = {.lex_state = 71}, - [1793] = {.lex_state = 71}, - [1794] = {.lex_state = 71, .external_lex_state = 2}, - [1795] = {.lex_state = 71}, - [1796] = {.lex_state = 71}, - [1797] = {.lex_state = 71, .external_lex_state = 2}, - [1798] = {.lex_state = 73}, - [1799] = {.lex_state = 72, .external_lex_state = 10}, - [1800] = {.lex_state = 71}, - [1801] = {.lex_state = 71, .external_lex_state = 2}, - [1802] = {.lex_state = 71}, - [1803] = {.lex_state = 71}, - [1804] = {.lex_state = 73}, - [1805] = {.lex_state = 71}, - [1806] = {.lex_state = 71}, - [1807] = {.lex_state = 71}, - [1808] = {.lex_state = 71, .external_lex_state = 2}, - [1809] = {.lex_state = 71}, - [1810] = {.lex_state = 71}, - [1811] = {.lex_state = 71, .external_lex_state = 2}, - [1812] = {.lex_state = 71}, - [1813] = {.lex_state = 71}, - [1814] = {.lex_state = 71}, - [1815] = {.lex_state = 71, .external_lex_state = 2}, - [1816] = {.lex_state = 71}, - [1817] = {.lex_state = 71}, - [1818] = {.lex_state = 71, .external_lex_state = 2}, - [1819] = {.lex_state = 71}, - [1820] = {.lex_state = 71}, - [1821] = {.lex_state = 71}, - [1822] = {.lex_state = 71}, - [1823] = {.lex_state = 71}, - [1824] = {.lex_state = 71, .external_lex_state = 2}, - [1825] = {.lex_state = 71, .external_lex_state = 2}, - [1826] = {.lex_state = 71, .external_lex_state = 2}, - [1827] = {.lex_state = 71, .external_lex_state = 2}, - [1828] = {.lex_state = 71}, - [1829] = {.lex_state = 71}, - [1830] = {.lex_state = 71, .external_lex_state = 2}, - [1831] = {.lex_state = 71, .external_lex_state = 2}, - [1832] = {.lex_state = 71}, - [1833] = {.lex_state = 71}, - [1834] = {.lex_state = 71}, - [1835] = {.lex_state = 71, .external_lex_state = 2}, - [1836] = {.lex_state = 71}, - [1837] = {.lex_state = 71}, - [1838] = {.lex_state = 71, .external_lex_state = 2}, - [1839] = {.lex_state = 71}, - [1840] = {.lex_state = 71}, - [1841] = {.lex_state = 71}, - [1842] = {.lex_state = 71, .external_lex_state = 2}, - [1843] = {.lex_state = 71, .external_lex_state = 2}, - [1844] = {.lex_state = 71, .external_lex_state = 2}, + [1450] = {.lex_state = 76}, + [1451] = {.lex_state = 76}, + [1452] = {.lex_state = 76}, + [1453] = {.lex_state = 76}, + [1454] = {.lex_state = 76}, + [1455] = {.lex_state = 76}, + [1456] = {.lex_state = 16}, + [1457] = {.lex_state = 16}, + [1458] = {.lex_state = 76}, + [1459] = {.lex_state = 76}, + [1460] = {.lex_state = 76}, + [1461] = {.lex_state = 76}, + [1462] = {.lex_state = 76}, + [1463] = {.lex_state = 76}, + [1464] = {.lex_state = 76}, + [1465] = {.lex_state = 76}, + [1466] = {.lex_state = 76}, + [1467] = {.lex_state = 76}, + [1468] = {.lex_state = 76}, + [1469] = {.lex_state = 76}, + [1470] = {.lex_state = 16}, + [1471] = {.lex_state = 76}, + [1472] = {.lex_state = 76}, + [1473] = {.lex_state = 16}, + [1474] = {.lex_state = 16}, + [1475] = {.lex_state = 76}, + [1476] = {.lex_state = 76}, + [1477] = {.lex_state = 76}, + [1478] = {.lex_state = 76}, + [1479] = {.lex_state = 16}, + [1480] = {.lex_state = 76}, + [1481] = {.lex_state = 76}, + [1482] = {.lex_state = 76}, + [1483] = {.lex_state = 76}, + [1484] = {.lex_state = 76}, + [1485] = {.lex_state = 76}, + [1486] = {.lex_state = 76}, + [1487] = {.lex_state = 76}, + [1488] = {.lex_state = 76}, + [1489] = {.lex_state = 16}, + [1490] = {.lex_state = 76}, + [1491] = {.lex_state = 16}, + [1492] = {.lex_state = 16}, + [1493] = {.lex_state = 76}, + [1494] = {.lex_state = 16}, + [1495] = {.lex_state = 76}, + [1496] = {.lex_state = 76}, + [1497] = {.lex_state = 17, .external_lex_state = 9}, + [1498] = {.lex_state = 16}, + [1499] = {.lex_state = 76}, + [1500] = {.lex_state = 76}, + [1501] = {.lex_state = 76}, + [1502] = {.lex_state = 76}, + [1503] = {.lex_state = 76}, + [1504] = {.lex_state = 76}, + [1505] = {.lex_state = 17, .external_lex_state = 9}, + [1506] = {.lex_state = 76}, + [1507] = {.lex_state = 76}, + [1508] = {.lex_state = 16}, + [1509] = {.lex_state = 13}, + [1510] = {.lex_state = 13}, + [1511] = {.lex_state = 16}, + [1512] = {.lex_state = 13}, + [1513] = {.lex_state = 13}, + [1514] = {.lex_state = 13}, + [1515] = {.lex_state = 76, .external_lex_state = 2}, + [1516] = {.lex_state = 24}, + [1517] = {.lex_state = 13}, + [1518] = {.lex_state = 13}, + [1519] = {.lex_state = 13}, + [1520] = {.lex_state = 16}, + [1521] = {.lex_state = 16}, + [1522] = {.lex_state = 76, .external_lex_state = 2}, + [1523] = {.lex_state = 17, .external_lex_state = 5}, + [1524] = {.lex_state = 17, .external_lex_state = 5}, + [1525] = {.lex_state = 17, .external_lex_state = 5}, + [1526] = {.lex_state = 17, .external_lex_state = 5}, + [1527] = {.lex_state = 17, .external_lex_state = 5}, + [1528] = {.lex_state = 13}, + [1529] = {.lex_state = 16}, + [1530] = {.lex_state = 13}, + [1531] = {.lex_state = 16}, + [1532] = {.lex_state = 16}, + [1533] = {.lex_state = 16}, + [1534] = {.lex_state = 16}, + [1535] = {.lex_state = 76}, + [1536] = {.lex_state = 17, .external_lex_state = 5}, + [1537] = {.lex_state = 17, .external_lex_state = 5}, + [1538] = {.lex_state = 17, .external_lex_state = 5}, + [1539] = {.lex_state = 76}, + [1540] = {.lex_state = 16}, + [1541] = {.lex_state = 17, .external_lex_state = 5}, + [1542] = {.lex_state = 76}, + [1543] = {.lex_state = 16}, + [1544] = {.lex_state = 13}, + [1545] = {.lex_state = 16}, + [1546] = {.lex_state = 13}, + [1547] = {.lex_state = 76}, + [1548] = {.lex_state = 76, .external_lex_state = 2}, + [1549] = {.lex_state = 17, .external_lex_state = 5}, + [1550] = {.lex_state = 16}, + [1551] = {.lex_state = 16}, + [1552] = {.lex_state = 16}, + [1553] = {.lex_state = 17, .external_lex_state = 5}, + [1554] = {.lex_state = 16}, + [1555] = {.lex_state = 16}, + [1556] = {.lex_state = 16}, + [1557] = {.lex_state = 76}, + [1558] = {.lex_state = 16}, + [1559] = {.lex_state = 16}, + [1560] = {.lex_state = 16}, + [1561] = {.lex_state = 16}, + [1562] = {.lex_state = 13, .external_lex_state = 2}, + [1563] = {.lex_state = 16}, + [1564] = {.lex_state = 24}, + [1565] = {.lex_state = 13}, + [1566] = {.lex_state = 76}, + [1567] = {.lex_state = 13}, + [1568] = {.lex_state = 13}, + [1569] = {.lex_state = 13}, + [1570] = {.lex_state = 17, .external_lex_state = 7}, + [1571] = {.lex_state = 13}, + [1572] = {.lex_state = 13}, + [1573] = {.lex_state = 13}, + [1574] = {.lex_state = 13}, + [1575] = {.lex_state = 13}, + [1576] = {.lex_state = 13}, + [1577] = {.lex_state = 13}, + [1578] = {.lex_state = 76}, + [1579] = {.lex_state = 17, .external_lex_state = 7}, + [1580] = {.lex_state = 13}, + [1581] = {.lex_state = 13}, + [1582] = {.lex_state = 76, .external_lex_state = 2}, + [1583] = {.lex_state = 13}, + [1584] = {.lex_state = 13}, + [1585] = {.lex_state = 76}, + [1586] = {.lex_state = 13}, + [1587] = {.lex_state = 13}, + [1588] = {.lex_state = 77, .external_lex_state = 10}, + [1589] = {.lex_state = 13}, + [1590] = {.lex_state = 76}, + [1591] = {.lex_state = 13}, + [1592] = {.lex_state = 13}, + [1593] = {.lex_state = 17, .external_lex_state = 7}, + [1594] = {.lex_state = 13}, + [1595] = {.lex_state = 17, .external_lex_state = 7}, + [1596] = {.lex_state = 17, .external_lex_state = 7}, + [1597] = {.lex_state = 76, .external_lex_state = 2}, + [1598] = {.lex_state = 13}, + [1599] = {.lex_state = 17, .external_lex_state = 7}, + [1600] = {.lex_state = 13}, + [1601] = {.lex_state = 76}, + [1602] = {.lex_state = 13}, + [1603] = {.lex_state = 13}, + [1604] = {.lex_state = 76}, + [1605] = {.lex_state = 13}, + [1606] = {.lex_state = 13}, + [1607] = {.lex_state = 13}, + [1608] = {.lex_state = 13}, + [1609] = {.lex_state = 17, .external_lex_state = 7}, + [1610] = {.lex_state = 13}, + [1611] = {.lex_state = 13}, + [1612] = {.lex_state = 13}, + [1613] = {.lex_state = 76, .external_lex_state = 2}, + [1614] = {.lex_state = 13}, + [1615] = {.lex_state = 13}, + [1616] = {.lex_state = 76}, + [1617] = {.lex_state = 13}, + [1618] = {.lex_state = 76}, + [1619] = {.lex_state = 13}, + [1620] = {.lex_state = 13}, + [1621] = {.lex_state = 76}, + [1622] = {.lex_state = 17, .external_lex_state = 7}, + [1623] = {.lex_state = 76}, + [1624] = {.lex_state = 13}, + [1625] = {.lex_state = 76}, + [1626] = {.lex_state = 13}, + [1627] = {.lex_state = 13}, + [1628] = {.lex_state = 13}, + [1629] = {.lex_state = 76}, + [1630] = {.lex_state = 13}, + [1631] = {.lex_state = 13}, + [1632] = {.lex_state = 13}, + [1633] = {.lex_state = 17, .external_lex_state = 7}, + [1634] = {.lex_state = 13}, + [1635] = {.lex_state = 17, .external_lex_state = 7}, + [1636] = {.lex_state = 13}, + [1637] = {.lex_state = 76}, + [1638] = {.lex_state = 13}, + [1639] = {.lex_state = 13}, + [1640] = {.lex_state = 13}, + [1641] = {.lex_state = 13}, + [1642] = {.lex_state = 76}, + [1643] = {.lex_state = 16}, + [1644] = {.lex_state = 13, .external_lex_state = 2}, + [1645] = {.lex_state = 13, .external_lex_state = 2}, + [1646] = {.lex_state = 13, .external_lex_state = 2}, + [1647] = {.lex_state = 13}, + [1648] = {.lex_state = 13}, + [1649] = {.lex_state = 13}, + [1650] = {.lex_state = 13, .external_lex_state = 2}, + [1651] = {.lex_state = 13}, + [1652] = {.lex_state = 16}, + [1653] = {.lex_state = 13}, + [1654] = {.lex_state = 13}, + [1655] = {.lex_state = 13}, + [1656] = {.lex_state = 13}, + [1657] = {.lex_state = 13}, + [1658] = {.lex_state = 13}, + [1659] = {.lex_state = 76, .external_lex_state = 2}, + [1660] = {.lex_state = 13}, + [1661] = {.lex_state = 16}, + [1662] = {.lex_state = 76}, + [1663] = {.lex_state = 76, .external_lex_state = 2}, + [1664] = {.lex_state = 76}, + [1665] = {.lex_state = 13}, + [1666] = {.lex_state = 13}, + [1667] = {.lex_state = 76}, + [1668] = {.lex_state = 77, .external_lex_state = 10}, + [1669] = {.lex_state = 76}, + [1670] = {.lex_state = 13}, + [1671] = {.lex_state = 13, .external_lex_state = 2}, + [1672] = {.lex_state = 16}, + [1673] = {.lex_state = 13}, + [1674] = {.lex_state = 13}, + [1675] = {.lex_state = 13, .external_lex_state = 2}, + [1676] = {.lex_state = 13, .external_lex_state = 2}, + [1677] = {.lex_state = 76, .external_lex_state = 2}, + [1678] = {.lex_state = 77, .external_lex_state = 10}, + [1679] = {.lex_state = 16}, + [1680] = {.lex_state = 76, .external_lex_state = 2}, + [1681] = {.lex_state = 13}, + [1682] = {.lex_state = 76, .external_lex_state = 2}, + [1683] = {.lex_state = 76}, + [1684] = {.lex_state = 76}, + [1685] = {.lex_state = 16}, + [1686] = {.lex_state = 13}, + [1687] = {.lex_state = 13}, + [1688] = {.lex_state = 76, .external_lex_state = 2}, + [1689] = {.lex_state = 76, .external_lex_state = 2}, + [1690] = {.lex_state = 13}, + [1691] = {.lex_state = 16}, + [1692] = {.lex_state = 16}, + [1693] = {.lex_state = 76}, + [1694] = {.lex_state = 76}, + [1695] = {.lex_state = 13, .external_lex_state = 2}, + [1696] = {.lex_state = 16}, + [1697] = {.lex_state = 13}, + [1698] = {.lex_state = 76, .external_lex_state = 2}, + [1699] = {.lex_state = 13}, + [1700] = {.lex_state = 77}, + [1701] = {.lex_state = 16}, + [1702] = {.lex_state = 76, .external_lex_state = 2}, + [1703] = {.lex_state = 76}, + [1704] = {.lex_state = 13}, + [1705] = {.lex_state = 16}, + [1706] = {.lex_state = 76}, + [1707] = {.lex_state = 13}, + [1708] = {.lex_state = 76, .external_lex_state = 2}, + [1709] = {.lex_state = 76, .external_lex_state = 2}, + [1710] = {.lex_state = 13, .external_lex_state = 2}, + [1711] = {.lex_state = 13}, + [1712] = {.lex_state = 13, .external_lex_state = 2}, + [1713] = {.lex_state = 13, .external_lex_state = 2}, + [1714] = {.lex_state = 13, .external_lex_state = 2}, + [1715] = {.lex_state = 13}, + [1716] = {.lex_state = 13, .external_lex_state = 2}, + [1717] = {.lex_state = 13}, + [1718] = {.lex_state = 13, .external_lex_state = 2}, + [1719] = {.lex_state = 13, .external_lex_state = 2}, + [1720] = {.lex_state = 13}, + [1721] = {.lex_state = 13, .external_lex_state = 2}, + [1722] = {.lex_state = 76}, + [1723] = {.lex_state = 13}, + [1724] = {.lex_state = 76}, + [1725] = {.lex_state = 76, .external_lex_state = 2}, + [1726] = {.lex_state = 13}, + [1727] = {.lex_state = 13, .external_lex_state = 2}, + [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 = 16}, + [1732] = {.lex_state = 76, .external_lex_state = 2}, + [1733] = {.lex_state = 76, .external_lex_state = 2}, + [1734] = {.lex_state = 13, .external_lex_state = 2}, + [1735] = {.lex_state = 76}, + [1736] = {.lex_state = 13, .external_lex_state = 2}, + [1737] = {.lex_state = 13}, + [1738] = {.lex_state = 13}, + [1739] = {.lex_state = 13}, + [1740] = {.lex_state = 76}, + [1741] = {.lex_state = 77}, + [1742] = {.lex_state = 76, .external_lex_state = 2}, + [1743] = {.lex_state = 76, .external_lex_state = 2}, + [1744] = {.lex_state = 76, .external_lex_state = 2}, + [1745] = {.lex_state = 13}, + [1746] = {.lex_state = 76, .external_lex_state = 2}, + [1747] = {.lex_state = 76}, + [1748] = {.lex_state = 13}, + [1749] = {.lex_state = 76}, + [1750] = {.lex_state = 13}, + [1751] = {.lex_state = 13}, + [1752] = {.lex_state = 13}, + [1753] = {.lex_state = 76}, + [1754] = {.lex_state = 76}, + [1755] = {.lex_state = 76}, + [1756] = {.lex_state = 76, .external_lex_state = 2}, + [1757] = {.lex_state = 76, .external_lex_state = 2}, + [1758] = {.lex_state = 13}, + [1759] = {.lex_state = 13}, + [1760] = {.lex_state = 76}, + [1761] = {.lex_state = 76, .external_lex_state = 2}, + [1762] = {.lex_state = 76}, + [1763] = {.lex_state = 13}, + [1764] = {.lex_state = 76}, + [1765] = {.lex_state = 13}, + [1766] = {.lex_state = 76, .external_lex_state = 2}, + [1767] = {.lex_state = 13}, + [1768] = {.lex_state = 76, .external_lex_state = 2}, + [1769] = {.lex_state = 76, .external_lex_state = 2}, + [1770] = {.lex_state = 76, .external_lex_state = 2}, + [1771] = {.lex_state = 76, .external_lex_state = 2}, + [1772] = {.lex_state = 76, .external_lex_state = 2}, + [1773] = {.lex_state = 76, .external_lex_state = 2}, + [1774] = {.lex_state = 76}, + [1775] = {.lex_state = 13}, + [1776] = {.lex_state = 13}, + [1777] = {.lex_state = 76, .external_lex_state = 2}, + [1778] = {.lex_state = 76, .external_lex_state = 2}, + [1779] = {.lex_state = 76}, + [1780] = {.lex_state = 13}, + [1781] = {.lex_state = 13}, + [1782] = {.lex_state = 13}, + [1783] = {.lex_state = 76}, + [1784] = {.lex_state = 76, .external_lex_state = 2}, + [1785] = {.lex_state = 76, .external_lex_state = 2}, + [1786] = {.lex_state = 76}, + [1787] = {.lex_state = 76, .external_lex_state = 2}, + [1788] = {.lex_state = 76, .external_lex_state = 2}, + [1789] = {.lex_state = 76, .external_lex_state = 2}, + [1790] = {.lex_state = 76}, + [1791] = {.lex_state = 13}, + [1792] = {.lex_state = 76}, + [1793] = {.lex_state = 76}, + [1794] = {.lex_state = 76, .external_lex_state = 2}, + [1795] = {.lex_state = 76}, + [1796] = {.lex_state = 13}, + [1797] = {.lex_state = 76, .external_lex_state = 2}, + [1798] = {.lex_state = 76}, + [1799] = {.lex_state = 77, .external_lex_state = 10}, + [1800] = {.lex_state = 13}, + [1801] = {.lex_state = 76, .external_lex_state = 2}, + [1802] = {.lex_state = 13}, + [1803] = {.lex_state = 76}, + [1804] = {.lex_state = 76}, + [1805] = {.lex_state = 76}, + [1806] = {.lex_state = 76}, + [1807] = {.lex_state = 76}, + [1808] = {.lex_state = 76, .external_lex_state = 2}, + [1809] = {.lex_state = 76}, + [1810] = {.lex_state = 13}, + [1811] = {.lex_state = 76, .external_lex_state = 2}, + [1812] = {.lex_state = 13}, + [1813] = {.lex_state = 13}, + [1814] = {.lex_state = 76}, + [1815] = {.lex_state = 76, .external_lex_state = 2}, + [1816] = {.lex_state = 76}, + [1817] = {.lex_state = 76}, + [1818] = {.lex_state = 76, .external_lex_state = 2}, + [1819] = {.lex_state = 13}, + [1820] = {.lex_state = 76}, + [1821] = {.lex_state = 13}, + [1822] = {.lex_state = 13}, + [1823] = {.lex_state = 76}, + [1824] = {.lex_state = 76, .external_lex_state = 2}, + [1825] = {.lex_state = 76, .external_lex_state = 2}, + [1826] = {.lex_state = 76, .external_lex_state = 2}, + [1827] = {.lex_state = 76, .external_lex_state = 2}, + [1828] = {.lex_state = 13}, + [1829] = {.lex_state = 13}, + [1830] = {.lex_state = 76, .external_lex_state = 2}, + [1831] = {.lex_state = 76, .external_lex_state = 2}, + [1832] = {.lex_state = 13}, + [1833] = {.lex_state = 76}, + [1834] = {.lex_state = 13}, + [1835] = {.lex_state = 76, .external_lex_state = 2}, + [1836] = {.lex_state = 13}, + [1837] = {.lex_state = 76}, + [1838] = {.lex_state = 76, .external_lex_state = 2}, + [1839] = {.lex_state = 76}, + [1840] = {.lex_state = 13}, + [1841] = {.lex_state = 13}, + [1842] = {.lex_state = 76, .external_lex_state = 2}, + [1843] = {.lex_state = 76, .external_lex_state = 2}, + [1844] = {.lex_state = 76, .external_lex_state = 2}, [1845] = {.lex_state = 5, .external_lex_state = 11}, - [1846] = {.lex_state = 71}, - [1847] = {.lex_state = 71}, - [1848] = {.lex_state = 71}, - [1849] = {.lex_state = 71}, - [1850] = {.lex_state = 71}, - [1851] = {.lex_state = 71, .external_lex_state = 2}, + [1846] = {.lex_state = 76}, + [1847] = {.lex_state = 13}, + [1848] = {.lex_state = 76}, + [1849] = {.lex_state = 76}, + [1850] = {.lex_state = 13}, + [1851] = {.lex_state = 76, .external_lex_state = 2}, [1852] = {.lex_state = 16}, - [1853] = {.lex_state = 71, .external_lex_state = 2}, - [1854] = {.lex_state = 71, .external_lex_state = 2}, - [1855] = {.lex_state = 71, .external_lex_state = 2}, - [1856] = {.lex_state = 71, .external_lex_state = 2}, - [1857] = {.lex_state = 71}, - [1858] = {.lex_state = 71, .external_lex_state = 2}, - [1859] = {.lex_state = 71}, - [1860] = {.lex_state = 71, .external_lex_state = 2}, - [1861] = {.lex_state = 71, .external_lex_state = 2}, - [1862] = {.lex_state = 71, .external_lex_state = 2}, - [1863] = {.lex_state = 71, .external_lex_state = 2}, - [1864] = {.lex_state = 71}, - [1865] = {.lex_state = 71}, - [1866] = {.lex_state = 71}, - [1867] = {.lex_state = 71}, + [1853] = {.lex_state = 76, .external_lex_state = 2}, + [1854] = {.lex_state = 76, .external_lex_state = 2}, + [1855] = {.lex_state = 76, .external_lex_state = 2}, + [1856] = {.lex_state = 76, .external_lex_state = 2}, + [1857] = {.lex_state = 13}, + [1858] = {.lex_state = 76, .external_lex_state = 2}, + [1859] = {.lex_state = 13}, + [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}, + [1864] = {.lex_state = 76}, + [1865] = {.lex_state = 76}, + [1866] = {.lex_state = 13}, + [1867] = {.lex_state = 13}, [1868] = {.lex_state = 16}, - [1869] = {.lex_state = 71}, - [1870] = {.lex_state = 71}, - [1871] = {.lex_state = 71}, - [1872] = {.lex_state = 71}, - [1873] = {.lex_state = 71, .external_lex_state = 2}, - [1874] = {.lex_state = 71, .external_lex_state = 2}, - [1875] = {.lex_state = 71, .external_lex_state = 2}, - [1876] = {.lex_state = 71, .external_lex_state = 2}, - [1877] = {.lex_state = 71}, - [1878] = {.lex_state = 71, .external_lex_state = 2}, - [1879] = {.lex_state = 72}, - [1880] = {.lex_state = 71}, - [1881] = {.lex_state = 71}, - [1882] = {.lex_state = 71}, + [1869] = {.lex_state = 76}, + [1870] = {.lex_state = 76}, + [1871] = {.lex_state = 76}, + [1872] = {.lex_state = 13}, + [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}, + [1878] = {.lex_state = 76, .external_lex_state = 2}, + [1879] = {.lex_state = 77}, + [1880] = {.lex_state = 13}, + [1881] = {.lex_state = 76}, + [1882] = {.lex_state = 13}, [1883] = {.lex_state = 5, .external_lex_state = 11}, - [1884] = {.lex_state = 71}, - [1885] = {.lex_state = 71}, - [1886] = {.lex_state = 71}, - [1887] = {.lex_state = 71}, - [1888] = {.lex_state = 71, .external_lex_state = 12}, - [1889] = {.lex_state = 71}, - [1890] = {.lex_state = 71}, - [1891] = {.lex_state = 71}, - [1892] = {.lex_state = 71}, - [1893] = {.lex_state = 71}, - [1894] = {.lex_state = 71}, - [1895] = {.lex_state = 71}, - [1896] = {.lex_state = 71}, - [1897] = {.lex_state = 71}, - [1898] = {.lex_state = 71}, - [1899] = {.lex_state = 71}, - [1900] = {.lex_state = 71}, - [1901] = {.lex_state = 71}, - [1902] = {.lex_state = 71}, + [1884] = {.lex_state = 76}, + [1885] = {.lex_state = 76}, + [1886] = {.lex_state = 76}, + [1887] = {.lex_state = 76}, + [1888] = {.lex_state = 76, .external_lex_state = 12}, + [1889] = {.lex_state = 13}, + [1890] = {.lex_state = 13}, + [1891] = {.lex_state = 76}, + [1892] = {.lex_state = 76}, + [1893] = {.lex_state = 76}, + [1894] = {.lex_state = 76}, + [1895] = {.lex_state = 76}, + [1896] = {.lex_state = 76}, + [1897] = {.lex_state = 76}, + [1898] = {.lex_state = 76}, + [1899] = {.lex_state = 13}, + [1900] = {.lex_state = 76}, + [1901] = {.lex_state = 76}, + [1902] = {.lex_state = 13}, [1903] = {.lex_state = 5, .external_lex_state = 13}, [1904] = {.lex_state = 5, .external_lex_state = 13}, - [1905] = {.lex_state = 71}, - [1906] = {.lex_state = 71}, - [1907] = {.lex_state = 71}, - [1908] = {.lex_state = 71}, - [1909] = {.lex_state = 71}, - [1910] = {.lex_state = 71}, - [1911] = {.lex_state = 71}, - [1912] = {.lex_state = 71}, - [1913] = {.lex_state = 71}, - [1914] = {.lex_state = 71, .external_lex_state = 2}, - [1915] = {.lex_state = 71}, - [1916] = {.lex_state = 73}, - [1917] = {.lex_state = 71}, - [1918] = {.lex_state = 71}, - [1919] = {.lex_state = 71}, - [1920] = {.lex_state = 71}, - [1921] = {.lex_state = 71}, - [1922] = {.lex_state = 71}, - [1923] = {.lex_state = 71}, - [1924] = {.lex_state = 71}, - [1925] = {.lex_state = 71}, - [1926] = {.lex_state = 71}, - [1927] = {.lex_state = 71}, - [1928] = {.lex_state = 71}, - [1929] = {.lex_state = 71}, - [1930] = {.lex_state = 71}, - [1931] = {.lex_state = 71}, - [1932] = {.lex_state = 71}, - [1933] = {.lex_state = 71, .external_lex_state = 2}, - [1934] = {.lex_state = 71}, - [1935] = {.lex_state = 71}, - [1936] = {.lex_state = 71}, - [1937] = {.lex_state = 71, .external_lex_state = 2}, - [1938] = {.lex_state = 71}, - [1939] = {.lex_state = 71}, - [1940] = {.lex_state = 71}, - [1941] = {.lex_state = 71}, - [1942] = {.lex_state = 71, .external_lex_state = 2}, - [1943] = {.lex_state = 71, .external_lex_state = 2}, - [1944] = {.lex_state = 71}, - [1945] = {.lex_state = 71}, - [1946] = {.lex_state = 71}, - [1947] = {.lex_state = 71}, - [1948] = {.lex_state = 71}, - [1949] = {.lex_state = 73}, - [1950] = {.lex_state = 71}, - [1951] = {.lex_state = 71}, - [1952] = {.lex_state = 71}, - [1953] = {.lex_state = 71}, - [1954] = {.lex_state = 73}, - [1955] = {.lex_state = 71}, - [1956] = {.lex_state = 71}, - [1957] = {.lex_state = 71}, - [1958] = {.lex_state = 71}, - [1959] = {.lex_state = 71}, + [1905] = {.lex_state = 76}, + [1906] = {.lex_state = 76}, + [1907] = {.lex_state = 76}, + [1908] = {.lex_state = 76}, + [1909] = {.lex_state = 13}, + [1910] = {.lex_state = 76}, + [1911] = {.lex_state = 76}, + [1912] = {.lex_state = 76}, + [1913] = {.lex_state = 76}, + [1914] = {.lex_state = 76, .external_lex_state = 2}, + [1915] = {.lex_state = 13}, + [1916] = {.lex_state = 76}, + [1917] = {.lex_state = 76}, + [1918] = {.lex_state = 76}, + [1919] = {.lex_state = 76}, + [1920] = {.lex_state = 76}, + [1921] = {.lex_state = 76}, + [1922] = {.lex_state = 76}, + [1923] = {.lex_state = 76}, + [1924] = {.lex_state = 76}, + [1925] = {.lex_state = 76}, + [1926] = {.lex_state = 76}, + [1927] = {.lex_state = 76}, + [1928] = {.lex_state = 76}, + [1929] = {.lex_state = 76}, + [1930] = {.lex_state = 76}, + [1931] = {.lex_state = 76}, + [1932] = {.lex_state = 76}, + [1933] = {.lex_state = 76, .external_lex_state = 2}, + [1934] = {.lex_state = 13}, + [1935] = {.lex_state = 13}, + [1936] = {.lex_state = 13}, + [1937] = {.lex_state = 76, .external_lex_state = 2}, + [1938] = {.lex_state = 13}, + [1939] = {.lex_state = 76}, + [1940] = {.lex_state = 13}, + [1941] = {.lex_state = 13}, + [1942] = {.lex_state = 76, .external_lex_state = 2}, + [1943] = {.lex_state = 76, .external_lex_state = 2}, + [1944] = {.lex_state = 76}, + [1945] = {.lex_state = 76}, + [1946] = {.lex_state = 76}, + [1947] = {.lex_state = 76}, + [1948] = {.lex_state = 13}, + [1949] = {.lex_state = 76}, + [1950] = {.lex_state = 13}, + [1951] = {.lex_state = 76}, + [1952] = {.lex_state = 13}, + [1953] = {.lex_state = 13}, + [1954] = {.lex_state = 76}, + [1955] = {.lex_state = 13}, + [1956] = {.lex_state = 13}, + [1957] = {.lex_state = 13}, + [1958] = {.lex_state = 76}, + [1959] = {.lex_state = 76}, [1960] = {.lex_state = 5, .external_lex_state = 13}, [1961] = {.lex_state = 5, .external_lex_state = 13}, - [1962] = {.lex_state = 71}, - [1963] = {.lex_state = 71}, - [1964] = {.lex_state = 71}, - [1965] = {.lex_state = 71, .external_lex_state = 2}, - [1966] = {.lex_state = 71}, - [1967] = {.lex_state = 71}, - [1968] = {.lex_state = 71}, - [1969] = {.lex_state = 71}, - [1970] = {.lex_state = 71}, - [1971] = {.lex_state = 71}, - [1972] = {.lex_state = 71}, - [1973] = {.lex_state = 71}, - [1974] = {.lex_state = 71}, - [1975] = {.lex_state = 71}, - [1976] = {.lex_state = 71}, - [1977] = {.lex_state = 71}, - [1978] = {.lex_state = 71}, - [1979] = {.lex_state = 71}, - [1980] = {.lex_state = 71}, - [1981] = {.lex_state = 71}, - [1982] = {.lex_state = 71}, - [1983] = {.lex_state = 71}, - [1984] = {.lex_state = 71}, - [1985] = {.lex_state = 71}, - [1986] = {.lex_state = 71}, - [1987] = {.lex_state = 71}, - [1988] = {.lex_state = 71}, - [1989] = {.lex_state = 71}, - [1990] = {.lex_state = 71}, - [1991] = {.lex_state = 71}, - [1992] = {.lex_state = 71}, - [1993] = {.lex_state = 71}, - [1994] = {.lex_state = 71}, - [1995] = {.lex_state = 71}, - [1996] = {.lex_state = 71}, + [1962] = {.lex_state = 13}, + [1963] = {.lex_state = 76}, + [1964] = {.lex_state = 13}, + [1965] = {.lex_state = 76, .external_lex_state = 2}, + [1966] = {.lex_state = 13}, + [1967] = {.lex_state = 13}, + [1968] = {.lex_state = 13}, + [1969] = {.lex_state = 13}, + [1970] = {.lex_state = 13}, + [1971] = {.lex_state = 13}, + [1972] = {.lex_state = 76}, + [1973] = {.lex_state = 13}, + [1974] = {.lex_state = 76}, + [1975] = {.lex_state = 13}, + [1976] = {.lex_state = 76}, + [1977] = {.lex_state = 13}, + [1978] = {.lex_state = 13}, + [1979] = {.lex_state = 13}, + [1980] = {.lex_state = 13}, + [1981] = {.lex_state = 76}, + [1982] = {.lex_state = 13}, + [1983] = {.lex_state = 76}, + [1984] = {.lex_state = 76}, + [1985] = {.lex_state = 13}, + [1986] = {.lex_state = 76}, + [1987] = {.lex_state = 13}, + [1988] = {.lex_state = 76}, + [1989] = {.lex_state = 76}, + [1990] = {.lex_state = 13}, + [1991] = {.lex_state = 76}, + [1992] = {.lex_state = 76}, + [1993] = {.lex_state = 76}, + [1994] = {.lex_state = 76}, + [1995] = {.lex_state = 13}, + [1996] = {.lex_state = 76}, [1997] = {.lex_state = 5, .external_lex_state = 13}, - [1998] = {.lex_state = 71}, + [1998] = {.lex_state = 13}, [1999] = {.lex_state = 5, .external_lex_state = 13}, - [2000] = {.lex_state = 71}, - [2001] = {.lex_state = 71}, - [2002] = {.lex_state = 71}, - [2003] = {.lex_state = 71}, - [2004] = {.lex_state = 71}, - [2005] = {.lex_state = 71}, - [2006] = {.lex_state = 71}, - [2007] = {.lex_state = 71}, - [2008] = {.lex_state = 71}, - [2009] = {.lex_state = 71}, - [2010] = {.lex_state = 71}, - [2011] = {.lex_state = 71}, - [2012] = {.lex_state = 71}, - [2013] = {.lex_state = 71}, - [2014] = {.lex_state = 71}, - [2015] = {.lex_state = 71}, - [2016] = {.lex_state = 71}, - [2017] = {.lex_state = 71}, - [2018] = {.lex_state = 71}, - [2019] = {.lex_state = 71}, - [2020] = {.lex_state = 71}, - [2021] = {.lex_state = 71}, - [2022] = {.lex_state = 73}, - [2023] = {.lex_state = 71}, - [2024] = {.lex_state = 71}, - [2025] = {.lex_state = 71}, - [2026] = {.lex_state = 71, .external_lex_state = 2}, - [2027] = {.lex_state = 71}, - [2028] = {.lex_state = 71}, - [2029] = {.lex_state = 71}, - [2030] = {.lex_state = 71}, - [2031] = {.lex_state = 71}, - [2032] = {.lex_state = 71}, - [2033] = {.lex_state = 71}, - [2034] = {.lex_state = 71}, - [2035] = {.lex_state = 71}, - [2036] = {.lex_state = 71}, - [2037] = {.lex_state = 71}, - [2038] = {.lex_state = 71}, - [2039] = {.lex_state = 71}, - [2040] = {.lex_state = 71}, - [2041] = {.lex_state = 71}, - [2042] = {.lex_state = 71}, - [2043] = {.lex_state = 71}, - [2044] = {.lex_state = 71}, - [2045] = {.lex_state = 71}, - [2046] = {.lex_state = 71}, - [2047] = {.lex_state = 71}, - [2048] = {.lex_state = 71}, - [2049] = {.lex_state = 71}, - [2050] = {.lex_state = 71}, - [2051] = {.lex_state = 71}, - [2052] = {.lex_state = 71}, - [2053] = {.lex_state = 71}, - [2054] = {.lex_state = 71}, - [2055] = {.lex_state = 71}, - [2056] = {.lex_state = 71}, - [2057] = {.lex_state = 71}, - [2058] = {.lex_state = 71}, - [2059] = {.lex_state = 71}, - [2060] = {.lex_state = 71}, - [2061] = {.lex_state = 71}, - [2062] = {.lex_state = 71}, - [2063] = {.lex_state = 71, .external_lex_state = 2}, - [2064] = {.lex_state = 71}, - [2065] = {.lex_state = 71}, - [2066] = {.lex_state = 71}, - [2067] = {.lex_state = 71}, - [2068] = {.lex_state = 71}, - [2069] = {.lex_state = 193, .external_lex_state = 14}, - [2070] = {.lex_state = 71}, - [2071] = {.lex_state = 71, .external_lex_state = 12}, - [2072] = {.lex_state = 71}, - [2073] = {.lex_state = 71}, - [2074] = {.lex_state = 71}, - [2075] = {.lex_state = 71}, - [2076] = {.lex_state = 71}, - [2077] = {.lex_state = 71}, - [2078] = {.lex_state = 71}, - [2079] = {.lex_state = 71}, - [2080] = {.lex_state = 71, .external_lex_state = 2}, - [2081] = {.lex_state = 71, .external_lex_state = 2}, - [2082] = {.lex_state = 71}, - [2083] = {.lex_state = 71}, - [2084] = {.lex_state = 71}, - [2085] = {.lex_state = 71}, - [2086] = {.lex_state = 71}, - [2087] = {.lex_state = 71}, - [2088] = {.lex_state = 71}, - [2089] = {.lex_state = 71}, - [2090] = {.lex_state = 71}, - [2091] = {.lex_state = 71}, - [2092] = {.lex_state = 71}, - [2093] = {.lex_state = 71}, - [2094] = {.lex_state = 71}, - [2095] = {.lex_state = 71}, - [2096] = {.lex_state = 71}, - [2097] = {.lex_state = 71}, - [2098] = {.lex_state = 71}, - [2099] = {.lex_state = 71}, - [2100] = {.lex_state = 71}, - [2101] = {.lex_state = 71}, - [2102] = {.lex_state = 71}, - [2103] = {.lex_state = 71, .external_lex_state = 2}, - [2104] = {.lex_state = 71}, - [2105] = {.lex_state = 71}, - [2106] = {.lex_state = 71}, - [2107] = {.lex_state = 71}, - [2108] = {.lex_state = 71}, - [2109] = {.lex_state = 71}, - [2110] = {.lex_state = 71}, - [2111] = {.lex_state = 71}, - [2112] = {.lex_state = 71}, - [2113] = {.lex_state = 71}, - [2114] = {.lex_state = 71}, - [2115] = {.lex_state = 71}, - [2116] = {.lex_state = 71}, - [2117] = {.lex_state = 71}, - [2118] = {.lex_state = 71}, - [2119] = {.lex_state = 71}, - [2120] = {.lex_state = 71, .external_lex_state = 2}, - [2121] = {.lex_state = 71}, - [2122] = {.lex_state = 71}, - [2123] = {.lex_state = 71}, - [2124] = {.lex_state = 71, .external_lex_state = 2}, - [2125] = {.lex_state = 71}, - [2126] = {.lex_state = 71, .external_lex_state = 2}, - [2127] = {.lex_state = 71}, - [2128] = {.lex_state = 71, .external_lex_state = 2}, - [2129] = {.lex_state = 71}, - [2130] = {.lex_state = 71}, - [2131] = {.lex_state = 71}, - [2132] = {.lex_state = 71}, - [2133] = {.lex_state = 71}, - [2134] = {.lex_state = 71}, - [2135] = {.lex_state = 71}, - [2136] = {.lex_state = 71}, - [2137] = {.lex_state = 71}, + [2000] = {.lex_state = 13}, + [2001] = {.lex_state = 76}, + [2002] = {.lex_state = 76}, + [2003] = {.lex_state = 13}, + [2004] = {.lex_state = 76}, + [2005] = {.lex_state = 13}, + [2006] = {.lex_state = 76}, + [2007] = {.lex_state = 13}, + [2008] = {.lex_state = 13}, + [2009] = {.lex_state = 13}, + [2010] = {.lex_state = 76}, + [2011] = {.lex_state = 13}, + [2012] = {.lex_state = 76}, + [2013] = {.lex_state = 13}, + [2014] = {.lex_state = 76}, + [2015] = {.lex_state = 76}, + [2016] = {.lex_state = 76}, + [2017] = {.lex_state = 76}, + [2018] = {.lex_state = 13}, + [2019] = {.lex_state = 13}, + [2020] = {.lex_state = 76}, + [2021] = {.lex_state = 13}, + [2022] = {.lex_state = 76}, + [2023] = {.lex_state = 76}, + [2024] = {.lex_state = 76}, + [2025] = {.lex_state = 76}, + [2026] = {.lex_state = 76, .external_lex_state = 2}, + [2027] = {.lex_state = 13}, + [2028] = {.lex_state = 76}, + [2029] = {.lex_state = 76}, + [2030] = {.lex_state = 76}, + [2031] = {.lex_state = 76}, + [2032] = {.lex_state = 13}, + [2033] = {.lex_state = 13}, + [2034] = {.lex_state = 76}, + [2035] = {.lex_state = 76}, + [2036] = {.lex_state = 76}, + [2037] = {.lex_state = 13}, + [2038] = {.lex_state = 13}, + [2039] = {.lex_state = 13}, + [2040] = {.lex_state = 76}, + [2041] = {.lex_state = 13}, + [2042] = {.lex_state = 76}, + [2043] = {.lex_state = 76}, + [2044] = {.lex_state = 76}, + [2045] = {.lex_state = 13}, + [2046] = {.lex_state = 13}, + [2047] = {.lex_state = 13}, + [2048] = {.lex_state = 13}, + [2049] = {.lex_state = 13}, + [2050] = {.lex_state = 13}, + [2051] = {.lex_state = 13}, + [2052] = {.lex_state = 13}, + [2053] = {.lex_state = 13}, + [2054] = {.lex_state = 13}, + [2055] = {.lex_state = 13}, + [2056] = {.lex_state = 13}, + [2057] = {.lex_state = 13}, + [2058] = {.lex_state = 13}, + [2059] = {.lex_state = 13}, + [2060] = {.lex_state = 13}, + [2061] = {.lex_state = 13}, + [2062] = {.lex_state = 13}, + [2063] = {.lex_state = 76, .external_lex_state = 2}, + [2064] = {.lex_state = 13}, + [2065] = {.lex_state = 13}, + [2066] = {.lex_state = 13}, + [2067] = {.lex_state = 13}, + [2068] = {.lex_state = 13}, + [2069] = {.lex_state = 199, .external_lex_state = 14}, + [2070] = {.lex_state = 76}, + [2071] = {.lex_state = 76, .external_lex_state = 12}, + [2072] = {.lex_state = 76}, + [2073] = {.lex_state = 76}, + [2074] = {.lex_state = 13}, + [2075] = {.lex_state = 13}, + [2076] = {.lex_state = 13}, + [2077] = {.lex_state = 13}, + [2078] = {.lex_state = 76}, + [2079] = {.lex_state = 13}, + [2080] = {.lex_state = 76, .external_lex_state = 2}, + [2081] = {.lex_state = 76, .external_lex_state = 2}, + [2082] = {.lex_state = 76}, + [2083] = {.lex_state = 13}, + [2084] = {.lex_state = 13}, + [2085] = {.lex_state = 13}, + [2086] = {.lex_state = 13}, + [2087] = {.lex_state = 13}, + [2088] = {.lex_state = 13}, + [2089] = {.lex_state = 13}, + [2090] = {.lex_state = 76}, + [2091] = {.lex_state = 13}, + [2092] = {.lex_state = 76}, + [2093] = {.lex_state = 76}, + [2094] = {.lex_state = 13}, + [2095] = {.lex_state = 13}, + [2096] = {.lex_state = 13}, + [2097] = {.lex_state = 13}, + [2098] = {.lex_state = 13}, + [2099] = {.lex_state = 13}, + [2100] = {.lex_state = 76}, + [2101] = {.lex_state = 13}, + [2102] = {.lex_state = 76}, + [2103] = {.lex_state = 76, .external_lex_state = 2}, + [2104] = {.lex_state = 13}, + [2105] = {.lex_state = 13}, + [2106] = {.lex_state = 13}, + [2107] = {.lex_state = 13}, + [2108] = {.lex_state = 76}, + [2109] = {.lex_state = 13}, + [2110] = {.lex_state = 13}, + [2111] = {.lex_state = 13}, + [2112] = {.lex_state = 76}, + [2113] = {.lex_state = 13}, + [2114] = {.lex_state = 13}, + [2115] = {.lex_state = 13}, + [2116] = {.lex_state = 76}, + [2117] = {.lex_state = 13}, + [2118] = {.lex_state = 76}, + [2119] = {.lex_state = 13}, + [2120] = {.lex_state = 13, .external_lex_state = 2}, + [2121] = {.lex_state = 76}, + [2122] = {.lex_state = 13}, + [2123] = {.lex_state = 76}, + [2124] = {.lex_state = 76, .external_lex_state = 2}, + [2125] = {.lex_state = 13}, + [2126] = {.lex_state = 76, .external_lex_state = 2}, + [2127] = {.lex_state = 76}, + [2128] = {.lex_state = 13, .external_lex_state = 2}, + [2129] = {.lex_state = 13}, + [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 = 76}, + [2137] = {.lex_state = 76}, [2138] = {.lex_state = 5, .external_lex_state = 11}, - [2139] = {.lex_state = 71}, - [2140] = {.lex_state = 71}, - [2141] = {.lex_state = 71}, - [2142] = {.lex_state = 71}, - [2143] = {.lex_state = 71}, - [2144] = {.lex_state = 71, .external_lex_state = 2}, - [2145] = {.lex_state = 71}, - [2146] = {.lex_state = 71}, - [2147] = {.lex_state = 71}, - [2148] = {.lex_state = 71}, - [2149] = {.lex_state = 71}, - [2150] = {.lex_state = 71}, - [2151] = {.lex_state = 71, .external_lex_state = 2}, - [2152] = {.lex_state = 71, .external_lex_state = 2}, - [2153] = {.lex_state = 71}, - [2154] = {.lex_state = 71, .external_lex_state = 2}, - [2155] = {.lex_state = 73}, - [2156] = {.lex_state = 71}, - [2157] = {.lex_state = 71}, - [2158] = {.lex_state = 71}, - [2159] = {.lex_state = 73, .external_lex_state = 10}, - [2160] = {.lex_state = 71}, - [2161] = {.lex_state = 71, .external_lex_state = 2}, - [2162] = {.lex_state = 71}, - [2163] = {.lex_state = 71, .external_lex_state = 2}, - [2164] = {.lex_state = 71}, - [2165] = {.lex_state = 71}, - [2166] = {.lex_state = 71}, - [2167] = {.lex_state = 71}, - [2168] = {.lex_state = 71}, - [2169] = {.lex_state = 71}, - [2170] = {.lex_state = 71}, - [2171] = {.lex_state = 71}, - [2172] = {.lex_state = 71}, - [2173] = {.lex_state = 71}, - [2174] = {.lex_state = 71}, - [2175] = {.lex_state = 71}, - [2176] = {.lex_state = 71}, - [2177] = {.lex_state = 71}, - [2178] = {.lex_state = 71}, - [2179] = {.lex_state = 71}, + [2139] = {.lex_state = 76}, + [2140] = {.lex_state = 76}, + [2141] = {.lex_state = 76}, + [2142] = {.lex_state = 76}, + [2143] = {.lex_state = 76}, + [2144] = {.lex_state = 76, .external_lex_state = 2}, + [2145] = {.lex_state = 76}, + [2146] = {.lex_state = 76}, + [2147] = {.lex_state = 76}, + [2148] = {.lex_state = 76}, + [2149] = {.lex_state = 76}, + [2150] = {.lex_state = 76}, + [2151] = {.lex_state = 76, .external_lex_state = 2}, + [2152] = {.lex_state = 76, .external_lex_state = 2}, + [2153] = {.lex_state = 76}, + [2154] = {.lex_state = 76, .external_lex_state = 2}, + [2155] = {.lex_state = 76}, + [2156] = {.lex_state = 76}, + [2157] = {.lex_state = 76}, + [2158] = {.lex_state = 76}, + [2159] = {.lex_state = 76, .external_lex_state = 10}, + [2160] = {.lex_state = 76}, + [2161] = {.lex_state = 76, .external_lex_state = 2}, + [2162] = {.lex_state = 76}, + [2163] = {.lex_state = 76, .external_lex_state = 2}, + [2164] = {.lex_state = 76}, + [2165] = {.lex_state = 76}, + [2166] = {.lex_state = 76}, + [2167] = {.lex_state = 13}, + [2168] = {.lex_state = 76}, + [2169] = {.lex_state = 76}, + [2170] = {.lex_state = 76}, + [2171] = {.lex_state = 76}, + [2172] = {.lex_state = 76}, + [2173] = {.lex_state = 76}, + [2174] = {.lex_state = 13}, + [2175] = {.lex_state = 76}, + [2176] = {.lex_state = 76}, + [2177] = {.lex_state = 76}, + [2178] = {.lex_state = 76}, + [2179] = {.lex_state = 13}, [2180] = {.lex_state = 5, .external_lex_state = 13}, - [2181] = {.lex_state = 71}, - [2182] = {.lex_state = 71}, - [2183] = {.lex_state = 71}, - [2184] = {.lex_state = 71}, - [2185] = {.lex_state = 71}, - [2186] = {.lex_state = 71}, - [2187] = {.lex_state = 71}, - [2188] = {.lex_state = 71}, - [2189] = {.lex_state = 71}, - [2190] = {.lex_state = 71}, - [2191] = {.lex_state = 71}, - [2192] = {.lex_state = 71}, - [2193] = {.lex_state = 23}, - [2194] = {.lex_state = 71, .external_lex_state = 2}, - [2195] = {.lex_state = 71}, - [2196] = {.lex_state = 71}, - [2197] = {.lex_state = 71, .external_lex_state = 2}, - [2198] = {.lex_state = 71}, - [2199] = {.lex_state = 71, .external_lex_state = 2}, - [2200] = {.lex_state = 71, .external_lex_state = 2}, - [2201] = {.lex_state = 71, .external_lex_state = 2}, - [2202] = {.lex_state = 71}, - [2203] = {.lex_state = 71}, - [2204] = {.lex_state = 71}, - [2205] = {.lex_state = 71, .external_lex_state = 2}, - [2206] = {.lex_state = 71, .external_lex_state = 2}, - [2207] = {.lex_state = 71}, - [2208] = {.lex_state = 71, .external_lex_state = 2}, - [2209] = {.lex_state = 71, .external_lex_state = 2}, - [2210] = {.lex_state = 71, .external_lex_state = 2}, - [2211] = {.lex_state = 71, .external_lex_state = 2}, - [2212] = {.lex_state = 71}, - [2213] = {.lex_state = 71}, - [2214] = {.lex_state = 71}, - [2215] = {.lex_state = 71}, - [2216] = {.lex_state = 71}, - [2217] = {.lex_state = 71}, - [2218] = {.lex_state = 71}, - [2219] = {.lex_state = 71}, - [2220] = {.lex_state = 71}, - [2221] = {.lex_state = 71}, - [2222] = {.lex_state = 71}, - [2223] = {.lex_state = 71}, - [2224] = {.lex_state = 71}, - [2225] = {.lex_state = 71}, - [2226] = {.lex_state = 71}, - [2227] = {.lex_state = 71}, - [2228] = {.lex_state = 71}, - [2229] = {.lex_state = 71}, - [2230] = {.lex_state = 71, .external_lex_state = 2}, - [2231] = {.lex_state = 71}, - [2232] = {.lex_state = 71, .external_lex_state = 2}, - [2233] = {.lex_state = 71, .external_lex_state = 2}, - [2234] = {.lex_state = 71}, - [2235] = {.lex_state = 71}, - [2236] = {.lex_state = 71, .external_lex_state = 2}, - [2237] = {.lex_state = 71, .external_lex_state = 2}, - [2238] = {.lex_state = 71}, - [2239] = {.lex_state = 71}, - [2240] = {.lex_state = 71}, - [2241] = {.lex_state = 71}, - [2242] = {.lex_state = 71}, - [2243] = {.lex_state = 71}, - [2244] = {.lex_state = 71}, - [2245] = {.lex_state = 71}, - [2246] = {.lex_state = 71}, - [2247] = {.lex_state = 71}, - [2248] = {.lex_state = 71}, - [2249] = {.lex_state = 71}, - [2250] = {.lex_state = 71}, - [2251] = {.lex_state = 71}, - [2252] = {.lex_state = 71}, - [2253] = {.lex_state = 71}, - [2254] = {.lex_state = 71}, - [2255] = {.lex_state = 71}, - [2256] = {.lex_state = 71}, - [2257] = {.lex_state = 71}, + [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 = 25}, + [2194] = {.lex_state = 76, .external_lex_state = 2}, + [2195] = {.lex_state = 76}, + [2196] = {.lex_state = 76}, + [2197] = {.lex_state = 76, .external_lex_state = 2}, + [2198] = {.lex_state = 76}, + [2199] = {.lex_state = 76, .external_lex_state = 2}, + [2200] = {.lex_state = 76, .external_lex_state = 2}, + [2201] = {.lex_state = 76, .external_lex_state = 2}, + [2202] = {.lex_state = 76}, + [2203] = {.lex_state = 76}, + [2204] = {.lex_state = 76}, + [2205] = {.lex_state = 76, .external_lex_state = 2}, + [2206] = {.lex_state = 76, .external_lex_state = 2}, + [2207] = {.lex_state = 76}, + [2208] = {.lex_state = 76, .external_lex_state = 2}, + [2209] = {.lex_state = 76, .external_lex_state = 2}, + [2210] = {.lex_state = 76, .external_lex_state = 2}, + [2211] = {.lex_state = 76, .external_lex_state = 2}, + [2212] = {.lex_state = 13}, + [2213] = {.lex_state = 76}, + [2214] = {.lex_state = 76}, + [2215] = {.lex_state = 76}, + [2216] = {.lex_state = 76}, + [2217] = {.lex_state = 76}, + [2218] = {.lex_state = 76}, + [2219] = {.lex_state = 76}, + [2220] = {.lex_state = 76}, + [2221] = {.lex_state = 13}, + [2222] = {.lex_state = 76}, + [2223] = {.lex_state = 76}, + [2224] = {.lex_state = 76}, + [2225] = {.lex_state = 76}, + [2226] = {.lex_state = 76}, + [2227] = {.lex_state = 76}, + [2228] = {.lex_state = 76}, + [2229] = {.lex_state = 76}, + [2230] = {.lex_state = 76, .external_lex_state = 2}, + [2231] = {.lex_state = 76}, + [2232] = {.lex_state = 76, .external_lex_state = 2}, + [2233] = {.lex_state = 76, .external_lex_state = 2}, + [2234] = {.lex_state = 76}, + [2235] = {.lex_state = 76}, + [2236] = {.lex_state = 76, .external_lex_state = 2}, + [2237] = {.lex_state = 76, .external_lex_state = 2}, + [2238] = {.lex_state = 76}, + [2239] = {.lex_state = 76}, + [2240] = {.lex_state = 76}, + [2241] = {.lex_state = 76}, + [2242] = {.lex_state = 76}, + [2243] = {.lex_state = 76}, + [2244] = {.lex_state = 13}, + [2245] = {.lex_state = 76}, + [2246] = {.lex_state = 76}, + [2247] = {.lex_state = 76}, + [2248] = {.lex_state = 76}, + [2249] = {.lex_state = 76}, + [2250] = {.lex_state = 76}, + [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 = 5, .external_lex_state = 13}, - [2259] = {.lex_state = 71}, - [2260] = {.lex_state = 71}, - [2261] = {.lex_state = 71, .external_lex_state = 2}, - [2262] = {.lex_state = 71}, - [2263] = {.lex_state = 71}, + [2259] = {.lex_state = 76}, + [2260] = {.lex_state = 76}, + [2261] = {.lex_state = 76, .external_lex_state = 2}, + [2262] = {.lex_state = 76}, + [2263] = {.lex_state = 76}, [2264] = {.lex_state = 5, .external_lex_state = 13}, - [2265] = {.lex_state = 71}, - [2266] = {.lex_state = 71}, + [2265] = {.lex_state = 13}, + [2266] = {.lex_state = 13}, [2267] = {.lex_state = 5, .external_lex_state = 13}, - [2268] = {.lex_state = 71}, - [2269] = {.lex_state = 71}, - [2270] = {.lex_state = 71}, - [2271] = {.lex_state = 71}, - [2272] = {.lex_state = 71, .external_lex_state = 2}, - [2273] = {.lex_state = 71}, - [2274] = {.lex_state = 71}, - [2275] = {.lex_state = 71}, - [2276] = {.lex_state = 71, .external_lex_state = 2}, - [2277] = {.lex_state = 71}, - [2278] = {.lex_state = 71}, - [2279] = {.lex_state = 71, .external_lex_state = 2}, - [2280] = {.lex_state = 71, .external_lex_state = 2}, - [2281] = {.lex_state = 71, .external_lex_state = 2}, - [2282] = {.lex_state = 71, .external_lex_state = 2}, - [2283] = {.lex_state = 71}, - [2284] = {.lex_state = 71}, - [2285] = {.lex_state = 71}, - [2286] = {.lex_state = 71}, - [2287] = {.lex_state = 71}, - [2288] = {.lex_state = 71, .external_lex_state = 2}, - [2289] = {.lex_state = 71}, - [2290] = {.lex_state = 71, .external_lex_state = 2}, - [2291] = {.lex_state = 71}, - [2292] = {.lex_state = 71}, - [2293] = {.lex_state = 71, .external_lex_state = 2}, - [2294] = {.lex_state = 71}, - [2295] = {.lex_state = 71}, - [2296] = {.lex_state = 71}, - [2297] = {.lex_state = 71, .external_lex_state = 2}, - [2298] = {.lex_state = 71, .external_lex_state = 2}, - [2299] = {.lex_state = 71}, - [2300] = {.lex_state = 71}, - [2301] = {.lex_state = 71}, - [2302] = {.lex_state = 71}, - [2303] = {.lex_state = 71}, - [2304] = {.lex_state = 71}, - [2305] = {.lex_state = 71}, - [2306] = {.lex_state = 71}, - [2307] = {.lex_state = 71}, - [2308] = {.lex_state = 71, .external_lex_state = 2}, - [2309] = {.lex_state = 71}, - [2310] = {.lex_state = 71}, - [2311] = {.lex_state = 71}, - [2312] = {.lex_state = 71}, - [2313] = {.lex_state = 71}, - [2314] = {.lex_state = 71}, - [2315] = {.lex_state = 71, .external_lex_state = 2}, - [2316] = {.lex_state = 71}, - [2317] = {.lex_state = 71}, - [2318] = {.lex_state = 71}, - [2319] = {.lex_state = 71}, - [2320] = {.lex_state = 71}, - [2321] = {.lex_state = 71, .external_lex_state = 2}, - [2322] = {.lex_state = 71}, - [2323] = {.lex_state = 71}, - [2324] = {.lex_state = 71}, - [2325] = {.lex_state = 23}, - [2326] = {.lex_state = 71}, - [2327] = {.lex_state = 71}, - [2328] = {.lex_state = 71}, + [2268] = {.lex_state = 76}, + [2269] = {.lex_state = 76}, + [2270] = {.lex_state = 76}, + [2271] = {.lex_state = 13}, + [2272] = {.lex_state = 76, .external_lex_state = 2}, + [2273] = {.lex_state = 76}, + [2274] = {.lex_state = 76}, + [2275] = {.lex_state = 76}, + [2276] = {.lex_state = 76, .external_lex_state = 2}, + [2277] = {.lex_state = 76}, + [2278] = {.lex_state = 76}, + [2279] = {.lex_state = 76, .external_lex_state = 2}, + [2280] = {.lex_state = 76, .external_lex_state = 2}, + [2281] = {.lex_state = 76, .external_lex_state = 2}, + [2282] = {.lex_state = 76, .external_lex_state = 2}, + [2283] = {.lex_state = 76}, + [2284] = {.lex_state = 76}, + [2285] = {.lex_state = 76}, + [2286] = {.lex_state = 76}, + [2287] = {.lex_state = 76}, + [2288] = {.lex_state = 76, .external_lex_state = 2}, + [2289] = {.lex_state = 76}, + [2290] = {.lex_state = 76, .external_lex_state = 2}, + [2291] = {.lex_state = 76}, + [2292] = {.lex_state = 76}, + [2293] = {.lex_state = 76, .external_lex_state = 2}, + [2294] = {.lex_state = 76}, + [2295] = {.lex_state = 76}, + [2296] = {.lex_state = 76}, + [2297] = {.lex_state = 76, .external_lex_state = 2}, + [2298] = {.lex_state = 76, .external_lex_state = 2}, + [2299] = {.lex_state = 13}, + [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 = 13}, + [2307] = {.lex_state = 76}, + [2308] = {.lex_state = 76, .external_lex_state = 2}, + [2309] = {.lex_state = 76}, + [2310] = {.lex_state = 76}, + [2311] = {.lex_state = 76}, + [2312] = {.lex_state = 76}, + [2313] = {.lex_state = 76}, + [2314] = {.lex_state = 76}, + [2315] = {.lex_state = 76, .external_lex_state = 2}, + [2316] = {.lex_state = 76}, + [2317] = {.lex_state = 76}, + [2318] = {.lex_state = 76}, + [2319] = {.lex_state = 76}, + [2320] = {.lex_state = 76}, + [2321] = {.lex_state = 76, .external_lex_state = 2}, + [2322] = {.lex_state = 76}, + [2323] = {.lex_state = 76}, + [2324] = {.lex_state = 76}, + [2325] = {.lex_state = 25}, + [2326] = {.lex_state = 76}, + [2327] = {.lex_state = 76}, + [2328] = {.lex_state = 76}, [2329] = {.lex_state = 5, .external_lex_state = 13}, - [2330] = {.lex_state = 71}, - [2331] = {.lex_state = 71}, - [2332] = {.lex_state = 71}, - [2333] = {.lex_state = 71}, - [2334] = {.lex_state = 71}, - [2335] = {.lex_state = 71}, - [2336] = {.lex_state = 71}, - [2337] = {.lex_state = 71, .external_lex_state = 2}, - [2338] = {.lex_state = 71}, - [2339] = {.lex_state = 71}, - [2340] = {.lex_state = 71}, - [2341] = {.lex_state = 71}, - [2342] = {.lex_state = 71}, - [2343] = {.lex_state = 71, .external_lex_state = 2}, - [2344] = {.lex_state = 71}, - [2345] = {.lex_state = 71}, - [2346] = {.lex_state = 71}, - [2347] = {.lex_state = 71}, - [2348] = {.lex_state = 71}, - [2349] = {.lex_state = 71}, - [2350] = {.lex_state = 71}, - [2351] = {.lex_state = 71, .external_lex_state = 2}, - [2352] = {.lex_state = 71}, - [2353] = {.lex_state = 71}, - [2354] = {.lex_state = 71}, - [2355] = {.lex_state = 71}, - [2356] = {.lex_state = 71}, - [2357] = {.lex_state = 71}, - [2358] = {.lex_state = 71}, - [2359] = {.lex_state = 71}, - [2360] = {.lex_state = 71}, - [2361] = {.lex_state = 71}, - [2362] = {.lex_state = 71}, - [2363] = {.lex_state = 71}, - [2364] = {.lex_state = 71}, - [2365] = {.lex_state = 71}, - [2366] = {.lex_state = 71}, - [2367] = {.lex_state = 71}, - [2368] = {.lex_state = 71}, - [2369] = {.lex_state = 71}, - [2370] = {.lex_state = 71}, - [2371] = {.lex_state = 71}, - [2372] = {.lex_state = 71}, - [2373] = {.lex_state = 71, .external_lex_state = 2}, - [2374] = {.lex_state = 71}, - [2375] = {.lex_state = 71, .external_lex_state = 2}, + [2330] = {.lex_state = 76}, + [2331] = {.lex_state = 76}, + [2332] = {.lex_state = 76}, + [2333] = {.lex_state = 76}, + [2334] = {.lex_state = 76}, + [2335] = {.lex_state = 76}, + [2336] = {.lex_state = 76}, + [2337] = {.lex_state = 76, .external_lex_state = 2}, + [2338] = {.lex_state = 76}, + [2339] = {.lex_state = 76}, + [2340] = {.lex_state = 76}, + [2341] = {.lex_state = 76}, + [2342] = {.lex_state = 76}, + [2343] = {.lex_state = 76, .external_lex_state = 2}, + [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 = 13}, + [2351] = {.lex_state = 76, .external_lex_state = 2}, + [2352] = {.lex_state = 76}, + [2353] = {.lex_state = 76}, + [2354] = {.lex_state = 76}, + [2355] = {.lex_state = 76}, + [2356] = {.lex_state = 76}, + [2357] = {.lex_state = 76}, + [2358] = {.lex_state = 76}, + [2359] = {.lex_state = 76}, + [2360] = {.lex_state = 76}, + [2361] = {.lex_state = 76}, + [2362] = {.lex_state = 13}, + [2363] = {.lex_state = 76}, + [2364] = {.lex_state = 76}, + [2365] = {.lex_state = 76}, + [2366] = {.lex_state = 76}, + [2367] = {.lex_state = 76}, + [2368] = {.lex_state = 76}, + [2369] = {.lex_state = 76}, + [2370] = {.lex_state = 76}, + [2371] = {.lex_state = 76}, + [2372] = {.lex_state = 76}, + [2373] = {.lex_state = 76, .external_lex_state = 2}, + [2374] = {.lex_state = 76}, + [2375] = {.lex_state = 76, .external_lex_state = 2}, [2376] = {.lex_state = 5, .external_lex_state = 13}, - [2377] = {.lex_state = 71}, + [2377] = {.lex_state = 76}, [2378] = {.lex_state = 5, .external_lex_state = 13}, - [2379] = {.lex_state = 71}, - [2380] = {.lex_state = 71}, - [2381] = {.lex_state = 71}, - [2382] = {.lex_state = 71, .external_lex_state = 2}, - [2383] = {.lex_state = 71, .external_lex_state = 2}, - [2384] = {.lex_state = 71, .external_lex_state = 2}, - [2385] = {.lex_state = 71, .external_lex_state = 2}, - [2386] = {.lex_state = 71}, - [2387] = {.lex_state = 71}, - [2388] = {.lex_state = 71}, - [2389] = {.lex_state = 71, .external_lex_state = 2}, - [2390] = {.lex_state = 71, .external_lex_state = 2}, - [2391] = {.lex_state = 71}, - [2392] = {.lex_state = 71}, - [2393] = {.lex_state = 71, .external_lex_state = 2}, - [2394] = {.lex_state = 71}, - [2395] = {.lex_state = 71}, - [2396] = {.lex_state = 71, .external_lex_state = 2}, - [2397] = {.lex_state = 71}, - [2398] = {.lex_state = 71, .external_lex_state = 2}, - [2399] = {.lex_state = 71}, - [2400] = {.lex_state = 71}, - [2401] = {.lex_state = 71, .external_lex_state = 2}, - [2402] = {.lex_state = 71}, - [2403] = {.lex_state = 71}, - [2404] = {.lex_state = 71, .external_lex_state = 2}, - [2405] = {.lex_state = 71, .external_lex_state = 2}, - [2406] = {.lex_state = 71}, - [2407] = {.lex_state = 71, .external_lex_state = 2}, - [2408] = {.lex_state = 71}, - [2409] = {.lex_state = 71}, - [2410] = {.lex_state = 71}, - [2411] = {.lex_state = 71}, - [2412] = {.lex_state = 71, .external_lex_state = 2}, - [2413] = {.lex_state = 71}, - [2414] = {.lex_state = 71, .external_lex_state = 2}, - [2415] = {.lex_state = 71}, - [2416] = {.lex_state = 71}, - [2417] = {.lex_state = 71}, - [2418] = {.lex_state = 71}, - [2419] = {.lex_state = 71}, - [2420] = {.lex_state = 71}, - [2421] = {.lex_state = 71}, - [2422] = {.lex_state = 71}, - [2423] = {.lex_state = 71}, - [2424] = {.lex_state = 71}, - [2425] = {.lex_state = 71}, - [2426] = {.lex_state = 71}, - [2427] = {.lex_state = 71}, - [2428] = {.lex_state = 71}, - [2429] = {.lex_state = 71}, - [2430] = {.lex_state = 71, .external_lex_state = 13}, - [2431] = {.lex_state = 71}, - [2432] = {.lex_state = 71}, - [2433] = {.lex_state = 71}, - [2434] = {.lex_state = 71}, - [2435] = {.lex_state = 71}, - [2436] = {.lex_state = 71}, - [2437] = {.lex_state = 71}, - [2438] = {.lex_state = 71}, - [2439] = {.lex_state = 71}, - [2440] = {.lex_state = 71}, - [2441] = {.lex_state = 71}, - [2442] = {.lex_state = 71}, - [2443] = {.lex_state = 71}, - [2444] = {.lex_state = 71}, - [2445] = {.lex_state = 71}, - [2446] = {.lex_state = 71}, - [2447] = {.lex_state = 71}, - [2448] = {.lex_state = 71}, - [2449] = {.lex_state = 71}, - [2450] = {.lex_state = 71}, - [2451] = {.lex_state = 71}, - [2452] = {.lex_state = 71}, - [2453] = {.lex_state = 71}, - [2454] = {.lex_state = 71}, - [2455] = {.lex_state = 71, .external_lex_state = 13}, - [2456] = {.lex_state = 71}, - [2457] = {.lex_state = 71}, - [2458] = {.lex_state = 71}, - [2459] = {.lex_state = 71}, - [2460] = {.lex_state = 71}, - [2461] = {.lex_state = 71}, - [2462] = {.lex_state = 71, .external_lex_state = 13}, - [2463] = {.lex_state = 71}, - [2464] = {.lex_state = 71}, - [2465] = {.lex_state = 71}, - [2466] = {.lex_state = 71, .external_lex_state = 13}, - [2467] = {.lex_state = 71}, - [2468] = {.lex_state = 9}, - [2469] = {.lex_state = 9}, - [2470] = {.lex_state = 71}, - [2471] = {.lex_state = 71}, - [2472] = {.lex_state = 71}, - [2473] = {.lex_state = 71}, - [2474] = {.lex_state = 71}, - [2475] = {.lex_state = 71}, - [2476] = {.lex_state = 71}, - [2477] = {.lex_state = 71}, - [2478] = {.lex_state = 71}, - [2479] = {.lex_state = 71}, - [2480] = {.lex_state = 71}, - [2481] = {.lex_state = 71}, - [2482] = {.lex_state = 71}, - [2483] = {.lex_state = 71}, - [2484] = {.lex_state = 71}, - [2485] = {.lex_state = 71}, - [2486] = {.lex_state = 71}, - [2487] = {.lex_state = 71}, - [2488] = {.lex_state = 71}, - [2489] = {.lex_state = 71}, - [2490] = {.lex_state = 71}, - [2491] = {.lex_state = 71}, - [2492] = {.lex_state = 71}, - [2493] = {.lex_state = 71}, - [2494] = {.lex_state = 71}, - [2495] = {.lex_state = 71}, - [2496] = {.lex_state = 71}, - [2497] = {.lex_state = 71}, - [2498] = {.lex_state = 71}, - [2499] = {.lex_state = 71}, - [2500] = {.lex_state = 71}, - [2501] = {.lex_state = 71}, - [2502] = {.lex_state = 71}, - [2503] = {.lex_state = 71}, - [2504] = {.lex_state = 71}, - [2505] = {.lex_state = 71}, - [2506] = {.lex_state = 71}, - [2507] = {.lex_state = 71}, - [2508] = {.lex_state = 71}, - [2509] = {.lex_state = 71}, - [2510] = {.lex_state = 9}, - [2511] = {.lex_state = 9}, - [2512] = {.lex_state = 71}, - [2513] = {.lex_state = 71}, - [2514] = {.lex_state = 71}, - [2515] = {.lex_state = 71}, - [2516] = {.lex_state = 71}, - [2517] = {.lex_state = 71}, - [2518] = {.lex_state = 71}, - [2519] = {.lex_state = 71}, - [2520] = {.lex_state = 71}, - [2521] = {.lex_state = 71}, - [2522] = {.lex_state = 71}, - [2523] = {.lex_state = 71}, - [2524] = {.lex_state = 71}, - [2525] = {.lex_state = 71}, - [2526] = {.lex_state = 71}, - [2527] = {.lex_state = 71}, - [2528] = {.lex_state = 71}, - [2529] = {.lex_state = 71}, - [2530] = {.lex_state = 71}, - [2531] = {.lex_state = 71}, - [2532] = {.lex_state = 71}, - [2533] = {.lex_state = 71}, - [2534] = {.lex_state = 71}, - [2535] = {.lex_state = 71}, - [2536] = {.lex_state = 71}, - [2537] = {.lex_state = 71}, - [2538] = {.lex_state = 71}, - [2539] = {.lex_state = 71}, - [2540] = {.lex_state = 71}, - [2541] = {.lex_state = 71}, - [2542] = {.lex_state = 71, .external_lex_state = 12}, - [2543] = {.lex_state = 71}, - [2544] = {.lex_state = 71}, - [2545] = {.lex_state = 71}, - [2546] = {.lex_state = 71}, - [2547] = {.lex_state = 71}, - [2548] = {.lex_state = 71}, - [2549] = {.lex_state = 71}, - [2550] = {.lex_state = 71}, - [2551] = {.lex_state = 71}, - [2552] = {.lex_state = 71}, - [2553] = {.lex_state = 71, .external_lex_state = 12}, - [2554] = {.lex_state = 71, .external_lex_state = 12}, - [2555] = {.lex_state = 71}, - [2556] = {.lex_state = 71}, - [2557] = {.lex_state = 71}, - [2558] = {.lex_state = 71}, - [2559] = {.lex_state = 71}, - [2560] = {.lex_state = 71}, - [2561] = {.lex_state = 71}, - [2562] = {.lex_state = 71}, - [2563] = {.lex_state = 71}, - [2564] = {.lex_state = 71}, - [2565] = {.lex_state = 71}, - [2566] = {.lex_state = 71}, - [2567] = {.lex_state = 71}, - [2568] = {.lex_state = 71}, - [2569] = {.lex_state = 71}, - [2570] = {.lex_state = 71}, - [2571] = {.lex_state = 71}, - [2572] = {.lex_state = 71}, - [2573] = {.lex_state = 71}, - [2574] = {.lex_state = 71}, - [2575] = {.lex_state = 71}, - [2576] = {.lex_state = 71}, - [2577] = {.lex_state = 71}, - [2578] = {.lex_state = 71}, - [2579] = {.lex_state = 71}, - [2580] = {.lex_state = 71}, - [2581] = {.lex_state = 71}, - [2582] = {.lex_state = 71}, - [2583] = {.lex_state = 71}, - [2584] = {.lex_state = 71}, - [2585] = {.lex_state = 71}, - [2586] = {.lex_state = 71}, - [2587] = {.lex_state = 71}, - [2588] = {.lex_state = 71}, - [2589] = {.lex_state = 71}, - [2590] = {.lex_state = 71}, - [2591] = {.lex_state = 71}, - [2592] = {.lex_state = 71}, - [2593] = {.lex_state = 71}, - [2594] = {.lex_state = 71}, - [2595] = {.lex_state = 71}, - [2596] = {.lex_state = 71}, - [2597] = {.lex_state = 71}, - [2598] = {.lex_state = 71}, - [2599] = {.lex_state = 71}, - [2600] = {.lex_state = 71}, - [2601] = {.lex_state = 71}, - [2602] = {.lex_state = 71}, - [2603] = {.lex_state = 71}, - [2604] = {.lex_state = 71}, - [2605] = {.lex_state = 71}, - [2606] = {.lex_state = 71}, - [2607] = {.lex_state = 71}, - [2608] = {.lex_state = 71}, - [2609] = {.lex_state = 71}, - [2610] = {.lex_state = 71}, - [2611] = {.lex_state = 71}, - [2612] = {.lex_state = 71}, - [2613] = {.lex_state = 71}, - [2614] = {.lex_state = 71}, - [2615] = {.lex_state = 71}, - [2616] = {.lex_state = 71}, - [2617] = {.lex_state = 71}, - [2618] = {.lex_state = 71}, - [2619] = {.lex_state = 71}, - [2620] = {.lex_state = 71}, - [2621] = {.lex_state = 71}, - [2622] = {.lex_state = 71}, - [2623] = {.lex_state = 71}, - [2624] = {.lex_state = 71}, - [2625] = {.lex_state = 71, .external_lex_state = 13}, - [2626] = {.lex_state = 71, .external_lex_state = 13}, - [2627] = {.lex_state = 71}, - [2628] = {.lex_state = 71}, - [2629] = {.lex_state = 71}, - [2630] = {.lex_state = 71}, - [2631] = {.lex_state = 71, .external_lex_state = 12}, - [2632] = {.lex_state = 71}, - [2633] = {.lex_state = 71}, - [2634] = {.lex_state = 71}, - [2635] = {.lex_state = 71}, - [2636] = {.lex_state = 71}, - [2637] = {.lex_state = 71}, - [2638] = {.lex_state = 71}, - [2639] = {.lex_state = 71}, - [2640] = {.lex_state = 71}, - [2641] = {.lex_state = 71}, - [2642] = {.lex_state = 71}, - [2643] = {.lex_state = 71}, - [2644] = {.lex_state = 71}, - [2645] = {.lex_state = 71}, - [2646] = {.lex_state = 71}, - [2647] = {.lex_state = 71}, - [2648] = {.lex_state = 71}, - [2649] = {.lex_state = 71}, - [2650] = {.lex_state = 71}, - [2651] = {.lex_state = 71}, + [2379] = {.lex_state = 76}, + [2380] = {.lex_state = 76}, + [2381] = {.lex_state = 76}, + [2382] = {.lex_state = 76, .external_lex_state = 2}, + [2383] = {.lex_state = 76, .external_lex_state = 2}, + [2384] = {.lex_state = 76, .external_lex_state = 2}, + [2385] = {.lex_state = 76, .external_lex_state = 2}, + [2386] = {.lex_state = 76}, + [2387] = {.lex_state = 76}, + [2388] = {.lex_state = 76}, + [2389] = {.lex_state = 76, .external_lex_state = 2}, + [2390] = {.lex_state = 76, .external_lex_state = 2}, + [2391] = {.lex_state = 76}, + [2392] = {.lex_state = 76}, + [2393] = {.lex_state = 76, .external_lex_state = 2}, + [2394] = {.lex_state = 76}, + [2395] = {.lex_state = 76}, + [2396] = {.lex_state = 76, .external_lex_state = 2}, + [2397] = {.lex_state = 76}, + [2398] = {.lex_state = 76, .external_lex_state = 2}, + [2399] = {.lex_state = 76}, + [2400] = {.lex_state = 76}, + [2401] = {.lex_state = 76, .external_lex_state = 2}, + [2402] = {.lex_state = 76}, + [2403] = {.lex_state = 76}, + [2404] = {.lex_state = 76, .external_lex_state = 2}, + [2405] = {.lex_state = 76, .external_lex_state = 2}, + [2406] = {.lex_state = 76}, + [2407] = {.lex_state = 76, .external_lex_state = 2}, + [2408] = {.lex_state = 76}, + [2409] = {.lex_state = 76}, + [2410] = {.lex_state = 76}, + [2411] = {.lex_state = 76}, + [2412] = {.lex_state = 76, .external_lex_state = 2}, + [2413] = {.lex_state = 76}, + [2414] = {.lex_state = 76, .external_lex_state = 2}, + [2415] = {.lex_state = 76}, + [2416] = {.lex_state = 76}, + [2417] = {.lex_state = 76}, + [2418] = {.lex_state = 76}, + [2419] = {.lex_state = 76}, + [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 = 13}, + [2427] = {.lex_state = 76}, + [2428] = {.lex_state = 76}, + [2429] = {.lex_state = 76}, + [2430] = {.lex_state = 76, .external_lex_state = 13}, + [2431] = {.lex_state = 76}, + [2432] = {.lex_state = 76}, + [2433] = {.lex_state = 76}, + [2434] = {.lex_state = 76}, + [2435] = {.lex_state = 76}, + [2436] = {.lex_state = 76}, + [2437] = {.lex_state = 76}, + [2438] = {.lex_state = 76}, + [2439] = {.lex_state = 76}, + [2440] = {.lex_state = 76}, + [2441] = {.lex_state = 76}, + [2442] = {.lex_state = 76}, + [2443] = {.lex_state = 76}, + [2444] = {.lex_state = 76}, + [2445] = {.lex_state = 76}, + [2446] = {.lex_state = 76}, + [2447] = {.lex_state = 76}, + [2448] = {.lex_state = 76}, + [2449] = {.lex_state = 13}, + [2450] = {.lex_state = 76}, + [2451] = {.lex_state = 76}, + [2452] = {.lex_state = 76}, + [2453] = {.lex_state = 13}, + [2454] = {.lex_state = 76}, + [2455] = {.lex_state = 76, .external_lex_state = 13}, + [2456] = {.lex_state = 76}, + [2457] = {.lex_state = 13}, + [2458] = {.lex_state = 13}, + [2459] = {.lex_state = 76}, + [2460] = {.lex_state = 13}, + [2461] = {.lex_state = 76}, + [2462] = {.lex_state = 76, .external_lex_state = 13}, + [2463] = {.lex_state = 13}, + [2464] = {.lex_state = 13}, + [2465] = {.lex_state = 76}, + [2466] = {.lex_state = 76, .external_lex_state = 13}, + [2467] = {.lex_state = 76}, + [2468] = {.lex_state = 13}, + [2469] = {.lex_state = 13}, + [2470] = {.lex_state = 76}, + [2471] = {.lex_state = 13}, + [2472] = {.lex_state = 76}, + [2473] = {.lex_state = 76}, + [2474] = {.lex_state = 13}, + [2475] = {.lex_state = 13}, + [2476] = {.lex_state = 13}, + [2477] = {.lex_state = 76}, + [2478] = {.lex_state = 76}, + [2479] = {.lex_state = 76}, + [2480] = {.lex_state = 76}, + [2481] = {.lex_state = 76}, + [2482] = {.lex_state = 13}, + [2483] = {.lex_state = 76}, + [2484] = {.lex_state = 76}, + [2485] = {.lex_state = 76}, + [2486] = {.lex_state = 76}, + [2487] = {.lex_state = 13}, + [2488] = {.lex_state = 13}, + [2489] = {.lex_state = 76}, + [2490] = {.lex_state = 76}, + [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 = 13}, + [2498] = {.lex_state = 76}, + [2499] = {.lex_state = 13}, + [2500] = {.lex_state = 13}, + [2501] = {.lex_state = 13}, + [2502] = {.lex_state = 76}, + [2503] = {.lex_state = 76}, + [2504] = {.lex_state = 76}, + [2505] = {.lex_state = 76}, + [2506] = {.lex_state = 13}, + [2507] = {.lex_state = 76}, + [2508] = {.lex_state = 76}, + [2509] = {.lex_state = 13}, + [2510] = {.lex_state = 13}, + [2511] = {.lex_state = 13}, + [2512] = {.lex_state = 76}, + [2513] = {.lex_state = 76}, + [2514] = {.lex_state = 76}, + [2515] = {.lex_state = 13}, + [2516] = {.lex_state = 76}, + [2517] = {.lex_state = 76}, + [2518] = {.lex_state = 76}, + [2519] = {.lex_state = 13}, + [2520] = {.lex_state = 76}, + [2521] = {.lex_state = 76}, + [2522] = {.lex_state = 76}, + [2523] = {.lex_state = 13}, + [2524] = {.lex_state = 13}, + [2525] = {.lex_state = 76}, + [2526] = {.lex_state = 13}, + [2527] = {.lex_state = 76}, + [2528] = {.lex_state = 76}, + [2529] = {.lex_state = 76}, + [2530] = {.lex_state = 13}, + [2531] = {.lex_state = 13}, + [2532] = {.lex_state = 13}, + [2533] = {.lex_state = 13}, + [2534] = {.lex_state = 13}, + [2535] = {.lex_state = 76}, + [2536] = {.lex_state = 13}, + [2537] = {.lex_state = 13}, + [2538] = {.lex_state = 13}, + [2539] = {.lex_state = 13}, + [2540] = {.lex_state = 76}, + [2541] = {.lex_state = 76}, + [2542] = {.lex_state = 76, .external_lex_state = 12}, + [2543] = {.lex_state = 13}, + [2544] = {.lex_state = 13}, + [2545] = {.lex_state = 76}, + [2546] = {.lex_state = 13}, + [2547] = {.lex_state = 13}, + [2548] = {.lex_state = 76}, + [2549] = {.lex_state = 76}, + [2550] = {.lex_state = 13}, + [2551] = {.lex_state = 76}, + [2552] = {.lex_state = 13}, + [2553] = {.lex_state = 76, .external_lex_state = 12}, + [2554] = {.lex_state = 76, .external_lex_state = 12}, + [2555] = {.lex_state = 13}, + [2556] = {.lex_state = 13}, + [2557] = {.lex_state = 76}, + [2558] = {.lex_state = 13}, + [2559] = {.lex_state = 76}, + [2560] = {.lex_state = 76}, + [2561] = {.lex_state = 76}, + [2562] = {.lex_state = 13}, + [2563] = {.lex_state = 76}, + [2564] = {.lex_state = 76}, + [2565] = {.lex_state = 13}, + [2566] = {.lex_state = 76}, + [2567] = {.lex_state = 76}, + [2568] = {.lex_state = 13}, + [2569] = {.lex_state = 76}, + [2570] = {.lex_state = 13}, + [2571] = {.lex_state = 13}, + [2572] = {.lex_state = 13}, + [2573] = {.lex_state = 76}, + [2574] = {.lex_state = 76}, + [2575] = {.lex_state = 13}, + [2576] = {.lex_state = 76}, + [2577] = {.lex_state = 76}, + [2578] = {.lex_state = 13}, + [2579] = {.lex_state = 76}, + [2580] = {.lex_state = 76}, + [2581] = {.lex_state = 76}, + [2582] = {.lex_state = 76}, + [2583] = {.lex_state = 76}, + [2584] = {.lex_state = 76}, + [2585] = {.lex_state = 13}, + [2586] = {.lex_state = 76}, + [2587] = {.lex_state = 76}, + [2588] = {.lex_state = 76}, + [2589] = {.lex_state = 76}, + [2590] = {.lex_state = 76}, + [2591] = {.lex_state = 76}, + [2592] = {.lex_state = 76}, + [2593] = {.lex_state = 76}, + [2594] = {.lex_state = 76}, + [2595] = {.lex_state = 76}, + [2596] = {.lex_state = 13}, + [2597] = {.lex_state = 13}, + [2598] = {.lex_state = 76}, + [2599] = {.lex_state = 76}, + [2600] = {.lex_state = 76}, + [2601] = {.lex_state = 76}, + [2602] = {.lex_state = 76}, + [2603] = {.lex_state = 76}, + [2604] = {.lex_state = 76}, + [2605] = {.lex_state = 76}, + [2606] = {.lex_state = 76}, + [2607] = {.lex_state = 13}, + [2608] = {.lex_state = 13}, + [2609] = {.lex_state = 13}, + [2610] = {.lex_state = 76}, + [2611] = {.lex_state = 76}, + [2612] = {.lex_state = 13}, + [2613] = {.lex_state = 76}, + [2614] = {.lex_state = 76}, + [2615] = {.lex_state = 76}, + [2616] = {.lex_state = 76}, + [2617] = {.lex_state = 13}, + [2618] = {.lex_state = 76}, + [2619] = {.lex_state = 76}, + [2620] = {.lex_state = 76}, + [2621] = {.lex_state = 76}, + [2622] = {.lex_state = 76}, + [2623] = {.lex_state = 76}, + [2624] = {.lex_state = 13}, + [2625] = {.lex_state = 76, .external_lex_state = 13}, + [2626] = {.lex_state = 76, .external_lex_state = 13}, + [2627] = {.lex_state = 76}, + [2628] = {.lex_state = 76}, + [2629] = {.lex_state = 76}, + [2630] = {.lex_state = 76}, + [2631] = {.lex_state = 76, .external_lex_state = 12}, + [2632] = {.lex_state = 76}, + [2633] = {.lex_state = 76}, + [2634] = {.lex_state = 13}, + [2635] = {.lex_state = 13}, + [2636] = {.lex_state = 76}, + [2637] = {.lex_state = 76}, + [2638] = {.lex_state = 13}, + [2639] = {.lex_state = 76}, + [2640] = {.lex_state = 13}, + [2641] = {.lex_state = 76}, + [2642] = {.lex_state = 76}, + [2643] = {.lex_state = 76}, + [2644] = {.lex_state = 76}, + [2645] = {.lex_state = 76}, + [2646] = {.lex_state = 76}, + [2647] = {.lex_state = 76}, + [2648] = {.lex_state = 76}, + [2649] = {.lex_state = 76}, + [2650] = {.lex_state = 76}, + [2651] = {.lex_state = 13}, [2652] = {(TSStateId)(-1)}, [2653] = {(TSStateId)(-1)}, }; @@ -27717,7 +27760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(549), [anon_sym_DOT] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(559), - [anon_sym_SLASH] = ACTIONS(559), + [anon_sym_SLASH] = ACTIONS(549), [anon_sym_PERCENT] = ACTIONS(549), [aux_sym_include_expression_token1] = ACTIONS(603), [aux_sym_include_once_expression_token1] = ACTIONS(605), @@ -27860,7 +27903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(549), [anon_sym_DOT] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(559), - [anon_sym_SLASH] = ACTIONS(559), + [anon_sym_SLASH] = ACTIONS(549), [anon_sym_PERCENT] = ACTIONS(549), [aux_sym_include_expression_token1] = ACTIONS(633), [aux_sym_include_once_expression_token1] = ACTIONS(635), @@ -28001,7 +28044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(549), [anon_sym_DOT] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(559), - [anon_sym_SLASH] = ACTIONS(559), + [anon_sym_SLASH] = ACTIONS(549), [anon_sym_PERCENT] = ACTIONS(549), [aux_sym_include_expression_token1] = ACTIONS(310), [aux_sym_include_once_expression_token1] = ACTIONS(312), @@ -28143,7 +28186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(549), [anon_sym_DOT] = ACTIONS(559), [anon_sym_STAR] = ACTIONS(559), - [anon_sym_SLASH] = ACTIONS(559), + [anon_sym_SLASH] = ACTIONS(549), [anon_sym_PERCENT] = ACTIONS(549), [aux_sym_include_expression_token1] = ACTIONS(675), [aux_sym_include_once_expression_token1] = ACTIONS(677), @@ -76640,235 +76683,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1514), [anon_sym_SLASH] = ACTIONS(1514), [anon_sym_PERCENT] = ACTIONS(1514), - [sym_comment] = ACTIONS(1516), + [sym_comment] = ACTIONS(5), }, [572] = { [sym_text_interpolation] = STATE(572), [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_COMMA] = ACTIONS(1518), - [anon_sym_EQ] = ACTIONS(1520), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [aux_sym_base_clause_token1] = ACTIONS(1518), - [anon_sym_COLON] = ACTIONS(1520), - [aux_sym_class_interface_clause_token1] = ACTIONS(1518), - [anon_sym_EQ_GT] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_STAR_STAR] = ACTIONS(1520), - [anon_sym_COLON_COLON] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1518), - [anon_sym_STAR_EQ] = ACTIONS(1518), - [anon_sym_SLASH_EQ] = ACTIONS(1518), - [anon_sym_PERCENT_EQ] = ACTIONS(1518), - [anon_sym_PLUS_EQ] = ACTIONS(1518), - [anon_sym_DASH_EQ] = ACTIONS(1518), - [anon_sym_DOT_EQ] = ACTIONS(1518), - [anon_sym_LT_LT_EQ] = ACTIONS(1518), - [anon_sym_GT_GT_EQ] = ACTIONS(1518), - [anon_sym_AMP_EQ] = ACTIONS(1518), - [anon_sym_CARET_EQ] = ACTIONS(1518), - [anon_sym_PIPE_EQ] = ACTIONS(1518), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1518), - [anon_sym_DASH_GT] = ACTIONS(1518), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_RBRACK] = ACTIONS(1518), - [aux_sym_binary_expression_token1] = ACTIONS(1518), - [anon_sym_QMARK_QMARK] = ACTIONS(1520), - [aux_sym_binary_expression_token2] = ACTIONS(1518), - [aux_sym_binary_expression_token3] = ACTIONS(1518), - [aux_sym_binary_expression_token4] = ACTIONS(1518), - [anon_sym_PIPE_PIPE] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1520), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_LT_GT] = ACTIONS(1518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1518), - [anon_sym_LT_EQ_GT] = ACTIONS(1518), - [anon_sym_LT_LT] = ACTIONS(1520), - [anon_sym_GT_GT] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_PERCENT] = ACTIONS(1520), - [sym_comment] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_COMMA] = ACTIONS(1516), + [anon_sym_EQ] = ACTIONS(1518), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [aux_sym_base_clause_token1] = ACTIONS(1516), + [anon_sym_COLON] = ACTIONS(1518), + [aux_sym_class_interface_clause_token1] = ACTIONS(1516), + [anon_sym_EQ_GT] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_QMARK] = ACTIONS(1518), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_STAR_STAR] = ACTIONS(1518), + [anon_sym_COLON_COLON] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1516), + [anon_sym_STAR_EQ] = ACTIONS(1516), + [anon_sym_SLASH_EQ] = ACTIONS(1516), + [anon_sym_PERCENT_EQ] = ACTIONS(1516), + [anon_sym_PLUS_EQ] = ACTIONS(1516), + [anon_sym_DASH_EQ] = ACTIONS(1516), + [anon_sym_DOT_EQ] = ACTIONS(1516), + [anon_sym_LT_LT_EQ] = ACTIONS(1516), + [anon_sym_GT_GT_EQ] = ACTIONS(1516), + [anon_sym_AMP_EQ] = ACTIONS(1516), + [anon_sym_CARET_EQ] = ACTIONS(1516), + [anon_sym_PIPE_EQ] = ACTIONS(1516), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1516), + [anon_sym_DASH_GT] = ACTIONS(1516), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_RBRACK] = ACTIONS(1516), + [aux_sym_binary_expression_token1] = ACTIONS(1516), + [anon_sym_QMARK_QMARK] = ACTIONS(1518), + [aux_sym_binary_expression_token2] = ACTIONS(1516), + [aux_sym_binary_expression_token3] = ACTIONS(1516), + [aux_sym_binary_expression_token4] = ACTIONS(1516), + [anon_sym_PIPE_PIPE] = ACTIONS(1516), + [anon_sym_AMP_AMP] = ACTIONS(1516), + [anon_sym_CARET] = ACTIONS(1518), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_LT_GT] = ACTIONS(1516), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1516), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_LT_EQ] = ACTIONS(1518), + [anon_sym_GT_EQ] = ACTIONS(1516), + [anon_sym_LT_EQ_GT] = ACTIONS(1516), + [anon_sym_LT_LT] = ACTIONS(1518), + [anon_sym_GT_GT] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym_PERCENT] = ACTIONS(1518), + [sym_comment] = ACTIONS(5), }, [573] = { [sym_text_interpolation] = STATE(573), [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(1522), - [anon_sym_EQ] = ACTIONS(1524), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1522), - [aux_sym_base_clause_token1] = ACTIONS(1522), - [anon_sym_COLON] = ACTIONS(1524), - [aux_sym_class_interface_clause_token1] = ACTIONS(1522), - [anon_sym_EQ_GT] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1522), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_STAR_STAR] = ACTIONS(1524), - [anon_sym_COLON_COLON] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1522), - [anon_sym_STAR_EQ] = ACTIONS(1522), - [anon_sym_SLASH_EQ] = ACTIONS(1522), - [anon_sym_PERCENT_EQ] = ACTIONS(1522), - [anon_sym_PLUS_EQ] = ACTIONS(1522), - [anon_sym_DASH_EQ] = ACTIONS(1522), - [anon_sym_DOT_EQ] = ACTIONS(1522), - [anon_sym_LT_LT_EQ] = ACTIONS(1522), - [anon_sym_GT_GT_EQ] = ACTIONS(1522), - [anon_sym_AMP_EQ] = ACTIONS(1522), - [anon_sym_CARET_EQ] = ACTIONS(1522), - [anon_sym_PIPE_EQ] = ACTIONS(1522), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1522), - [anon_sym_DASH_GT] = ACTIONS(1522), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1522), - [anon_sym_RBRACK] = ACTIONS(1522), - [aux_sym_binary_expression_token1] = ACTIONS(1522), - [anon_sym_QMARK_QMARK] = ACTIONS(1524), - [aux_sym_binary_expression_token2] = ACTIONS(1522), - [aux_sym_binary_expression_token3] = ACTIONS(1522), - [aux_sym_binary_expression_token4] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1522), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1524), - [anon_sym_EQ_EQ] = ACTIONS(1524), - [anon_sym_BANG_EQ] = ACTIONS(1524), - [anon_sym_LT_GT] = ACTIONS(1522), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1522), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1524), - [anon_sym_GT_EQ] = ACTIONS(1522), - [anon_sym_LT_EQ_GT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1524), - [anon_sym_GT_GT] = ACTIONS(1524), - [anon_sym_DOT] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_PERCENT] = ACTIONS(1524), - [sym_comment] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(1520), + [anon_sym_EQ] = ACTIONS(1522), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [aux_sym_base_clause_token1] = ACTIONS(1520), + [anon_sym_COLON] = ACTIONS(1522), + [aux_sym_class_interface_clause_token1] = ACTIONS(1520), + [anon_sym_EQ_GT] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_STAR_STAR] = ACTIONS(1522), + [anon_sym_COLON_COLON] = ACTIONS(1520), + [anon_sym_PLUS_PLUS] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1520), + [anon_sym_STAR_EQ] = ACTIONS(1520), + [anon_sym_SLASH_EQ] = ACTIONS(1520), + [anon_sym_PERCENT_EQ] = ACTIONS(1520), + [anon_sym_PLUS_EQ] = ACTIONS(1520), + [anon_sym_DASH_EQ] = ACTIONS(1520), + [anon_sym_DOT_EQ] = ACTIONS(1520), + [anon_sym_LT_LT_EQ] = ACTIONS(1520), + [anon_sym_GT_GT_EQ] = ACTIONS(1520), + [anon_sym_AMP_EQ] = ACTIONS(1520), + [anon_sym_CARET_EQ] = ACTIONS(1520), + [anon_sym_PIPE_EQ] = ACTIONS(1520), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1520), + [anon_sym_DASH_GT] = ACTIONS(1520), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_RBRACK] = ACTIONS(1520), + [aux_sym_binary_expression_token1] = ACTIONS(1520), + [anon_sym_QMARK_QMARK] = ACTIONS(1522), + [aux_sym_binary_expression_token2] = ACTIONS(1520), + [aux_sym_binary_expression_token3] = ACTIONS(1520), + [aux_sym_binary_expression_token4] = ACTIONS(1520), + [anon_sym_PIPE_PIPE] = ACTIONS(1520), + [anon_sym_AMP_AMP] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1522), + [anon_sym_EQ_EQ] = ACTIONS(1522), + [anon_sym_BANG_EQ] = ACTIONS(1522), + [anon_sym_LT_GT] = ACTIONS(1520), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1520), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1522), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_EQ] = ACTIONS(1520), + [anon_sym_LT_EQ_GT] = ACTIONS(1520), + [anon_sym_LT_LT] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1522), + [anon_sym_PERCENT] = ACTIONS(1522), + [sym_comment] = ACTIONS(5), }, [574] = { [sym_text_interpolation] = STATE(574), [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1526), - [anon_sym_EQ] = ACTIONS(1528), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1526), - [aux_sym_base_clause_token1] = ACTIONS(1526), - [anon_sym_COLON] = ACTIONS(1528), - [aux_sym_class_interface_clause_token1] = ACTIONS(1526), - [anon_sym_EQ_GT] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym_QMARK] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1526), - [anon_sym_STAR_EQ] = ACTIONS(1526), - [anon_sym_SLASH_EQ] = ACTIONS(1526), - [anon_sym_PERCENT_EQ] = ACTIONS(1526), - [anon_sym_PLUS_EQ] = ACTIONS(1526), - [anon_sym_DASH_EQ] = ACTIONS(1526), - [anon_sym_DOT_EQ] = ACTIONS(1526), - [anon_sym_LT_LT_EQ] = ACTIONS(1526), - [anon_sym_GT_GT_EQ] = ACTIONS(1526), - [anon_sym_AMP_EQ] = ACTIONS(1526), - [anon_sym_CARET_EQ] = ACTIONS(1526), - [anon_sym_PIPE_EQ] = ACTIONS(1526), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1526), - [anon_sym_DASH_GT] = ACTIONS(1526), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1526), - [anon_sym_RBRACK] = ACTIONS(1526), - [aux_sym_binary_expression_token1] = ACTIONS(1526), - [anon_sym_QMARK_QMARK] = ACTIONS(1528), - [aux_sym_binary_expression_token2] = ACTIONS(1526), - [aux_sym_binary_expression_token3] = ACTIONS(1526), - [aux_sym_binary_expression_token4] = ACTIONS(1526), - [anon_sym_PIPE_PIPE] = ACTIONS(1526), - [anon_sym_AMP_AMP] = ACTIONS(1526), - [anon_sym_CARET] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT_GT] = ACTIONS(1526), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1526), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1526), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1526), - [anon_sym_LT_EQ_GT] = ACTIONS(1526), - [anon_sym_LT_LT] = ACTIONS(1528), - [anon_sym_GT_GT] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_SLASH] = ACTIONS(1528), - [anon_sym_PERCENT] = ACTIONS(1528), - [sym_comment] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_COMMA] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(1526), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [aux_sym_base_clause_token1] = ACTIONS(1524), + [anon_sym_COLON] = ACTIONS(1526), + [aux_sym_class_interface_clause_token1] = ACTIONS(1524), + [anon_sym_EQ_GT] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(1526), + [anon_sym_PIPE] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_STAR_STAR] = ACTIONS(1526), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1524), + [anon_sym_STAR_EQ] = ACTIONS(1524), + [anon_sym_SLASH_EQ] = ACTIONS(1524), + [anon_sym_PERCENT_EQ] = ACTIONS(1524), + [anon_sym_PLUS_EQ] = ACTIONS(1524), + [anon_sym_DASH_EQ] = ACTIONS(1524), + [anon_sym_DOT_EQ] = ACTIONS(1524), + [anon_sym_LT_LT_EQ] = ACTIONS(1524), + [anon_sym_GT_GT_EQ] = ACTIONS(1524), + [anon_sym_AMP_EQ] = ACTIONS(1524), + [anon_sym_CARET_EQ] = ACTIONS(1524), + [anon_sym_PIPE_EQ] = ACTIONS(1524), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1524), + [anon_sym_DASH_GT] = ACTIONS(1524), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_RBRACK] = ACTIONS(1524), + [aux_sym_binary_expression_token1] = ACTIONS(1524), + [anon_sym_QMARK_QMARK] = ACTIONS(1526), + [aux_sym_binary_expression_token2] = ACTIONS(1524), + [aux_sym_binary_expression_token3] = ACTIONS(1524), + [aux_sym_binary_expression_token4] = ACTIONS(1524), + [anon_sym_PIPE_PIPE] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1524), + [anon_sym_CARET] = ACTIONS(1526), + [anon_sym_EQ_EQ] = ACTIONS(1526), + [anon_sym_BANG_EQ] = ACTIONS(1526), + [anon_sym_LT_GT] = ACTIONS(1524), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1524), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_LT_EQ] = ACTIONS(1526), + [anon_sym_GT_EQ] = ACTIONS(1524), + [anon_sym_LT_EQ_GT] = ACTIONS(1524), + [anon_sym_LT_LT] = ACTIONS(1526), + [anon_sym_GT_GT] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1526), + [anon_sym_PERCENT] = ACTIONS(1526), + [sym_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 11, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, + ACTIONS(1532), 1, anon_sym_EQ, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(575), 1, sym_text_interpolation, STATE(590), 1, sym_arguments, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1542), 13, + ACTIONS(1540), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -76882,7 +76925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 18, + ACTIONS(1528), 18, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -76901,7 +76944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 20, + ACTIONS(1530), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -76923,17 +76966,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [87] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(576), 1, sym_text_interpolation, STATE(586), 1, sym_arguments, - ACTIONS(1546), 21, + ACTIONS(1544), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -76955,7 +76998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1544), 38, + ACTIONS(1542), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -76995,17 +77038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [166] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(577), 1, sym_text_interpolation, STATE(587), 1, sym_arguments, - ACTIONS(1550), 21, + ACTIONS(1548), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77027,7 +77070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1548), 38, + ACTIONS(1546), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77067,17 +77110,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [245] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(578), 1, sym_text_interpolation, STATE(582), 1, sym_arguments, - ACTIONS(1554), 21, + ACTIONS(1552), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77099,7 +77142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1552), 38, + ACTIONS(1550), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77139,17 +77182,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [324] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(579), 1, sym_text_interpolation, STATE(584), 1, sym_arguments, - ACTIONS(1558), 21, + ACTIONS(1556), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77171,7 +77214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1556), 38, + ACTIONS(1554), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77211,17 +77254,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, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(580), 1, sym_text_interpolation, STATE(581), 1, sym_arguments, - ACTIONS(1562), 21, + ACTIONS(1560), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77243,7 +77286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1560), 38, + ACTIONS(1558), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77283,13 +77326,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, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(581), 1, sym_text_interpolation, - ACTIONS(1566), 21, + ACTIONS(1564), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77311,7 +77354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1564), 39, + ACTIONS(1562), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77352,13 +77395,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, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(582), 1, sym_text_interpolation, - ACTIONS(1570), 21, + ACTIONS(1568), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77380,7 +77423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1568), 39, + ACTIONS(1566), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77421,13 +77464,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, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(583), 1, sym_text_interpolation, - ACTIONS(1574), 21, + ACTIONS(1572), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77449,7 +77492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1572), 39, + ACTIONS(1570), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77490,13 +77533,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, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(584), 1, sym_text_interpolation, - ACTIONS(1578), 21, + ACTIONS(1576), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77518,7 +77561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1576), 39, + ACTIONS(1574), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77559,13 +77602,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, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(585), 1, sym_text_interpolation, - ACTIONS(1582), 21, + ACTIONS(1580), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77587,7 +77630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1580), 39, + ACTIONS(1578), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77628,13 +77671,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, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(586), 1, sym_text_interpolation, - ACTIONS(1586), 21, + ACTIONS(1584), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77656,7 +77699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1584), 39, + ACTIONS(1582), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77697,13 +77740,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, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(587), 1, sym_text_interpolation, - ACTIONS(1590), 21, + ACTIONS(1588), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77725,7 +77768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1588), 39, + ACTIONS(1586), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77766,13 +77809,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, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(588), 1, sym_text_interpolation, - ACTIONS(1594), 21, + ACTIONS(1592), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77794,7 +77837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1592), 39, + ACTIONS(1590), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77835,13 +77878,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, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(589), 1, sym_text_interpolation, - ACTIONS(1598), 21, + ACTIONS(1596), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77863,7 +77906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1596), 39, + ACTIONS(1594), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77904,13 +77947,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, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(590), 1, sym_text_interpolation, - ACTIONS(1602), 21, + ACTIONS(1600), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77932,7 +77975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1600), 39, + ACTIONS(1598), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77973,13 +78016,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, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(591), 1, sym_text_interpolation, - ACTIONS(1606), 21, + ACTIONS(1604), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78001,7 +78044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1604), 39, + ACTIONS(1602), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78042,13 +78085,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, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(592), 1, sym_text_interpolation, - ACTIONS(1610), 21, + ACTIONS(1608), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78070,7 +78113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1608), 39, + ACTIONS(1606), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78111,13 +78154,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, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(593), 1, sym_text_interpolation, - ACTIONS(1614), 21, + ACTIONS(1612), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78139,7 +78182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 39, + ACTIONS(1610), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78180,28 +78223,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1444] = 11, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(1614), 1, anon_sym_EQ, STATE(590), 1, sym_arguments, STATE(594), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1618), 13, + ACTIONS(1616), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78215,7 +78258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 16, + ACTIONS(1528), 16, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78232,7 +78275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 20, + ACTIONS(1530), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -78254,24 +78297,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [1529] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, + ACTIONS(1532), 1, anon_sym_EQ, STATE(595), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1542), 13, + ACTIONS(1540), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78285,7 +78328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 18, + ACTIONS(1528), 18, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78304,7 +78347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 20, + ACTIONS(1530), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -78326,28 +78369,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, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1620), 1, + ACTIONS(1618), 1, anon_sym_EQ, STATE(590), 1, sym_arguments, STATE(596), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1618), 13, + ACTIONS(1616), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78361,7 +78404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 16, + ACTIONS(1528), 16, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78378,7 +78421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 20, + ACTIONS(1530), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -78400,28 +78443,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [1695] = 11, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1620), 1, anon_sym_EQ, STATE(590), 1, sym_arguments, STATE(597), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1624), 13, + ACTIONS(1622), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78435,7 +78478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 16, + ACTIONS(1528), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -78452,7 +78495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78473,28 +78516,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [1779] = 11, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1626), 1, + ACTIONS(1624), 1, anon_sym_EQ, STATE(590), 1, sym_arguments, STATE(598), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1624), 13, + ACTIONS(1622), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78508,7 +78551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 16, + ACTIONS(1528), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -78525,7 +78568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78546,24 +78589,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [1863] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1620), 1, + ACTIONS(1618), 1, anon_sym_EQ, STATE(599), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1618), 13, + ACTIONS(1616), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78577,7 +78620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 16, + ACTIONS(1528), 16, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78594,7 +78637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 20, + ACTIONS(1530), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -78616,17 +78659,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [1942] = 14, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(1614), 1, anon_sym_EQ, - ACTIONS(1628), 1, + ACTIONS(1626), 1, anon_sym_RPAREN, STATE(590), 1, sym_arguments, @@ -78634,16 +78677,16 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1986), 1, aux_sym__list_destructing_repeat1, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1530), 12, + ACTIONS(1528), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -78656,7 +78699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1618), 13, + ACTIONS(1616), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78670,7 +78713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78691,28 +78734,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2031] = 11, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, + ACTIONS(1532), 1, anon_sym_EQ, - ACTIONS(1630), 1, + ACTIONS(1628), 1, anon_sym_LPAREN, STATE(601), 1, sym_text_interpolation, STATE(622), 1, sym_arguments, - ACTIONS(1632), 2, + ACTIONS(1630), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1542), 13, + ACTIONS(1540), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78726,7 +78769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 15, + ACTIONS(1528), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78742,7 +78785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78763,24 +78806,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2114] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1616), 1, + ACTIONS(1614), 1, anon_sym_EQ, STATE(602), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1618), 13, + ACTIONS(1616), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78794,7 +78837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 16, + ACTIONS(1528), 16, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78811,7 +78854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 20, + ACTIONS(1530), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -78833,28 +78876,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2193] = 11, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1630), 1, + ACTIONS(1628), 1, anon_sym_LPAREN, - ACTIONS(1634), 1, + ACTIONS(1632), 1, anon_sym_EQ, STATE(603), 1, sym_text_interpolation, STATE(622), 1, sym_arguments, - ACTIONS(1632), 2, + ACTIONS(1630), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1636), 13, + ACTIONS(1634), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78868,7 +78911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 15, + ACTIONS(1528), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78884,7 +78927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78905,17 +78948,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2276] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1630), 1, + ACTIONS(1628), 1, anon_sym_LPAREN, STATE(604), 1, sym_text_interpolation, STATE(634), 1, sym_arguments, - ACTIONS(1554), 20, + ACTIONS(1552), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -78936,7 +78979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1552), 35, + ACTIONS(1550), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78973,17 +79016,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2351] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1630), 1, + ACTIONS(1628), 1, anon_sym_LPAREN, STATE(605), 1, sym_text_interpolation, STATE(619), 1, sym_arguments, - ACTIONS(1562), 20, + ACTIONS(1560), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79004,7 +79047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1560), 35, + ACTIONS(1558), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79041,28 +79084,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2426] = 11, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1630), 1, + ACTIONS(1628), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1636), 1, anon_sym_EQ, STATE(606), 1, sym_text_interpolation, STATE(622), 1, sym_arguments, - ACTIONS(1632), 2, + ACTIONS(1630), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1636), 13, + ACTIONS(1634), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79076,7 +79119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 15, + ACTIONS(1528), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79092,7 +79135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -79113,17 +79156,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2509] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1630), 1, + ACTIONS(1628), 1, anon_sym_LPAREN, STATE(607), 1, sym_text_interpolation, STATE(612), 1, sym_arguments, - ACTIONS(1558), 20, + ACTIONS(1556), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79144,7 +79187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1556), 35, + ACTIONS(1554), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79181,17 +79224,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2584] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1630), 1, + ACTIONS(1628), 1, anon_sym_LPAREN, STATE(608), 1, sym_text_interpolation, STATE(633), 1, sym_arguments, - ACTIONS(1546), 20, + ACTIONS(1544), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79212,7 +79255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1544), 35, + ACTIONS(1542), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79249,17 +79292,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2659] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1630), 1, + ACTIONS(1628), 1, anon_sym_LPAREN, STATE(609), 1, sym_text_interpolation, STATE(624), 1, sym_arguments, - ACTIONS(1550), 20, + ACTIONS(1548), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79280,7 +79323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1548), 35, + ACTIONS(1546), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79317,28 +79360,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2734] = 11, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, + ACTIONS(1532), 1, anon_sym_EQ, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(590), 1, sym_arguments, STATE(610), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1530), 12, + ACTIONS(1528), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -79351,7 +79394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1542), 16, + ACTIONS(1540), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_STAR_STAR_EQ, @@ -79368,7 +79411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_RBRACK, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -79389,13 +79432,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2817] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(611), 1, sym_text_interpolation, - ACTIONS(1598), 20, + ACTIONS(1596), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79416,7 +79459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1596), 36, + ACTIONS(1594), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79454,13 +79497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2887] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(612), 1, sym_text_interpolation, - ACTIONS(1578), 20, + ACTIONS(1576), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79481,7 +79524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1576), 36, + ACTIONS(1574), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79519,13 +79562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2957] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(613), 1, sym_text_interpolation, - ACTIONS(1614), 20, + ACTIONS(1612), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79546,7 +79589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 36, + ACTIONS(1610), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79584,28 +79627,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3027] = 11, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1640), 1, + ACTIONS(1638), 1, anon_sym_EQ, STATE(590), 1, sym_arguments, STATE(614), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1642), 13, + ACTIONS(1640), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79619,7 +79662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 14, + ACTIONS(1528), 14, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -79634,7 +79677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -79655,13 +79698,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [3109] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(615), 1, sym_text_interpolation, - ACTIONS(1594), 20, + ACTIONS(1592), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79682,7 +79725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1592), 36, + ACTIONS(1590), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79720,13 +79763,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3179] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(616), 1, sym_text_interpolation, - ACTIONS(1610), 20, + ACTIONS(1608), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79747,7 +79790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1608), 36, + ACTIONS(1606), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79785,24 +79828,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3249] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1626), 1, + ACTIONS(1624), 1, anon_sym_EQ, STATE(617), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1624), 13, + ACTIONS(1622), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79816,7 +79859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 16, + ACTIONS(1528), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79833,7 +79876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -79854,13 +79897,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [3327] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(618), 1, sym_text_interpolation, - ACTIONS(1606), 20, + ACTIONS(1604), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79881,7 +79924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1604), 36, + ACTIONS(1602), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79919,13 +79962,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3397] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(619), 1, sym_text_interpolation, - ACTIONS(1566), 20, + ACTIONS(1564), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79946,7 +79989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1564), 36, + ACTIONS(1562), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79984,13 +80027,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3467] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(620), 1, sym_text_interpolation, - ACTIONS(1524), 20, + ACTIONS(1522), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80011,7 +80054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1522), 36, + ACTIONS(1520), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80049,13 +80092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3537] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(621), 1, sym_text_interpolation, - ACTIONS(1520), 20, + ACTIONS(1518), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80076,7 +80119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1518), 36, + ACTIONS(1516), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80114,13 +80157,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3607] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(622), 1, sym_text_interpolation, - ACTIONS(1602), 20, + ACTIONS(1600), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80141,7 +80184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1600), 36, + ACTIONS(1598), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80179,13 +80222,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3677] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(623), 1, sym_text_interpolation, - ACTIONS(1582), 20, + ACTIONS(1580), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80206,7 +80249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1580), 36, + ACTIONS(1578), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80244,13 +80287,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3747] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(624), 1, sym_text_interpolation, - ACTIONS(1590), 20, + ACTIONS(1588), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80271,7 +80314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1588), 36, + ACTIONS(1586), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80309,13 +80352,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3817] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(625), 1, sym_text_interpolation, - ACTIONS(1528), 20, + ACTIONS(1526), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80336,7 +80379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1526), 36, + ACTIONS(1524), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80374,31 +80417,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3887] = 12, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1626), 1, + ACTIONS(1624), 1, anon_sym_EQ, STATE(590), 1, sym_arguments, STATE(626), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1644), 2, + ACTIONS(1642), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1530), 12, + ACTIONS(1528), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80411,7 +80454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1624), 13, + ACTIONS(1622), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80425,7 +80468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80446,31 +80489,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [3971] = 12, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(1614), 1, anon_sym_EQ, STATE(590), 1, sym_arguments, STATE(627), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1647), 2, + ACTIONS(1645), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1530), 12, + ACTIONS(1528), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80483,7 +80526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1618), 13, + ACTIONS(1616), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80497,7 +80540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80518,10 +80561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4055] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(628), 1, sym_text_interpolation, ACTIONS(1514), 20, @@ -80583,28 +80626,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [4125] = 11, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1649), 1, + ACTIONS(1647), 1, anon_sym_EQ, STATE(590), 1, sym_arguments, STATE(629), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1642), 13, + ACTIONS(1640), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80618,7 +80661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 14, + ACTIONS(1528), 14, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -80633,7 +80676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80654,13 +80697,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4207] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(630), 1, sym_text_interpolation, - ACTIONS(1574), 20, + ACTIONS(1572), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80681,7 +80724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1572), 36, + ACTIONS(1570), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80719,31 +80762,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [4277] = 12, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(1614), 1, anon_sym_EQ, STATE(590), 1, sym_arguments, STATE(631), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1651), 2, + ACTIONS(1649), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1530), 12, + ACTIONS(1528), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80756,7 +80799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1618), 13, + ACTIONS(1616), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80770,7 +80813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80791,24 +80834,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4361] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1622), 1, + ACTIONS(1620), 1, anon_sym_EQ, STATE(632), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1624), 13, + ACTIONS(1622), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80822,7 +80865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 16, + ACTIONS(1528), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -80839,7 +80882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80860,13 +80903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4439] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(633), 1, sym_text_interpolation, - ACTIONS(1586), 20, + ACTIONS(1584), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80887,7 +80930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1584), 36, + ACTIONS(1582), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80925,13 +80968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [4509] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(634), 1, sym_text_interpolation, - ACTIONS(1570), 20, + ACTIONS(1568), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80952,7 +80995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1568), 36, + ACTIONS(1566), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80990,24 +81033,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [4579] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, + ACTIONS(1532), 1, anon_sym_EQ, STATE(635), 1, sym_text_interpolation, - ACTIONS(1632), 2, + ACTIONS(1630), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1542), 13, + ACTIONS(1540), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81021,7 +81064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 15, + ACTIONS(1528), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81037,7 +81080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81058,24 +81101,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4656] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1638), 1, + ACTIONS(1636), 1, anon_sym_EQ, STATE(636), 1, sym_text_interpolation, - ACTIONS(1632), 2, + ACTIONS(1630), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1636), 13, + ACTIONS(1634), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81089,7 +81132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 15, + ACTIONS(1528), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81105,7 +81148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81126,30 +81169,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4733] = 12, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1616), 1, + ACTIONS(1614), 1, anon_sym_EQ, - ACTIONS(1628), 1, + ACTIONS(1626), 1, anon_sym_RPAREN, STATE(637), 1, sym_text_interpolation, STATE(1986), 1, aux_sym__list_destructing_repeat1, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1530), 12, + ACTIONS(1528), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -81162,7 +81205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1618), 13, + ACTIONS(1616), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81176,7 +81219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81197,24 +81240,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4816] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1634), 1, + ACTIONS(1632), 1, anon_sym_EQ, STATE(638), 1, sym_text_interpolation, - ACTIONS(1632), 2, + ACTIONS(1630), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1636), 13, + ACTIONS(1634), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81228,7 +81271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 15, + ACTIONS(1528), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81244,7 +81287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81265,24 +81308,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4893] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, + ACTIONS(1532), 1, anon_sym_EQ, STATE(639), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1530), 12, + ACTIONS(1528), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -81295,7 +81338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1542), 16, + ACTIONS(1540), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_STAR_STAR_EQ, @@ -81312,7 +81355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_RBRACK, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81333,31 +81376,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4970] = 12, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1626), 1, + ACTIONS(1624), 1, anon_sym_EQ, STATE(590), 1, sym_arguments, STATE(640), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1653), 2, + ACTIONS(1651), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1530), 11, + ACTIONS(1528), 11, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81369,7 +81412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1624), 13, + ACTIONS(1622), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81383,7 +81426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81404,27 +81447,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [5053] = 10, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1616), 1, + ACTIONS(1614), 1, anon_sym_EQ, STATE(641), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1647), 2, + ACTIONS(1645), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1530), 12, + ACTIONS(1528), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -81437,7 +81480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1618), 13, + ACTIONS(1616), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81451,7 +81494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81472,27 +81515,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [5131] = 10, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1616), 1, + ACTIONS(1614), 1, anon_sym_EQ, STATE(642), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1651), 2, + ACTIONS(1649), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1530), 12, + ACTIONS(1528), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -81505,7 +81548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1618), 13, + ACTIONS(1616), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81519,7 +81562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81540,24 +81583,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [5209] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1649), 1, + ACTIONS(1647), 1, anon_sym_EQ, STATE(643), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1642), 13, + ACTIONS(1640), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81571,7 +81614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 14, + ACTIONS(1528), 14, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -81586,7 +81629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81607,27 +81650,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [5285] = 10, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1626), 1, + ACTIONS(1624), 1, anon_sym_EQ, STATE(644), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1644), 2, + ACTIONS(1642), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1530), 12, + ACTIONS(1528), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -81640,7 +81683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1624), 13, + ACTIONS(1622), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81654,7 +81697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81675,24 +81718,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [5363] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1640), 1, + ACTIONS(1638), 1, anon_sym_EQ, STATE(645), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1642), 13, + ACTIONS(1640), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81706,7 +81749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1530), 14, + ACTIONS(1528), 14, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -81721,7 +81764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81742,27 +81785,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [5439] = 10, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1626), 1, + ACTIONS(1624), 1, anon_sym_EQ, STATE(646), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1653), 2, + ACTIONS(1651), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1530), 11, + ACTIONS(1528), 11, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81774,7 +81817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1624), 13, + ACTIONS(1622), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81788,7 +81831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1532), 19, + ACTIONS(1530), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81809,17 +81852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [5516] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1656), 1, + ACTIONS(1654), 1, anon_sym_LPAREN, STATE(647), 1, sym_text_interpolation, STATE(668), 1, sym_arguments, - ACTIONS(1546), 13, + ACTIONS(1544), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81832,8 +81875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1544), 32, + ACTIONS(1542), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81865,19 +81907,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, [5581] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1656), 1, + ACTIONS(1654), 1, anon_sym_LPAREN, STATE(648), 1, sym_text_interpolation, STATE(672), 1, sym_arguments, - ACTIONS(1554), 13, + ACTIONS(1552), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81890,8 +81933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 32, + ACTIONS(1550), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81923,25 +81965,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [5646] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1656), 1, + ACTIONS(1654), 1, anon_sym_LPAREN, STATE(649), 1, sym_text_interpolation, STATE(663), 1, sym_arguments, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1534), 13, + ACTIONS(1532), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81954,8 +81997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1542), 27, + ACTIONS(1540), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81982,15 +82024,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, [5713] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(650), 1, sym_text_interpolation, - ACTIONS(1594), 13, + ACTIONS(1592), 12, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -82003,8 +82046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1592), 34, + ACTIONS(1590), 35, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82038,28 +82080,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, [5774] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1656), 1, + ACTIONS(1654), 1, anon_sym_LPAREN, STATE(651), 1, sym_text_interpolation, STATE(663), 1, sym_arguments, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 13, + ACTIONS(1530), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82072,8 +82115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 25, + ACTIONS(1528), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82098,19 +82140,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, [5843] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1656), 1, + ACTIONS(1654), 1, anon_sym_LPAREN, STATE(652), 1, sym_text_interpolation, STATE(666), 1, sym_arguments, - ACTIONS(1550), 13, + ACTIONS(1548), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82123,8 +82166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1548), 32, + ACTIONS(1546), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82156,15 +82198,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, [5908] = 10, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, STATE(653), 1, sym_text_interpolation, @@ -82172,13 +82215,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1660), 12, + ACTIONS(1658), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82190,8 +82233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 26, + ACTIONS(1656), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82217,15 +82259,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, [5979] = 10, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, STATE(590), 1, sym_arguments, @@ -82233,13 +82276,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 12, + ACTIONS(1530), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82251,8 +82294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 26, + ACTIONS(1528), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82278,19 +82320,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, [6050] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1656), 1, + ACTIONS(1654), 1, anon_sym_LPAREN, STATE(655), 1, sym_text_interpolation, STATE(673), 1, sym_arguments, - ACTIONS(1558), 13, + ACTIONS(1556), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82303,8 +82346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1556), 32, + ACTIONS(1554), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82336,15 +82378,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, [6115] = 10, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1656), 1, + ACTIONS(1654), 1, anon_sym_LPAREN, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, STATE(656), 1, sym_text_interpolation, @@ -82352,13 +82395,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 12, + ACTIONS(1530), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82370,8 +82413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 26, + ACTIONS(1528), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82397,19 +82439,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, [6186] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1656), 1, + ACTIONS(1654), 1, anon_sym_LPAREN, STATE(657), 1, sym_text_interpolation, STATE(679), 1, sym_arguments, - ACTIONS(1562), 13, + ACTIONS(1560), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82422,8 +82465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1560), 32, + ACTIONS(1558), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82455,6 +82497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [6251] = 29, ACTIONS(18), 1, @@ -82467,22 +82510,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_modifier_token1, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, - ACTIONS(1669), 1, + ACTIONS(1667), 1, aux_sym_function_static_declaration_token1, - ACTIONS(1671), 1, + ACTIONS(1669), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(1675), 1, + ACTIONS(1673), 1, aux_sym_readonly_modifier_token1, - ACTIONS(1677), 1, + ACTIONS(1675), 1, sym_var_modifier, - ACTIONS(1681), 1, + ACTIONS(1679), 1, anon_sym_QMARK, - ACTIONS(1683), 1, + ACTIONS(1681), 1, anon_sym_DOLLAR, + ACTIONS(1683), 1, + sym_comment, STATE(658), 1, sym_text_interpolation, STATE(1063), 1, @@ -82508,7 +82551,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1662), 2, sym_union_type, sym_intersection_type, - ACTIONS(1679), 3, + ACTIONS(1677), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -82522,7 +82565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -82547,22 +82590,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_modifier_token1, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, - ACTIONS(1669), 1, + ACTIONS(1667), 1, aux_sym_function_static_declaration_token1, - ACTIONS(1671), 1, + ACTIONS(1669), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(1675), 1, + ACTIONS(1673), 1, aux_sym_readonly_modifier_token1, - ACTIONS(1677), 1, + ACTIONS(1675), 1, sym_var_modifier, - ACTIONS(1681), 1, + ACTIONS(1679), 1, anon_sym_QMARK, - ACTIONS(1683), 1, + ACTIONS(1681), 1, anon_sym_DOLLAR, + ACTIONS(1683), 1, + sym_comment, STATE(659), 1, sym_text_interpolation, STATE(1063), 1, @@ -82588,7 +82631,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1662), 2, sym_union_type, sym_intersection_type, - ACTIONS(1679), 3, + ACTIONS(1677), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -82602,7 +82645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -82617,13 +82660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [6469] = 10, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, STATE(590), 1, sym_arguments, @@ -82631,13 +82674,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1687), 12, + ACTIONS(1687), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82649,8 +82692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1685), 26, + ACTIONS(1685), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82676,6 +82718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [6540] = 30, ACTIONS(5), 1, @@ -82758,13 +82801,13 @@ static const uint16_t ts_small_parse_table[] = { sym_array_creation_expression, sym__string, [6650] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(662), 1, sym_text_interpolation, - ACTIONS(1606), 13, + ACTIONS(1604), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82777,8 +82820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1604), 33, + ACTIONS(1602), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82811,15 +82853,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, [6710] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(663), 1, sym_text_interpolation, - ACTIONS(1602), 13, + ACTIONS(1600), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82832,8 +82875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1600), 33, + ACTIONS(1598), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82866,15 +82908,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, [6770] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(664), 1, sym_text_interpolation, - ACTIONS(1598), 13, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82887,8 +82930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1596), 33, + ACTIONS(1594), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82921,15 +82963,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, [6830] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(665), 1, sym_text_interpolation, - ACTIONS(1574), 13, + ACTIONS(1572), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82942,8 +82985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1572), 33, + ACTIONS(1570), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82976,15 +83018,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, [6890] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(666), 1, sym_text_interpolation, - ACTIONS(1590), 13, + ACTIONS(1588), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82997,8 +83040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1588), 33, + ACTIONS(1586), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83031,15 +83073,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, [6950] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(667), 1, sym_text_interpolation, - ACTIONS(1528), 13, + ACTIONS(1526), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83052,8 +83095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1526), 33, + ACTIONS(1524), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83086,15 +83128,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, [7010] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(668), 1, sym_text_interpolation, - ACTIONS(1586), 13, + ACTIONS(1584), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83107,8 +83150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1584), 33, + ACTIONS(1582), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83141,15 +83183,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, [7070] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(669), 1, sym_text_interpolation, - ACTIONS(1582), 13, + ACTIONS(1580), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83162,8 +83205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1580), 33, + ACTIONS(1578), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83196,6 +83238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [7130] = 30, ACTIONS(5), 1, @@ -83278,13 +83321,13 @@ static const uint16_t ts_small_parse_table[] = { sym_array_creation_expression, sym__string, [7240] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(671), 1, sym_text_interpolation, - ACTIONS(1610), 13, + ACTIONS(1608), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83297,8 +83340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1608), 33, + ACTIONS(1606), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83331,15 +83373,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, [7300] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(672), 1, sym_text_interpolation, - ACTIONS(1570), 13, + ACTIONS(1568), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83352,8 +83395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 33, + ACTIONS(1566), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83386,15 +83428,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, [7360] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(673), 1, sym_text_interpolation, - ACTIONS(1578), 13, + ACTIONS(1576), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83407,8 +83450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1576), 33, + ACTIONS(1574), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83441,19 +83483,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, [7420] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(674), 1, sym_text_interpolation, - ACTIONS(1707), 12, + ACTIONS(1707), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83465,8 +83508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1705), 32, + ACTIONS(1705), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83498,15 +83540,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, [7484] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(675), 1, sym_text_interpolation, - ACTIONS(1514), 13, + ACTIONS(1514), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83519,8 +83562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1512), 33, + ACTIONS(1512), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83553,15 +83595,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, [7544] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(676), 1, sym_text_interpolation, - ACTIONS(1520), 13, + ACTIONS(1518), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83574,8 +83617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1518), 33, + ACTIONS(1516), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83608,15 +83650,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, [7604] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(677), 1, sym_text_interpolation, - ACTIONS(1524), 13, + ACTIONS(1522), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83629,8 +83672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1522), 33, + ACTIONS(1520), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83663,15 +83705,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, [7664] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(678), 1, sym_text_interpolation, - ACTIONS(1614), 13, + ACTIONS(1612), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83684,8 +83727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1612), 33, + ACTIONS(1610), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83718,15 +83760,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, [7724] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(679), 1, sym_text_interpolation, - ACTIONS(1566), 13, + ACTIONS(1564), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83739,8 +83782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1564), 33, + ACTIONS(1562), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83773,15 +83815,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, [7784] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(680), 1, sym_text_interpolation, - ACTIONS(1594), 13, + ACTIONS(1592), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83794,8 +83837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1592), 33, + ACTIONS(1590), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83828,15 +83870,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, [7844] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(681), 1, sym_text_interpolation, - ACTIONS(1711), 12, + ACTIONS(1711), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83848,8 +83891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1709), 34, + ACTIONS(1709), 35, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83883,19 +83925,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, [7904] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, STATE(682), 1, sym_text_interpolation, STATE(765), 1, sym_arguments, - ACTIONS(1546), 12, + ACTIONS(1544), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83907,8 +83950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1544), 31, + ACTIONS(1542), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83939,25 +83981,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [7967] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1656), 1, + ACTIONS(1654), 1, anon_sym_LPAREN, STATE(663), 1, sym_arguments, STATE(683), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 12, + ACTIONS(1530), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83969,8 +84012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 26, + ACTIONS(1528), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83996,6 +84038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [8032] = 29, ACTIONS(5), 1, @@ -84006,7 +84049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, ACTIONS(1713), 1, anon_sym_AMP, @@ -84061,7 +84104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -84078,7 +84121,7 @@ static const uint16_t ts_small_parse_table[] = { [8139] = 26, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1727), 1, sym_name, @@ -84151,23 +84194,23 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [8240] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, STATE(686), 1, sym_text_interpolation, STATE(754), 1, sym_arguments, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1764), 12, + ACTIONS(1764), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84179,8 +84222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1762), 26, + ACTIONS(1762), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84206,25 +84248,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [8305] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(590), 1, sym_arguments, STATE(687), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1687), 12, + ACTIONS(1687), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84236,8 +84279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1685), 26, + ACTIONS(1685), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84263,25 +84305,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [8370] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, STATE(688), 1, sym_text_interpolation, STATE(754), 1, sym_arguments, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1534), 12, + ACTIONS(1532), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84293,8 +84336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1542), 26, + ACTIONS(1540), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84320,25 +84362,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [8435] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(590), 1, sym_arguments, STATE(689), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1687), 12, + ACTIONS(1687), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84350,8 +84393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1685), 26, + ACTIONS(1685), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84377,17 +84419,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, [8500] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(581), 1, sym_arguments, STATE(690), 1, sym_text_interpolation, - ACTIONS(1562), 12, + ACTIONS(1560), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84399,8 +84442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1560), 32, + ACTIONS(1558), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84432,6 +84474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [8561] = 29, ACTIONS(18), 1, @@ -84452,7 +84495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1693), 1, anon_sym_LPAREN, @@ -84512,10 +84555,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [8668] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1775), 1, anon_sym_EQ, STATE(692), 1, @@ -84523,7 +84566,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1772), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1770), 12, + ACTIONS(1770), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84535,8 +84578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1768), 30, + ACTIONS(1768), 31, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, @@ -84566,25 +84608,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [8731] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(590), 1, sym_arguments, STATE(693), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 12, + ACTIONS(1530), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84596,8 +84639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 26, + ACTIONS(1528), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84623,25 +84665,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [8796] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1777), 1, anon_sym_LPAREN, STATE(694), 1, sym_text_interpolation, STATE(906), 1, sym_arguments, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1660), 12, + ACTIONS(1658), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84653,8 +84696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 26, + ACTIONS(1656), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84680,25 +84722,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [8861] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, STATE(695), 1, sym_text_interpolation, STATE(754), 1, sym_arguments, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1781), 12, + ACTIONS(1781), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84710,8 +84753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1779), 26, + ACTIONS(1779), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84737,19 +84779,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, [8926] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, STATE(696), 1, sym_text_interpolation, STATE(762), 1, sym_arguments, - ACTIONS(1558), 12, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84761,8 +84804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1556), 31, + ACTIONS(1554), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84793,6 +84835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [8989] = 27, ACTIONS(18), 1, @@ -84809,7 +84852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1693), 1, anon_sym_LPAREN, @@ -84871,23 +84914,23 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [9092] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, STATE(698), 1, sym_text_interpolation, STATE(731), 1, sym_arguments, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1660), 12, + ACTIONS(1658), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84899,8 +84942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 26, + ACTIONS(1656), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84926,25 +84968,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [9157] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1656), 1, + ACTIONS(1654), 1, anon_sym_LPAREN, STATE(663), 1, sym_arguments, STATE(699), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 12, + ACTIONS(1530), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84956,8 +84999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 26, + ACTIONS(1528), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84983,19 +85025,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, [9222] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, STATE(700), 1, sym_text_interpolation, STATE(757), 1, sym_arguments, - ACTIONS(1550), 12, + ACTIONS(1548), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85007,8 +85050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1548), 31, + ACTIONS(1546), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85039,6 +85081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [9285] = 29, ACTIONS(18), 1, @@ -85059,7 +85102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1693), 1, anon_sym_LPAREN, @@ -85119,23 +85162,23 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [9392] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, STATE(702), 1, sym_text_interpolation, STATE(731), 1, sym_arguments, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1660), 12, + ACTIONS(1658), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85147,8 +85190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 26, + ACTIONS(1656), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85174,19 +85216,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, [9457] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(703), 1, sym_text_interpolation, - ACTIONS(1558), 12, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85198,8 +85241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1556), 31, + ACTIONS(1554), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85230,6 +85272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [9520] = 27, ACTIONS(18), 1, @@ -85246,7 +85289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1693), 1, anon_sym_LPAREN, @@ -85308,17 +85351,17 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [9623] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1656), 1, + ACTIONS(1654), 1, anon_sym_LPAREN, STATE(673), 1, sym_arguments, STATE(705), 1, sym_text_interpolation, - ACTIONS(1707), 12, + ACTIONS(1707), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85330,8 +85373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1705), 31, + ACTIONS(1705), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85362,19 +85404,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, [9686] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(581), 1, sym_arguments, STATE(706), 1, sym_text_interpolation, - ACTIONS(1562), 12, + ACTIONS(1560), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85386,8 +85429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1560), 31, + ACTIONS(1558), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85418,25 +85460,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [9749] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(590), 1, sym_arguments, STATE(707), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 12, + ACTIONS(1530), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85448,8 +85491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 26, + ACTIONS(1528), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85475,17 +85517,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, [9814] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(584), 1, sym_arguments, STATE(708), 1, sym_text_interpolation, - ACTIONS(1558), 12, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85497,8 +85540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1556), 32, + ACTIONS(1554), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85530,19 +85572,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, [9875] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(582), 1, sym_arguments, STATE(709), 1, sym_text_interpolation, - ACTIONS(1554), 12, + ACTIONS(1552), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85554,8 +85597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 31, + ACTIONS(1550), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85586,17 +85628,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, [9938] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(586), 1, sym_arguments, STATE(710), 1, sym_text_interpolation, - ACTIONS(1546), 12, + ACTIONS(1544), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85608,8 +85651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1544), 32, + ACTIONS(1542), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85641,19 +85683,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, [9999] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(587), 1, sym_arguments, STATE(711), 1, sym_text_interpolation, - ACTIONS(1550), 12, + ACTIONS(1548), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85665,8 +85708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1548), 31, + ACTIONS(1546), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85697,21 +85739,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, [10062] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(712), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1534), 13, + ACTIONS(1532), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85724,8 +85767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1542), 27, + ACTIONS(1540), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85752,17 +85794,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, [10123] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(587), 1, sym_arguments, STATE(713), 1, sym_text_interpolation, - ACTIONS(1550), 12, + ACTIONS(1548), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85774,8 +85817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1548), 32, + ACTIONS(1546), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85807,24 +85849,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, [10184] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(714), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1538), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 13, + ACTIONS(1530), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85837,8 +85880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 25, + ACTIONS(1528), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85863,19 +85905,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, [10247] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, STATE(715), 1, sym_text_interpolation, STATE(725), 1, sym_arguments, - ACTIONS(1562), 12, + ACTIONS(1560), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85887,8 +85930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1560), 31, + ACTIONS(1558), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85919,19 +85961,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, [10310] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(586), 1, sym_arguments, STATE(716), 1, sym_text_interpolation, - ACTIONS(1546), 12, + ACTIONS(1544), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85943,8 +85986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1544), 31, + ACTIONS(1542), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85975,19 +86017,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, [10373] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, STATE(717), 1, sym_text_interpolation, STATE(736), 1, sym_arguments, - ACTIONS(1554), 12, + ACTIONS(1552), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85999,8 +86042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 31, + ACTIONS(1550), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86031,17 +86073,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, [10436] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(582), 1, sym_arguments, STATE(718), 1, sym_text_interpolation, - ACTIONS(1554), 12, + ACTIONS(1552), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86053,8 +86096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 32, + ACTIONS(1550), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86086,6 +86128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [10497] = 29, ACTIONS(5), 1, @@ -86096,7 +86139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, ACTIONS(1713), 1, anon_sym_AMP, @@ -86151,7 +86194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -86166,13 +86209,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [10604] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(720), 1, sym_text_interpolation, - ACTIONS(1574), 12, + ACTIONS(1572), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86184,8 +86227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1572), 32, + ACTIONS(1570), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86217,15 +86259,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, [10662] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(721), 1, sym_text_interpolation, - ACTIONS(1496), 12, + ACTIONS(1496), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86237,8 +86280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1498), 32, + ACTIONS(1498), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86270,15 +86312,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, [10720] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(722), 1, sym_text_interpolation, - ACTIONS(1528), 12, + ACTIONS(1526), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86290,8 +86333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1526), 32, + ACTIONS(1524), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86323,15 +86365,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, [10778] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(723), 1, sym_text_interpolation, - ACTIONS(1795), 12, + ACTIONS(1795), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86343,8 +86386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1793), 32, + ACTIONS(1793), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86376,15 +86418,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, [10836] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(724), 1, sym_text_interpolation, - ACTIONS(1606), 12, + ACTIONS(1604), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86396,8 +86439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1604), 32, + ACTIONS(1602), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86429,15 +86471,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, [10894] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(725), 1, sym_text_interpolation, - ACTIONS(1566), 12, + ACTIONS(1564), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86449,8 +86492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1564), 32, + ACTIONS(1562), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86482,15 +86524,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, [10952] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(726), 1, sym_text_interpolation, - ACTIONS(1514), 12, + ACTIONS(1514), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86502,8 +86545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1512), 32, + ACTIONS(1512), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86535,15 +86577,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, [11010] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(727), 1, sym_text_interpolation, - ACTIONS(1799), 12, + ACTIONS(1799), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86555,8 +86598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1797), 32, + ACTIONS(1797), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86588,15 +86630,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, [11068] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(728), 1, sym_text_interpolation, - ACTIONS(1803), 12, + ACTIONS(1803), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86608,8 +86651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1801), 32, + ACTIONS(1801), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86641,15 +86683,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, [11126] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(729), 1, sym_text_interpolation, - ACTIONS(1807), 12, + ACTIONS(1807), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86661,8 +86704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1805), 32, + ACTIONS(1805), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86694,15 +86736,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, [11184] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(730), 1, sym_text_interpolation, - ACTIONS(1811), 12, + ACTIONS(1811), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86714,8 +86757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1809), 32, + ACTIONS(1809), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86747,22 +86789,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, [11242] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(731), 1, sym_text_interpolation, - ACTIONS(1600), 6, + ACTIONS(1598), 6, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1815), 12, + ACTIONS(1815), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86774,8 +86817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1813), 26, + ACTIONS(1813), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86801,15 +86843,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, [11302] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(732), 1, sym_text_interpolation, - ACTIONS(1819), 12, + ACTIONS(1819), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86821,8 +86864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1817), 32, + ACTIONS(1817), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86854,15 +86896,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, [11360] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(733), 1, sym_text_interpolation, - ACTIONS(1823), 12, + ACTIONS(1823), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86874,8 +86917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1821), 32, + ACTIONS(1821), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86907,15 +86949,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, [11418] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(734), 1, sym_text_interpolation, - ACTIONS(1827), 12, + ACTIONS(1827), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86927,8 +86970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1825), 32, + ACTIONS(1825), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86960,15 +87002,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, [11476] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(735), 1, sym_text_interpolation, - ACTIONS(1831), 12, + ACTIONS(1831), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86980,8 +87023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1829), 32, + ACTIONS(1829), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87013,15 +87055,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, [11534] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(736), 1, sym_text_interpolation, - ACTIONS(1570), 12, + ACTIONS(1568), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87033,8 +87076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 32, + ACTIONS(1566), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87066,15 +87108,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, [11592] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(737), 1, sym_text_interpolation, - ACTIONS(1598), 12, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87086,8 +87129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1596), 32, + ACTIONS(1594), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87119,6 +87161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [11650] = 28, ACTIONS(18), 1, @@ -87137,7 +87180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(819), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1693), 1, anon_sym_LPAREN, @@ -87197,13 +87240,13 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [11754] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(739), 1, sym_text_interpolation, - ACTIONS(1582), 12, + ACTIONS(1580), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87215,8 +87258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1580), 32, + ACTIONS(1578), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87248,15 +87290,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, [11812] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(740), 1, sym_text_interpolation, - ACTIONS(1835), 12, + ACTIONS(1835), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87268,8 +87311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1833), 32, + ACTIONS(1833), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87301,6 +87343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [11870] = 28, ACTIONS(5), 1, @@ -87311,7 +87354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, ACTIONS(1713), 1, anon_sym_AMP, @@ -87364,7 +87407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -87387,7 +87430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, ACTIONS(1713), 1, anon_sym_AMP, @@ -87440,7 +87483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -87455,13 +87498,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [12078] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(743), 1, sym_text_interpolation, - ACTIONS(1610), 12, + ACTIONS(1608), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87473,8 +87516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1608), 32, + ACTIONS(1606), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87506,15 +87548,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, [12136] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(744), 1, sym_text_interpolation, - ACTIONS(1524), 12, + ACTIONS(1522), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87526,8 +87569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1522), 32, + ACTIONS(1520), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87559,15 +87601,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, [12194] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(745), 1, sym_text_interpolation, - ACTIONS(1843), 12, + ACTIONS(1843), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87579,8 +87622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1841), 32, + ACTIONS(1841), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87612,15 +87654,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, [12252] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(746), 1, sym_text_interpolation, - ACTIONS(1847), 12, + ACTIONS(1847), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87632,8 +87675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1845), 32, + ACTIONS(1845), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87665,17 +87707,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, [12310] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1849), 1, anon_sym_COLON_COLON, STATE(747), 1, sym_text_interpolation, - ACTIONS(1594), 12, + ACTIONS(1592), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87687,8 +87730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1592), 31, + ACTIONS(1590), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87719,15 +87761,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, [12370] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(748), 1, sym_text_interpolation, - ACTIONS(1853), 12, + ACTIONS(1853), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87739,8 +87782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1851), 32, + ACTIONS(1851), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87772,15 +87814,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, [12428] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(749), 1, sym_text_interpolation, - ACTIONS(1857), 12, + ACTIONS(1857), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87792,8 +87835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1855), 32, + ACTIONS(1855), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87825,15 +87867,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, [12486] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(750), 1, sym_text_interpolation, - ACTIONS(1861), 12, + ACTIONS(1861), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87845,8 +87888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1859), 32, + ACTIONS(1859), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87878,15 +87920,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, [12544] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(751), 1, sym_text_interpolation, - ACTIONS(1865), 12, + ACTIONS(1865), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87898,8 +87941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1863), 32, + ACTIONS(1863), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87931,15 +87973,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, [12602] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(752), 1, sym_text_interpolation, - ACTIONS(1614), 12, + ACTIONS(1612), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87951,8 +87994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1612), 32, + ACTIONS(1610), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87984,15 +88026,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, [12660] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(753), 1, sym_text_interpolation, - ACTIONS(1770), 12, + ACTIONS(1770), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88004,8 +88047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1768), 32, + ACTIONS(1768), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88037,15 +88079,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, [12718] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(754), 1, sym_text_interpolation, - ACTIONS(1602), 12, + ACTIONS(1600), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88057,8 +88100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1600), 32, + ACTIONS(1598), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88090,15 +88132,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, [12776] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(755), 1, sym_text_interpolation, - ACTIONS(1869), 12, + ACTIONS(1869), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88110,8 +88153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1867), 32, + ACTIONS(1867), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88143,15 +88185,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, [12834] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(756), 1, sym_text_interpolation, - ACTIONS(1873), 12, + ACTIONS(1873), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88163,8 +88206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1871), 32, + ACTIONS(1871), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88196,15 +88238,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, [12892] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(757), 1, sym_text_interpolation, - ACTIONS(1590), 12, + ACTIONS(1588), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88216,8 +88259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1588), 32, + ACTIONS(1586), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88249,6 +88291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [12950] = 28, ACTIONS(5), 1, @@ -88259,7 +88302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, ACTIONS(1713), 1, anon_sym_AMP, @@ -88312,7 +88355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -88335,7 +88378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, ACTIONS(1713), 1, anon_sym_AMP, @@ -88388,7 +88431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -88403,13 +88446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [13158] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(760), 1, sym_text_interpolation, - ACTIONS(1881), 12, + ACTIONS(1881), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88421,8 +88464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1879), 32, + ACTIONS(1879), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88454,15 +88496,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, [13216] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(761), 1, sym_text_interpolation, - ACTIONS(1885), 12, + ACTIONS(1885), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88474,8 +88517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1883), 32, + ACTIONS(1883), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88507,15 +88549,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, [13274] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(762), 1, sym_text_interpolation, - ACTIONS(1578), 12, + ACTIONS(1576), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88527,8 +88570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1576), 32, + ACTIONS(1574), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88560,15 +88602,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, [13332] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(763), 1, sym_text_interpolation, - ACTIONS(1889), 12, + ACTIONS(1889), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88580,8 +88623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1887), 32, + ACTIONS(1887), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88613,15 +88655,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, [13390] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(764), 1, sym_text_interpolation, - ACTIONS(1520), 12, + ACTIONS(1518), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88633,8 +88676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1518), 32, + ACTIONS(1516), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88666,15 +88708,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, [13448] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(765), 1, sym_text_interpolation, - ACTIONS(1586), 12, + ACTIONS(1584), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88686,8 +88729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1584), 32, + ACTIONS(1582), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88719,15 +88761,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, [13506] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(766), 1, sym_text_interpolation, - ACTIONS(998), 11, + ACTIONS(998), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88738,8 +88781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(996), 32, + ACTIONS(996), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88771,21 +88813,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, [13563] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(767), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1534), 12, + ACTIONS(1532), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88797,8 +88840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1542), 26, + ACTIONS(1540), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88824,15 +88866,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, [13622] = 10, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, STATE(590), 1, sym_arguments, @@ -88840,13 +88883,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1687), 11, + ACTIONS(1687), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88857,8 +88900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1685), 23, + ACTIONS(1685), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88881,21 +88923,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, [13689] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(769), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1687), 12, + ACTIONS(1687), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88907,8 +88950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1685), 26, + ACTIONS(1685), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88934,6 +88976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [13748] = 27, ACTIONS(5), 1, @@ -88944,7 +88987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, ACTIONS(1713), 1, anon_sym_AMP, @@ -88995,7 +89038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -89010,17 +89053,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [13849] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1772), 1, anon_sym_RPAREN, ACTIONS(1775), 1, anon_sym_EQ, STATE(771), 1, sym_text_interpolation, - ACTIONS(1770), 11, + ACTIONS(1770), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89031,8 +89074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1768), 30, + ACTIONS(1768), 31, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -89062,15 +89104,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, [13910] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(772), 1, sym_text_interpolation, - ACTIONS(1006), 11, + ACTIONS(1006), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89081,8 +89124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1004), 32, + ACTIONS(1004), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89114,15 +89156,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, [13967] = 10, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1630), 1, + ACTIONS(1628), 1, anon_sym_LPAREN, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, STATE(622), 1, sym_arguments, @@ -89130,13 +89173,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 11, + ACTIONS(1530), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89147,8 +89190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 23, + ACTIONS(1528), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89171,21 +89213,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, [14034] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(774), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1764), 12, + ACTIONS(1764), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89197,8 +89240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1762), 26, + ACTIONS(1762), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89224,19 +89266,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, [14093] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1891), 1, anon_sym_LPAREN, STATE(775), 1, sym_text_interpolation, STATE(802), 1, sym_arguments, - ACTIONS(1554), 12, + ACTIONS(1552), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89248,8 +89291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 29, + ACTIONS(1550), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89278,28 +89320,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, [14154] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1891), 1, anon_sym_LPAREN, STATE(776), 1, sym_text_interpolation, STATE(794), 1, sym_arguments, - ACTIONS(1632), 2, + ACTIONS(1630), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 12, + ACTIONS(1530), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89311,8 +89354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 22, + ACTIONS(1528), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89334,25 +89376,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [14219] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1891), 1, anon_sym_LPAREN, STATE(777), 1, sym_text_interpolation, STATE(794), 1, sym_arguments, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1534), 12, + ACTIONS(1532), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89364,8 +89407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1542), 24, + ACTIONS(1540), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89389,13 +89431,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [14282] = 10, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, ACTIONS(1891), 1, anon_sym_LPAREN, @@ -89405,13 +89448,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 11, + ACTIONS(1530), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89422,8 +89465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 23, + ACTIONS(1528), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89446,21 +89488,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, [14349] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(779), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1781), 12, + ACTIONS(1781), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89472,8 +89515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1779), 26, + ACTIONS(1779), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89499,19 +89541,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, [14408] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1891), 1, anon_sym_LPAREN, STATE(780), 1, sym_text_interpolation, STATE(800), 1, sym_arguments, - ACTIONS(1558), 12, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89523,8 +89566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1556), 29, + ACTIONS(1554), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89553,13 +89595,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [14469] = 10, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, ACTIONS(1893), 1, anon_sym_LPAREN, @@ -89569,13 +89612,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1660), 11, + ACTIONS(1658), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89586,8 +89629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 23, + ACTIONS(1656), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89610,19 +89652,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, [14536] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1891), 1, anon_sym_LPAREN, STATE(782), 1, sym_text_interpolation, STATE(789), 1, sym_arguments, - ACTIONS(1562), 12, + ACTIONS(1560), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89634,8 +89677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1560), 29, + ACTIONS(1558), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89664,19 +89706,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, [14597] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1891), 1, anon_sym_LPAREN, STATE(783), 1, sym_text_interpolation, STATE(803), 1, sym_arguments, - ACTIONS(1546), 12, + ACTIONS(1544), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89688,8 +89731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1544), 29, + ACTIONS(1542), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89718,21 +89760,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, [14658] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(784), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 12, + ACTIONS(1530), 11, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89744,8 +89787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 26, + ACTIONS(1528), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89771,19 +89813,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, [14717] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1891), 1, anon_sym_LPAREN, STATE(785), 1, sym_text_interpolation, STATE(804), 1, sym_arguments, - ACTIONS(1550), 12, + ACTIONS(1548), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89795,8 +89838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1548), 29, + ACTIONS(1546), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89825,15 +89867,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, [14778] = 11, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1630), 1, + ACTIONS(1628), 1, anon_sym_LPAREN, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, ACTIONS(1895), 1, anon_sym_COLON, @@ -89843,13 +89886,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 11, + ACTIONS(1530), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89860,8 +89903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 21, + ACTIONS(1528), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_PLUS, @@ -89882,15 +89924,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, [14846] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(787), 1, sym_text_interpolation, - ACTIONS(1582), 12, + ACTIONS(1580), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89902,8 +89945,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, + ACTIONS(1578), 31, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + 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_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_SLASH, - ACTIONS(1580), 30, + anon_sym_PERCENT, + [14902] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(18), 1, + anon_sym_QMARK_GT, + STATE(788), 1, + sym_text_interpolation, + ACTIONS(1592), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + 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(1590), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89933,66 +90026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [14902] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(788), 1, - sym_text_interpolation, - ACTIONS(1594), 12, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - 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(1592), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - 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_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, anon_sym_PERCENT, [14958] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(789), 1, sym_text_interpolation, - ACTIONS(1566), 12, + ACTIONS(1564), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90004,8 +90047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1564), 30, + ACTIONS(1562), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90035,15 +90077,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, [15014] = 11, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1630), 1, + ACTIONS(1628), 1, anon_sym_LPAREN, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, ACTIONS(1897), 1, anon_sym_COLON, @@ -90053,13 +90096,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 11, + ACTIONS(1530), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90070,8 +90113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 21, + ACTIONS(1528), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_PLUS, @@ -90092,15 +90134,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, [15082] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(791), 1, sym_text_interpolation, - ACTIONS(1524), 12, + ACTIONS(1522), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90112,8 +90155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1522), 30, + ACTIONS(1520), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90143,6 +90185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [15138] = 5, ACTIONS(5), 1, @@ -90196,13 +90239,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_require_once_expression_token1, sym_name, [15194] = 11, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, ACTIONS(1903), 1, anon_sym_COLON, @@ -90212,13 +90255,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 11, + ACTIONS(1530), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90229,8 +90272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 21, + ACTIONS(1528), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PLUS, @@ -90251,15 +90293,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, [15262] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(794), 1, sym_text_interpolation, - ACTIONS(1602), 12, + ACTIONS(1600), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90271,8 +90314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1600), 30, + ACTIONS(1598), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90302,15 +90344,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, [15318] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(795), 1, sym_text_interpolation, - ACTIONS(1614), 12, + ACTIONS(1612), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90322,8 +90365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1612), 30, + ACTIONS(1610), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90353,15 +90395,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, [15374] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(796), 1, sym_text_interpolation, - ACTIONS(1598), 12, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90373,8 +90416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1596), 30, + ACTIONS(1594), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90404,15 +90446,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, [15430] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(797), 1, sym_text_interpolation, - ACTIONS(1528), 12, + ACTIONS(1526), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90424,8 +90467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1526), 30, + ACTIONS(1524), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90455,15 +90497,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, [15486] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(798), 1, sym_text_interpolation, - ACTIONS(1514), 12, + ACTIONS(1514), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90475,8 +90518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1512), 30, + ACTIONS(1512), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90506,15 +90548,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, [15542] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(799), 1, sym_text_interpolation, - ACTIONS(1610), 12, + ACTIONS(1608), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90526,8 +90569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1608), 30, + ACTIONS(1606), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90557,15 +90599,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, [15598] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(800), 1, sym_text_interpolation, - ACTIONS(1578), 12, + ACTIONS(1576), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90577,8 +90620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1576), 30, + ACTIONS(1574), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90608,15 +90650,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, [15654] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(801), 1, sym_text_interpolation, - ACTIONS(1574), 12, + ACTIONS(1572), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90628,8 +90671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1572), 30, + ACTIONS(1570), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90659,15 +90701,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, [15710] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(802), 1, sym_text_interpolation, - ACTIONS(1570), 12, + ACTIONS(1568), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90679,8 +90722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 30, + ACTIONS(1566), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90710,15 +90752,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, [15766] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(803), 1, sym_text_interpolation, - ACTIONS(1586), 12, + ACTIONS(1584), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90730,8 +90773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1584), 30, + ACTIONS(1582), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90761,15 +90803,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, [15822] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(804), 1, sym_text_interpolation, - ACTIONS(1590), 12, + ACTIONS(1588), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90781,8 +90824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1588), 30, + ACTIONS(1586), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90812,15 +90854,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, [15878] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(805), 1, sym_text_interpolation, - ACTIONS(1520), 12, + ACTIONS(1518), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90832,8 +90875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1518), 30, + ACTIONS(1516), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90863,15 +90905,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, [15934] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(806), 1, sym_text_interpolation, - ACTIONS(1606), 12, + ACTIONS(1604), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90883,8 +90926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1604), 30, + ACTIONS(1602), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90914,6 +90956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [15990] = 25, ACTIONS(18), 1, @@ -90932,7 +90975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1510), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1905), 1, sym_name, @@ -91000,7 +91043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1693), 1, anon_sym_LPAREN, @@ -91056,13 +91099,13 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [16180] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(809), 1, sym_text_interpolation, - ACTIONS(1032), 11, + ACTIONS(1032), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91073,8 +91116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1030), 30, + ACTIONS(1030), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -91104,17 +91146,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, [16235] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(581), 1, sym_arguments, STATE(810), 1, sym_text_interpolation, - ACTIONS(1562), 11, + ACTIONS(1560), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91125,8 +91168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1560), 29, + ACTIONS(1558), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91155,17 +91197,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, [16292] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(582), 1, sym_arguments, STATE(811), 1, sym_text_interpolation, - ACTIONS(1554), 11, + ACTIONS(1552), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91176,8 +91219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 29, + ACTIONS(1550), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91206,15 +91248,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, [16349] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(812), 1, sym_text_interpolation, - ACTIONS(1594), 11, + ACTIONS(1592), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91225,8 +91268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1592), 30, + ACTIONS(1590), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91256,19 +91298,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, [16404] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1893), 1, anon_sym_LPAREN, STATE(813), 1, sym_text_interpolation, STATE(878), 1, sym_arguments, - ACTIONS(1558), 11, + ACTIONS(1556), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91279,8 +91322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1556), 28, + ACTIONS(1554), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91308,25 +91350,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [16463] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1893), 1, anon_sym_LPAREN, STATE(814), 1, sym_text_interpolation, STATE(868), 1, sym_arguments, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1534), 11, + ACTIONS(1532), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91337,8 +91380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1542), 23, + ACTIONS(1540), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91361,6 +91403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [16524] = 25, ACTIONS(18), 1, @@ -91377,7 +91420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1693), 1, anon_sym_LPAREN, @@ -91433,13 +91476,13 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [16619] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(816), 1, sym_text_interpolation, - ACTIONS(1108), 11, + ACTIONS(1108), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91450,8 +91493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1106), 30, + ACTIONS(1106), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -91481,25 +91523,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [16674] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1891), 1, anon_sym_LPAREN, STATE(794), 1, sym_arguments, STATE(817), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 11, + ACTIONS(1530), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91510,8 +91553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 23, + ACTIONS(1528), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91534,25 +91576,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [16735] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1893), 1, anon_sym_LPAREN, STATE(818), 1, sym_text_interpolation, STATE(868), 1, sym_arguments, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1764), 11, + ACTIONS(1764), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91563,8 +91606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1762), 23, + ACTIONS(1762), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91587,6 +91629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [16796] = 25, ACTIONS(18), 1, @@ -91601,7 +91644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1695), 1, anon_sym_DOLLAR, @@ -91671,7 +91714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1703), 1, anon_sym_DOLLAR, @@ -91741,7 +91784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1695), 1, anon_sym_DOLLAR, @@ -91799,15 +91842,15 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [17081] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1775), 1, anon_sym_EQ, STATE(822), 1, sym_text_interpolation, - ACTIONS(1770), 11, + ACTIONS(1770), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91818,8 +91861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1768), 29, + ACTIONS(1768), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91848,6 +91890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [17138] = 25, ACTIONS(18), 1, @@ -91864,7 +91907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1693), 1, anon_sym_LPAREN, @@ -91920,23 +91963,23 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [17233] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1893), 1, anon_sym_LPAREN, STATE(824), 1, sym_text_interpolation, STATE(868), 1, sym_arguments, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1781), 11, + ACTIONS(1781), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91947,8 +91990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1779), 23, + ACTIONS(1779), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91971,25 +92013,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [17294] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1891), 1, anon_sym_LPAREN, STATE(794), 1, sym_arguments, STATE(825), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 11, + ACTIONS(1530), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92000,8 +92043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 23, + ACTIONS(1528), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92024,19 +92066,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, [17355] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(826), 1, sym_text_interpolation, - ACTIONS(1558), 11, + ACTIONS(1556), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92047,8 +92090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1556), 28, + ACTIONS(1554), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92076,19 +92118,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, [17414] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(586), 1, sym_arguments, STATE(827), 1, sym_text_interpolation, - ACTIONS(1546), 11, + ACTIONS(1544), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92099,8 +92142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1544), 28, + ACTIONS(1542), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92128,19 +92170,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, [17473] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(587), 1, sym_arguments, STATE(828), 1, sym_text_interpolation, - ACTIONS(1550), 11, + ACTIONS(1548), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92151,8 +92194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1548), 28, + ACTIONS(1546), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92180,19 +92222,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, [17532] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(582), 1, sym_arguments, STATE(829), 1, sym_text_interpolation, - ACTIONS(1554), 11, + ACTIONS(1552), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92203,8 +92246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 28, + ACTIONS(1550), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92232,19 +92274,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, [17591] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(581), 1, sym_arguments, STATE(830), 1, sym_text_interpolation, - ACTIONS(1562), 11, + ACTIONS(1560), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92255,8 +92298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1560), 28, + ACTIONS(1558), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92284,25 +92326,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [17650] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(590), 1, sym_arguments, STATE(831), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1687), 11, + ACTIONS(1687), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92313,8 +92356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1685), 23, + ACTIONS(1685), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92337,25 +92379,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [17711] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, STATE(590), 1, sym_arguments, STATE(832), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1687), 11, + ACTIONS(1687), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92366,8 +92409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1685), 23, + ACTIONS(1685), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92390,19 +92432,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, [17772] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1630), 1, + ACTIONS(1628), 1, anon_sym_LPAREN, STATE(612), 1, sym_arguments, STATE(833), 1, sym_text_interpolation, - ACTIONS(1707), 11, + ACTIONS(1707), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92413,8 +92456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1705), 28, + ACTIONS(1705), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92442,25 +92484,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [17831] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1630), 1, + ACTIONS(1628), 1, anon_sym_LPAREN, STATE(622), 1, sym_arguments, STATE(834), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 11, + ACTIONS(1530), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92471,8 +92514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 23, + ACTIONS(1528), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92495,6 +92537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [17892] = 25, ACTIONS(18), 1, @@ -92509,7 +92552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1693), 1, anon_sym_LPAREN, @@ -92567,23 +92610,23 @@ static const uint16_t ts_small_parse_table[] = { sym_array_creation_expression, sym__string, [17987] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1893), 1, anon_sym_LPAREN, STATE(836), 1, sym_text_interpolation, STATE(887), 1, sym_arguments, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1660), 11, + ACTIONS(1658), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92594,8 +92637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 23, + ACTIONS(1656), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92618,19 +92660,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, [18048] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1891), 1, anon_sym_LPAREN, STATE(800), 1, sym_arguments, STATE(837), 1, sym_text_interpolation, - ACTIONS(1707), 11, + ACTIONS(1707), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92641,8 +92684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1705), 28, + ACTIONS(1705), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92670,25 +92712,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [18107] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1917), 1, anon_sym_LPAREN, STATE(838), 1, sym_text_interpolation, STATE(1048), 1, sym_arguments, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1660), 11, + ACTIONS(1658), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92699,8 +92742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 23, + ACTIONS(1656), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92723,19 +92765,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, [18168] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1893), 1, anon_sym_LPAREN, STATE(839), 1, sym_text_interpolation, STATE(873), 1, sym_arguments, - ACTIONS(1546), 11, + ACTIONS(1544), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92746,8 +92789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1544), 28, + ACTIONS(1542), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92775,19 +92817,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, [18227] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1893), 1, anon_sym_LPAREN, STATE(840), 1, sym_text_interpolation, STATE(876), 1, sym_arguments, - ACTIONS(1550), 11, + ACTIONS(1548), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92798,8 +92841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1548), 28, + ACTIONS(1546), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92827,25 +92869,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [18286] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1893), 1, anon_sym_LPAREN, STATE(841), 1, sym_text_interpolation, STATE(887), 1, sym_arguments, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1660), 11, + ACTIONS(1658), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92856,8 +92899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 23, + ACTIONS(1656), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92880,6 +92922,7 @@ static 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, @@ -92894,7 +92937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1693), 1, anon_sym_LPAREN, @@ -92964,7 +93007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1693), 1, anon_sym_LPAREN, @@ -93034,7 +93077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1703), 1, anon_sym_DOLLAR, @@ -93104,7 +93147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1693), 1, anon_sym_LPAREN, @@ -93162,19 +93205,19 @@ static const uint16_t ts_small_parse_table[] = { sym_array_creation_expression, sym__string, [18727] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(846), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1534), 12, + ACTIONS(1532), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93186,8 +93229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1542), 24, + ACTIONS(1540), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93211,6 +93253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [18784] = 25, ACTIONS(18), 1, @@ -93227,7 +93270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1693), 1, anon_sym_LPAREN, @@ -93283,22 +93326,22 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [18879] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(848), 1, sym_text_interpolation, - ACTIONS(1632), 2, + ACTIONS(1630), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 12, + ACTIONS(1530), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93310,8 +93353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 22, + ACTIONS(1528), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93333,17 +93375,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, [18938] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(584), 1, sym_arguments, STATE(849), 1, sym_text_interpolation, - ACTIONS(1558), 11, + ACTIONS(1556), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93354,8 +93397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1556), 29, + ACTIONS(1554), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93384,25 +93426,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [18995] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1630), 1, + ACTIONS(1628), 1, anon_sym_LPAREN, STATE(622), 1, sym_arguments, STATE(850), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 11, + ACTIONS(1530), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93413,8 +93456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 23, + ACTIONS(1528), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93437,6 +93479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [19056] = 25, ACTIONS(18), 1, @@ -93453,7 +93496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1504), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1921), 1, sym_name, @@ -93509,17 +93552,17 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [19151] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1893), 1, anon_sym_LPAREN, STATE(852), 1, sym_text_interpolation, STATE(889), 1, sym_arguments, - ACTIONS(1562), 11, + ACTIONS(1560), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93530,8 +93573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1560), 28, + ACTIONS(1558), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93559,19 +93601,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, [19210] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1893), 1, anon_sym_LPAREN, STATE(853), 1, sym_text_interpolation, STATE(872), 1, sym_arguments, - ACTIONS(1554), 11, + ACTIONS(1552), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93582,8 +93625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 28, + ACTIONS(1550), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93611,6 +93653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [19269] = 25, ACTIONS(18), 1, @@ -93627,7 +93670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(990), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1693), 1, anon_sym_LPAREN, @@ -93683,15 +93726,15 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [19364] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(586), 1, sym_arguments, STATE(855), 1, sym_text_interpolation, - ACTIONS(1546), 11, + ACTIONS(1544), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93702,8 +93745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1544), 29, + ACTIONS(1542), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93732,15 +93774,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, [19421] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(856), 1, sym_text_interpolation, - ACTIONS(1711), 11, + ACTIONS(1711), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93751,8 +93794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1709), 30, + ACTIONS(1709), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93782,17 +93824,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, [19476] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(587), 1, sym_arguments, STATE(857), 1, sym_text_interpolation, - ACTIONS(1550), 11, + ACTIONS(1548), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93803,8 +93846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1548), 29, + ACTIONS(1546), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93833,15 +93875,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, [19533] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(858), 1, sym_text_interpolation, - ACTIONS(1835), 11, + ACTIONS(1835), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93852,8 +93895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1833), 29, + ACTIONS(1833), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93882,15 +93924,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, [19587] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(859), 1, sym_text_interpolation, - ACTIONS(1819), 11, + ACTIONS(1819), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93901,8 +93944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1817), 29, + ACTIONS(1817), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93931,15 +93973,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, [19641] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(860), 1, sym_text_interpolation, - ACTIONS(1528), 11, + ACTIONS(1526), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93950,8 +93993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1526), 29, + ACTIONS(1524), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93980,15 +94022,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, [19695] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(861), 1, sym_text_interpolation, - ACTIONS(1598), 11, + ACTIONS(1596), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93999,8 +94042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1596), 29, + ACTIONS(1594), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94029,15 +94071,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, [19749] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(862), 1, sym_text_interpolation, - ACTIONS(1582), 11, + ACTIONS(1580), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94048,8 +94091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1580), 29, + ACTIONS(1578), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94078,15 +94120,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, [19803] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(863), 1, sym_text_interpolation, - ACTIONS(1799), 11, + ACTIONS(1799), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94097,8 +94140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1797), 29, + ACTIONS(1797), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94127,15 +94169,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, [19857] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(864), 1, sym_text_interpolation, - ACTIONS(1524), 11, + ACTIONS(1522), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94146,8 +94189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1522), 29, + ACTIONS(1520), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94176,15 +94218,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, [19911] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(865), 1, sym_text_interpolation, - ACTIONS(1873), 11, + ACTIONS(1873), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94195,8 +94238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1871), 29, + ACTIONS(1871), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94225,15 +94267,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, [19965] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(866), 1, sym_text_interpolation, - ACTIONS(1869), 11, + ACTIONS(1869), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94244,8 +94287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1867), 29, + ACTIONS(1867), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94274,15 +94316,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, [20019] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(867), 1, sym_text_interpolation, - ACTIONS(1574), 11, + ACTIONS(1572), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94293,8 +94336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1572), 29, + ACTIONS(1570), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94323,15 +94365,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, [20073] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(868), 1, sym_text_interpolation, - ACTIONS(1602), 11, + ACTIONS(1600), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94342,8 +94385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1600), 29, + ACTIONS(1598), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94372,15 +94414,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, [20127] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(869), 1, sym_text_interpolation, - ACTIONS(1614), 11, + ACTIONS(1612), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94391,8 +94434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1612), 29, + ACTIONS(1610), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94421,15 +94463,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, [20181] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(870), 1, sym_text_interpolation, - ACTIONS(1606), 11, + ACTIONS(1604), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94440,8 +94483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1604), 29, + ACTIONS(1602), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94470,17 +94512,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, [20235] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1775), 1, anon_sym_EQ, STATE(871), 1, sym_text_interpolation, - ACTIONS(1770), 11, + ACTIONS(1770), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94491,8 +94534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1768), 28, + ACTIONS(1768), 29, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -94520,15 +94562,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, [20291] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(872), 1, sym_text_interpolation, - ACTIONS(1570), 11, + ACTIONS(1568), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94539,8 +94582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 29, + ACTIONS(1566), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94569,15 +94611,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, [20345] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(873), 1, sym_text_interpolation, - ACTIONS(1586), 11, + ACTIONS(1584), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94588,8 +94631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1584), 29, + ACTIONS(1582), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94618,15 +94660,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, [20399] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(874), 1, sym_text_interpolation, - ACTIONS(1811), 11, + ACTIONS(1811), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94637,8 +94680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1809), 29, + ACTIONS(1809), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94667,15 +94709,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, [20453] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(875), 1, sym_text_interpolation, - ACTIONS(1847), 11, + ACTIONS(1847), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94686,8 +94729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1845), 29, + ACTIONS(1845), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94716,15 +94758,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, [20507] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(876), 1, sym_text_interpolation, - ACTIONS(1590), 11, + ACTIONS(1588), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94735,8 +94778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1588), 29, + ACTIONS(1586), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94765,15 +94807,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, [20561] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(877), 1, sym_text_interpolation, - ACTIONS(1496), 11, + ACTIONS(1496), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94784,8 +94827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1498), 29, + ACTIONS(1498), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94814,15 +94856,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, [20615] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(878), 1, sym_text_interpolation, - ACTIONS(1578), 11, + ACTIONS(1576), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94833,8 +94876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1576), 29, + ACTIONS(1574), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94863,15 +94905,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, [20669] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(879), 1, sym_text_interpolation, - ACTIONS(1520), 11, + ACTIONS(1518), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94882,8 +94925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1518), 29, + ACTIONS(1516), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94912,15 +94954,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, [20723] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(880), 1, sym_text_interpolation, - ACTIONS(1861), 11, + ACTIONS(1861), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94931,8 +94974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1859), 29, + ACTIONS(1859), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94961,15 +95003,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, [20777] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(881), 1, sym_text_interpolation, - ACTIONS(1843), 11, + ACTIONS(1843), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94980,8 +95023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1841), 29, + ACTIONS(1841), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95010,15 +95052,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, [20831] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(882), 1, sym_text_interpolation, - ACTIONS(1514), 11, + ACTIONS(1514), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95029,8 +95072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1512), 29, + ACTIONS(1512), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95059,17 +95101,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, [20885] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1849), 1, anon_sym_COLON_COLON, STATE(883), 1, sym_text_interpolation, - ACTIONS(1594), 11, + ACTIONS(1592), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95080,8 +95123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1592), 28, + ACTIONS(1590), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95109,15 +95151,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, [20941] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(884), 1, sym_text_interpolation, - ACTIONS(1857), 11, + ACTIONS(1857), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95128,8 +95171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1855), 29, + ACTIONS(1855), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95158,15 +95200,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, [20995] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(885), 1, sym_text_interpolation, - ACTIONS(1865), 11, + ACTIONS(1865), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95177,8 +95220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1863), 29, + ACTIONS(1863), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95207,15 +95249,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, [21049] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(886), 1, sym_text_interpolation, - ACTIONS(1770), 11, + ACTIONS(1770), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95226,8 +95269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1768), 29, + ACTIONS(1768), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95256,22 +95298,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, [21103] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(887), 1, sym_text_interpolation, - ACTIONS(1600), 6, + ACTIONS(1598), 6, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1815), 11, + ACTIONS(1815), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95282,8 +95325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1813), 23, + ACTIONS(1813), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95306,15 +95348,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, [21159] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(888), 1, sym_text_interpolation, - ACTIONS(1610), 11, + ACTIONS(1608), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95325,8 +95368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1608), 29, + ACTIONS(1606), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95355,15 +95397,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, [21213] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(889), 1, sym_text_interpolation, - ACTIONS(1566), 11, + ACTIONS(1564), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95374,8 +95417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1564), 29, + ACTIONS(1562), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95404,15 +95446,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, [21267] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(890), 1, sym_text_interpolation, - ACTIONS(1795), 11, + ACTIONS(1795), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95423,8 +95466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1793), 29, + ACTIONS(1793), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95453,15 +95495,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, [21321] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(891), 1, sym_text_interpolation, - ACTIONS(1823), 11, + ACTIONS(1823), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95472,8 +95515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1821), 29, + ACTIONS(1821), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95502,15 +95544,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, [21375] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(892), 1, sym_text_interpolation, - ACTIONS(1827), 11, + ACTIONS(1827), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95521,8 +95564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1825), 29, + ACTIONS(1825), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95551,15 +95593,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, [21429] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(893), 1, sym_text_interpolation, - ACTIONS(1803), 11, + ACTIONS(1803), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95570,8 +95613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1801), 29, + ACTIONS(1801), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95600,15 +95642,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, [21483] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(894), 1, sym_text_interpolation, - ACTIONS(1853), 11, + ACTIONS(1853), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95619,8 +95662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1851), 29, + ACTIONS(1851), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95649,15 +95691,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, [21537] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(895), 1, sym_text_interpolation, - ACTIONS(1831), 11, + ACTIONS(1831), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95668,8 +95711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1829), 29, + ACTIONS(1829), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95698,12 +95740,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, [21591] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1775), 1, anon_sym_EQ, STATE(896), 1, @@ -95711,7 +95754,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1925), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1770), 11, + ACTIONS(1770), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95722,8 +95765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1768), 26, + ACTIONS(1768), 27, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, @@ -95749,15 +95791,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, [21649] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(897), 1, sym_text_interpolation, - ACTIONS(1807), 11, + ACTIONS(1807), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95768,8 +95811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1805), 29, + ACTIONS(1805), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95798,15 +95840,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, [21703] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(898), 1, sym_text_interpolation, - ACTIONS(1885), 11, + ACTIONS(1885), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95817,8 +95860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1883), 29, + ACTIONS(1883), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95847,15 +95889,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, [21757] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(899), 1, sym_text_interpolation, - ACTIONS(1881), 11, + ACTIONS(1881), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95866,8 +95909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1879), 29, + ACTIONS(1879), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95896,15 +95938,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, [21811] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(900), 1, sym_text_interpolation, - ACTIONS(1889), 11, + ACTIONS(1889), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95915,8 +95958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1887), 29, + ACTIONS(1887), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95945,21 +95987,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, [21865] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(901), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1532), 11, + ACTIONS(1530), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95970,8 +96013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 23, + ACTIONS(1528), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95994,21 +96036,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, [21920] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(902), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1687), 11, + ACTIONS(1687), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96019,8 +96062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1685), 23, + ACTIONS(1685), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96043,21 +96085,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, [21975] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(903), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1781), 11, + ACTIONS(1781), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96068,8 +96111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1779), 23, + ACTIONS(1779), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96092,21 +96134,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, [22030] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(904), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1534), 11, + ACTIONS(1532), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96117,8 +96160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1542), 23, + ACTIONS(1540), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96141,21 +96183,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, [22085] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(905), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1764), 11, + ACTIONS(1764), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96166,8 +96209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1762), 23, + ACTIONS(1762), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96190,15 +96232,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, [22140] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(906), 1, sym_text_interpolation, - ACTIONS(1815), 10, + ACTIONS(1815), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96208,8 +96251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1813), 28, + ACTIONS(1813), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96237,15 +96279,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, [22192] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(907), 1, sym_text_interpolation, - ACTIONS(1929), 10, + ACTIONS(1929), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96255,8 +96298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1927), 28, + ACTIONS(1927), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96284,15 +96326,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, [22244] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(908), 1, sym_text_interpolation, - ACTIONS(1933), 10, + ACTIONS(1933), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96302,8 +96345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1931), 28, + ACTIONS(1931), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96331,15 +96373,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, [22296] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(909), 1, sym_text_interpolation, - ACTIONS(1937), 10, + ACTIONS(1937), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96349,8 +96392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1935), 28, + ACTIONS(1935), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96378,15 +96420,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, [22348] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(910), 1, sym_text_interpolation, - ACTIONS(1941), 10, + ACTIONS(1941), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96396,8 +96439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1939), 28, + ACTIONS(1939), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96425,17 +96467,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, [22400] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1947), 1, aux_sym_binary_expression_token1, STATE(911), 1, sym_text_interpolation, - ACTIONS(1945), 10, + ACTIONS(1945), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96445,8 +96488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1943), 27, + ACTIONS(1943), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96473,15 +96515,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, [22454] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(912), 1, sym_text_interpolation, - ACTIONS(1951), 10, + ACTIONS(1951), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96491,8 +96534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 28, + ACTIONS(1949), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96520,15 +96562,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, [22506] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(913), 1, sym_text_interpolation, - ACTIONS(1933), 10, + ACTIONS(1933), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96538,8 +96581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1931), 28, + ACTIONS(1931), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96567,15 +96609,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, [22558] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(914), 1, sym_text_interpolation, - ACTIONS(1955), 10, + ACTIONS(1955), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96585,8 +96628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1953), 28, + ACTIONS(1953), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96614,15 +96656,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, [22610] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(915), 1, sym_text_interpolation, - ACTIONS(1959), 10, + ACTIONS(1959), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96632,8 +96675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1957), 28, + ACTIONS(1957), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96661,15 +96703,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, [22662] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(916), 1, sym_text_interpolation, - ACTIONS(1963), 10, + ACTIONS(1963), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96679,8 +96722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1961), 28, + ACTIONS(1961), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96708,15 +96750,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, [22714] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(917), 1, sym_text_interpolation, - ACTIONS(1967), 10, + ACTIONS(1967), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96726,8 +96769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1965), 28, + ACTIONS(1965), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96755,15 +96797,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, [22766] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(918), 1, sym_text_interpolation, - ACTIONS(1971), 10, + ACTIONS(1971), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96773,8 +96816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1969), 28, + ACTIONS(1969), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96802,15 +96844,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, [22818] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(919), 1, sym_text_interpolation, - ACTIONS(1975), 10, + ACTIONS(1975), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96820,8 +96863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1973), 28, + ACTIONS(1973), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96849,15 +96891,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, [22870] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(920), 1, sym_text_interpolation, - ACTIONS(1979), 10, + ACTIONS(1979), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96867,8 +96910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1977), 28, + ACTIONS(1977), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96896,15 +96938,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, [22922] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(921), 1, sym_text_interpolation, - ACTIONS(1983), 10, + ACTIONS(1983), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96914,8 +96957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1981), 28, + ACTIONS(1981), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96943,15 +96985,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, [22974] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(922), 1, sym_text_interpolation, - ACTIONS(1528), 10, + ACTIONS(1526), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96961,8 +97004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1526), 28, + ACTIONS(1524), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96990,15 +97032,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, [23026] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(923), 1, sym_text_interpolation, - ACTIONS(1945), 10, + ACTIONS(1945), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97008,8 +97051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1943), 28, + ACTIONS(1943), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97037,15 +97079,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, [23078] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(924), 1, sym_text_interpolation, - ACTIONS(1987), 10, + ACTIONS(1987), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97055,8 +97098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1985), 28, + ACTIONS(1985), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97084,15 +97126,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, [23130] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(925), 1, sym_text_interpolation, - ACTIONS(1991), 10, + ACTIONS(1991), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97102,8 +97145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1989), 28, + ACTIONS(1989), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97131,15 +97173,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, [23182] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(926), 1, sym_text_interpolation, - ACTIONS(1995), 10, + ACTIONS(1995), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97149,8 +97192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1993), 28, + ACTIONS(1993), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97178,15 +97220,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, [23234] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(927), 1, sym_text_interpolation, - ACTIONS(1520), 10, + ACTIONS(1518), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97196,8 +97239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1518), 28, + ACTIONS(1516), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97225,15 +97267,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, [23286] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(928), 1, sym_text_interpolation, - ACTIONS(1999), 10, + ACTIONS(1999), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97243,8 +97286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1997), 28, + ACTIONS(1997), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97272,15 +97314,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, [23338] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(929), 1, sym_text_interpolation, - ACTIONS(2003), 10, + ACTIONS(2003), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97290,8 +97333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2001), 28, + ACTIONS(2001), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97319,15 +97361,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, [23390] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(930), 1, sym_text_interpolation, - ACTIONS(2007), 10, + ACTIONS(2007), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97337,8 +97380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2005), 28, + ACTIONS(2005), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97366,15 +97408,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, [23442] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(931), 1, sym_text_interpolation, - ACTIONS(2011), 10, + ACTIONS(2011), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97384,8 +97427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2009), 28, + ACTIONS(2009), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97413,15 +97455,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, [23494] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(932), 1, sym_text_interpolation, - ACTIONS(2015), 10, + ACTIONS(2015), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97431,8 +97474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2013), 28, + ACTIONS(2013), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97460,15 +97502,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, [23546] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(933), 1, sym_text_interpolation, - ACTIONS(2019), 10, + ACTIONS(2019), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97478,8 +97521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2017), 28, + ACTIONS(2017), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97507,15 +97549,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, [23598] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(934), 1, sym_text_interpolation, - ACTIONS(1781), 10, + ACTIONS(1781), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97525,8 +97568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1779), 28, + ACTIONS(1779), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97554,15 +97596,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, [23650] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(935), 1, sym_text_interpolation, - ACTIONS(1532), 10, + ACTIONS(1530), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97572,8 +97615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 28, + ACTIONS(1528), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97601,15 +97643,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, [23702] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(936), 1, sym_text_interpolation, - ACTIONS(2023), 10, + ACTIONS(2023), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97619,8 +97662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2021), 28, + ACTIONS(2021), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97648,15 +97690,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, [23754] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(937), 1, sym_text_interpolation, - ACTIONS(2027), 10, + ACTIONS(2027), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97666,8 +97709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2025), 28, + ACTIONS(2025), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97695,15 +97737,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, [23806] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(938), 1, sym_text_interpolation, - ACTIONS(2031), 10, + ACTIONS(2031), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97713,8 +97756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2029), 28, + ACTIONS(2029), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97742,15 +97784,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, [23858] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(939), 1, sym_text_interpolation, - ACTIONS(1524), 10, + ACTIONS(1522), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97760,8 +97803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1522), 28, + ACTIONS(1520), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97789,15 +97831,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, [23910] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(940), 1, sym_text_interpolation, - ACTIONS(2035), 10, + ACTIONS(2035), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97807,8 +97850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2033), 28, + ACTIONS(2033), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97836,15 +97878,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, [23962] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(941), 1, sym_text_interpolation, - ACTIONS(2039), 10, + ACTIONS(2039), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97854,8 +97897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2037), 28, + ACTIONS(2037), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97883,15 +97925,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, [24014] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(942), 1, sym_text_interpolation, - ACTIONS(2043), 10, + ACTIONS(2043), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97901,8 +97944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2041), 28, + ACTIONS(2041), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97930,15 +97972,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, [24066] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(943), 1, sym_text_interpolation, - ACTIONS(2047), 10, + ACTIONS(2047), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97948,8 +97991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2045), 28, + ACTIONS(2045), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97977,15 +98019,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, [24118] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(944), 1, sym_text_interpolation, - ACTIONS(2051), 10, + ACTIONS(2051), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97995,8 +98038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2049), 28, + ACTIONS(2049), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98024,15 +98066,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, [24170] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(945), 1, sym_text_interpolation, - ACTIONS(2055), 10, + ACTIONS(2055), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98042,8 +98085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2053), 28, + ACTIONS(2053), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98071,15 +98113,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, [24222] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(946), 1, sym_text_interpolation, - ACTIONS(2059), 10, + ACTIONS(2059), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98089,8 +98132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2057), 28, + ACTIONS(2057), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98118,15 +98160,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, [24274] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(947), 1, sym_text_interpolation, - ACTIONS(2063), 10, + ACTIONS(2063), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98136,8 +98179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2061), 28, + ACTIONS(2061), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98165,15 +98207,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, [24326] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(948), 1, sym_text_interpolation, - ACTIONS(2067), 10, + ACTIONS(2067), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98183,8 +98226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2065), 28, + ACTIONS(2065), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98212,15 +98254,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, [24378] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(949), 1, sym_text_interpolation, - ACTIONS(1687), 10, + ACTIONS(1687), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98230,8 +98273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1685), 28, + ACTIONS(1685), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98259,15 +98301,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, [24430] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(950), 1, sym_text_interpolation, - ACTIONS(2071), 10, + ACTIONS(2071), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98277,8 +98320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2069), 28, + ACTIONS(2069), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98306,15 +98348,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, [24482] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(951), 1, sym_text_interpolation, - ACTIONS(2075), 10, + ACTIONS(2075), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98324,8 +98367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2073), 28, + ACTIONS(2073), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98353,15 +98395,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, [24534] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(952), 1, sym_text_interpolation, - ACTIONS(2079), 10, + ACTIONS(2079), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98371,8 +98414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2077), 28, + ACTIONS(2077), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98400,15 +98442,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, [24586] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(953), 1, sym_text_interpolation, - ACTIONS(2083), 10, + ACTIONS(2083), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98418,8 +98461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2081), 28, + ACTIONS(2081), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98447,15 +98489,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, [24638] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(954), 1, sym_text_interpolation, - ACTIONS(2087), 10, + ACTIONS(2087), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98465,8 +98508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2085), 28, + ACTIONS(2085), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98494,15 +98536,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, [24690] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(955), 1, sym_text_interpolation, - ACTIONS(2091), 10, + ACTIONS(2091), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98512,8 +98555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2089), 28, + ACTIONS(2089), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98541,15 +98583,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, [24742] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(956), 1, sym_text_interpolation, - ACTIONS(2095), 10, + ACTIONS(2095), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98559,8 +98602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2093), 28, + ACTIONS(2093), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98588,15 +98630,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, [24794] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(957), 1, sym_text_interpolation, - ACTIONS(2099), 10, + ACTIONS(2099), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98606,8 +98649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2097), 28, + ACTIONS(2097), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98635,15 +98677,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, [24846] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(958), 1, sym_text_interpolation, - ACTIONS(2103), 10, + ACTIONS(2103), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98653,8 +98696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2101), 28, + ACTIONS(2101), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98682,15 +98724,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, [24898] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(959), 1, sym_text_interpolation, - ACTIONS(1514), 10, + ACTIONS(1514), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98700,8 +98743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1512), 28, + ACTIONS(1512), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98729,15 +98771,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, [24950] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(960), 1, sym_text_interpolation, - ACTIONS(2107), 10, + ACTIONS(2107), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98747,8 +98790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2105), 28, + ACTIONS(2105), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98776,15 +98818,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, [25002] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(961), 1, sym_text_interpolation, - ACTIONS(2111), 10, + ACTIONS(2111), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98794,8 +98837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2109), 28, + ACTIONS(2109), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98823,15 +98865,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, [25054] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(962), 1, sym_text_interpolation, - ACTIONS(2115), 10, + ACTIONS(2115), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98841,8 +98884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 28, + ACTIONS(2113), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98870,15 +98912,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, [25106] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(963), 1, sym_text_interpolation, - ACTIONS(2119), 10, + ACTIONS(2119), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98888,8 +98931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2117), 28, + ACTIONS(2117), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98917,15 +98959,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, [25158] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(964), 1, sym_text_interpolation, - ACTIONS(2123), 10, + ACTIONS(2123), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98935,8 +98978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2121), 28, + ACTIONS(2121), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98964,15 +99006,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, [25210] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(965), 1, sym_text_interpolation, - ACTIONS(2127), 10, + ACTIONS(2127), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98982,8 +99025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2125), 28, + ACTIONS(2125), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99011,15 +99053,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, [25262] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(966), 1, sym_text_interpolation, - ACTIONS(2131), 10, + ACTIONS(2131), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99029,8 +99072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2129), 28, + ACTIONS(2129), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99058,15 +99100,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, [25314] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(967), 1, sym_text_interpolation, - ACTIONS(2135), 10, + ACTIONS(2135), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99076,8 +99119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2133), 28, + ACTIONS(2133), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99105,15 +99147,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, [25366] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(968), 1, sym_text_interpolation, - ACTIONS(2139), 10, + ACTIONS(2139), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99123,8 +99166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2137), 28, + ACTIONS(2137), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99152,15 +99194,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, [25418] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(969), 1, sym_text_interpolation, - ACTIONS(2143), 10, + ACTIONS(2143), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99170,8 +99213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2141), 28, + ACTIONS(2141), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99199,15 +99241,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, [25470] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(970), 1, sym_text_interpolation, - ACTIONS(2147), 10, + ACTIONS(2147), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99217,8 +99260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2145), 28, + ACTIONS(2145), 29, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99246,15 +99288,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, [25522] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(971), 1, sym_text_interpolation, - ACTIONS(1032), 11, + ACTIONS(1032), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99265,8 +99308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1030), 26, + ACTIONS(1030), 27, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -99292,15 +99334,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, [25573] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(972), 1, sym_text_interpolation, - ACTIONS(1108), 11, + ACTIONS(1108), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99311,8 +99354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1106), 26, + ACTIONS(1106), 27, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -99338,6 +99380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [25624] = 22, ACTIONS(18), 1, @@ -99346,10 +99389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, + ACTIONS(1683), 1, + sym_comment, ACTIONS(1713), 1, anon_sym_AMP, ACTIONS(1721), 1, @@ -99387,7 +99430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -99402,10 +99445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [25708] = 24, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2153), 1, @@ -99432,8 +99475,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(974), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -99445,9 +99488,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -99466,10 +99509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [25796] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -99494,8 +99537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(975), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -99507,9 +99550,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -99529,10 +99572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [25882] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -99557,8 +99600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(976), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -99570,9 +99613,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -99592,10 +99635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [25968] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -99614,8 +99657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(977), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -99627,9 +99670,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -99652,10 +99695,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [26048] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2157), 1, @@ -99672,8 +99715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, ACTIONS(2197), 1, anon_sym_QMARK, STATE(978), 1, @@ -99687,9 +99730,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -99712,10 +99755,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [26128] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -99734,8 +99777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(979), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -99747,9 +99790,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -99772,15 +99815,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [26208] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2201), 1, anon_sym_STAR_STAR, STATE(980), 1, sym_text_interpolation, - ACTIONS(1941), 10, + ACTIONS(1941), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99790,8 +99833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1939), 25, + ACTIONS(1939), 26, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -99816,14 +99858,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, [26260] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(981), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -99832,9 +99875,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 8, anon_sym_AMP, anon_sym_QMARK, @@ -99867,20 +99910,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DOT, [26318] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(982), 1, sym_text_interpolation, ACTIONS(2159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 8, anon_sym_AMP, anon_sym_QMARK, @@ -99915,14 +99958,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [26374] = 10, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(983), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -99931,9 +99974,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 8, anon_sym_AMP, anon_sym_QMARK, @@ -99965,16 +100008,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [26434] = 12, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2181), 1, anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(984), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -99983,9 +100026,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -100017,18 +100060,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [26498] = 15, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2181), 1, anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(985), 1, sym_text_interpolation, ACTIONS(1687), 2, @@ -100043,9 +100086,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -100072,10 +100115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [26568] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -100100,8 +100143,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(986), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -100113,9 +100156,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -100135,10 +100178,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [26654] = 17, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1687), 1, anon_sym_QMARK, ACTIONS(2151), 1, @@ -100151,8 +100194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(987), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -100164,9 +100207,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -100192,10 +100235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [26728] = 18, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1687), 1, anon_sym_QMARK, ACTIONS(2151), 1, @@ -100210,8 +100253,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(988), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -100223,9 +100266,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -100250,10 +100293,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, [26804] = 21, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -100274,8 +100317,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(989), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -100287,9 +100330,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -100311,15 +100354,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [26886] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2201), 1, anon_sym_STAR_STAR, STATE(990), 1, sym_text_interpolation, - ACTIONS(1945), 10, + ACTIONS(1945), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100329,8 +100372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1943), 25, + ACTIONS(1943), 26, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100355,12 +100397,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, [26938] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -100383,8 +100426,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(991), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -100396,9 +100439,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -100419,10 +100462,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token1, aux_sym_binary_expression_token3, [27022] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -100447,8 +100490,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(992), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -100460,9 +100503,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -100482,10 +100525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [27108] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -100504,8 +100547,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(993), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -100517,9 +100560,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -100542,10 +100585,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [27188] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -100570,8 +100613,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(994), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -100583,9 +100626,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -100605,10 +100648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [27274] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1687), 1, anon_sym_QMARK, ACTIONS(2151), 1, @@ -100627,8 +100670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(995), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -100640,9 +100683,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -100665,17 +100708,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [27354] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(996), 1, sym_text_interpolation, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 8, anon_sym_AMP, anon_sym_QMARK, @@ -100712,10 +100755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [27408] = 16, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2173), 1, @@ -100724,8 +100767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(997), 1, sym_text_interpolation, ACTIONS(1687), 2, @@ -100740,9 +100783,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -100768,16 +100811,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [27480] = 14, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2181), 1, anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(998), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -100789,9 +100832,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 3, anon_sym_AMP, anon_sym_QMARK, @@ -100822,10 +100865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [27548] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -100844,8 +100887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(999), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -100857,9 +100900,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -100882,10 +100925,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [27628] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -100910,8 +100953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(1000), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -100923,9 +100966,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -100945,10 +100988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [27714] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -100973,8 +101016,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(1001), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -100986,9 +101029,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -101008,73 +101051,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [27800] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(2151), 1, - anon_sym_AMP, - ACTIONS(2155), 1, - anon_sym_QMARK, - ACTIONS(2157), 1, - anon_sym_PIPE, - ACTIONS(2161), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2163), 1, - aux_sym_binary_expression_token2, - ACTIONS(2165), 1, - aux_sym_binary_expression_token3, - ACTIONS(2167), 1, - aux_sym_binary_expression_token4, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, - anon_sym_AMP_AMP, - ACTIONS(2173), 1, - anon_sym_CARET, - ACTIONS(2181), 1, - anon_sym_GT_EQ, - ACTIONS(2185), 1, - anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, - STATE(1002), 1, - sym_text_interpolation, - ACTIONS(2159), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2175), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2179), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2177), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2215), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [27886] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -101099,8 +101079,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, + ACTIONS(2187), 1, + anon_sym_STAR, + STATE(1002), 1, + sym_text_interpolation, + ACTIONS(2159), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2175), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2189), 2, + anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2179), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2177), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2215), 8, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [27886] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(18), 1, + anon_sym_QMARK_GT, + ACTIONS(2151), 1, + anon_sym_AMP, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, + anon_sym_PIPE, + ACTIONS(2161), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2163), 1, + aux_sym_binary_expression_token2, + ACTIONS(2165), 1, + aux_sym_binary_expression_token3, + ACTIONS(2167), 1, + aux_sym_binary_expression_token4, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2171), 1, + anon_sym_AMP_AMP, + ACTIONS(2173), 1, + anon_sym_CARET, + ACTIONS(2181), 1, + anon_sym_GT_EQ, + ACTIONS(2185), 1, + anon_sym_DOT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(1003), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -101112,9 +101155,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -101134,15 +101177,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [27972] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2201), 1, anon_sym_STAR_STAR, STATE(1004), 1, sym_text_interpolation, - ACTIONS(1955), 10, + ACTIONS(1955), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101152,8 +101195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1953), 25, + ACTIONS(1953), 26, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101178,12 +101220,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, [28024] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2157), 1, @@ -101200,8 +101243,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, ACTIONS(2221), 1, anon_sym_QMARK, STATE(1005), 1, @@ -101215,9 +101258,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -101240,10 +101283,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [28104] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -101268,8 +101311,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR, STATE(1006), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -101281,9 +101324,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2187), 2, - anon_sym_STAR, + ACTIONS(2189), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, @@ -101303,15 +101346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [28190] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2225), 1, anon_sym_STAR_STAR, STATE(1007), 1, sym_text_interpolation, - ACTIONS(1955), 10, + ACTIONS(1955), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101321,8 +101364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1953), 24, + ACTIONS(1953), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -101346,18 +101388,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, [28241] = 12, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, STATE(1008), 1, sym_text_interpolation, ACTIONS(2227), 2, @@ -101366,9 +101409,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2229), 3, anon_sym_LT, anon_sym_GT, @@ -101399,16 +101442,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [28304] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -101437,9 +101480,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -101461,18 +101504,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [28389] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2221), 1, anon_sym_QMARK, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2245), 1, @@ -101493,9 +101536,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -101520,16 +101563,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [28468] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -101552,9 +101595,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -101579,12 +101622,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [28547] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, STATE(1012), 1, sym_text_interpolation, ACTIONS(2227), 2, @@ -101593,9 +101636,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 8, anon_sym_AMP, anon_sym_QMARK, @@ -101627,20 +101670,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DOT, [28604] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, STATE(1013), 1, sym_text_interpolation, ACTIONS(2227), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 8, anon_sym_AMP, anon_sym_QMARK, @@ -101674,16 +101717,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [28659] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -101712,9 +101755,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -101736,14 +101779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [28744] = 10, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, STATE(1015), 1, sym_text_interpolation, ACTIONS(2227), 2, @@ -101752,9 +101795,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 8, anon_sym_AMP, anon_sym_QMARK, @@ -101785,18 +101828,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [28803] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2197), 1, anon_sym_QMARK, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2245), 1, @@ -101817,9 +101860,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -101844,16 +101887,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [28882] = 15, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, STATE(1017), 1, @@ -101867,9 +101910,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -101898,16 +101941,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [28951] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -101934,9 +101977,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -101959,18 +102002,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token1, aux_sym_binary_expression_token3, [29034] = 17, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1687), 1, anon_sym_QMARK, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2245), 1, @@ -101985,9 +102028,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -102015,18 +102058,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [29107] = 18, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1687), 1, anon_sym_QMARK, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2245), 1, @@ -102043,9 +102086,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -102072,16 +102115,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, [29182] = 21, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -102106,9 +102149,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -102132,16 +102175,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [29263] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -102164,9 +102207,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -102191,16 +102234,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [29342] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -102223,9 +102266,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -102250,16 +102293,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [29421] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -102282,9 +102325,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -102309,16 +102352,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [29500] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -102347,9 +102390,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -102371,18 +102414,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [29585] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1687), 1, anon_sym_QMARK, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2245), 1, @@ -102403,9 +102446,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -102430,15 +102473,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [29664] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2225), 1, anon_sym_STAR_STAR, STATE(1027), 1, sym_text_interpolation, - ACTIONS(1941), 10, + ACTIONS(1941), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102448,8 +102491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1939), 24, + ACTIONS(1939), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102473,18 +102515,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, [29715] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -102513,9 +102556,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -102537,16 +102580,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [29800] = 24, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -102577,9 +102620,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -102600,17 +102643,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [29887] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, STATE(1030), 1, sym_text_interpolation, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 8, anon_sym_AMP, anon_sym_QMARK, @@ -102646,15 +102689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [29940] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2225), 1, anon_sym_STAR_STAR, STATE(1031), 1, sym_text_interpolation, - ACTIONS(1945), 10, + ACTIONS(1945), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102664,8 +102707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1943), 24, + ACTIONS(1943), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102689,18 +102731,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, [29991] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -102729,9 +102772,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -102753,16 +102796,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [30076] = 16, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2259), 1, @@ -102778,9 +102821,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -102808,16 +102851,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [30147] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -102846,9 +102889,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -102870,16 +102913,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [30232] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -102908,9 +102951,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -102932,16 +102975,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [30317] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -102970,9 +103013,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -102994,16 +103037,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [30402] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -103032,9 +103075,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -103056,16 +103099,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [30487] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -103094,9 +103137,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -103118,16 +103161,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [30572] = 14, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_PERCENT, + ACTIONS(2237), 1, + anon_sym_STAR, STATE(1039), 1, sym_text_interpolation, ACTIONS(2227), 2, @@ -103136,9 +103179,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2237), 2, - anon_sym_STAR, + ACTIONS(2239), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -103171,16 +103214,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [30639] = 12, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, STATE(1040), 1, sym_text_interpolation, ACTIONS(2267), 2, @@ -103189,9 +103232,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2269), 3, anon_sym_LT, anon_sym_GT, @@ -103221,13 +103264,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [30701] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1041), 1, sym_text_interpolation, - ACTIONS(1987), 10, + ACTIONS(1987), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103237,8 +103280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1985), 24, + ACTIONS(1985), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103262,15 +103304,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, [30749] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1042), 1, sym_text_interpolation, - ACTIONS(1514), 10, + ACTIONS(1514), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103280,8 +103323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1512), 24, + ACTIONS(1512), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103305,15 +103347,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, [30797] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1043), 1, sym_text_interpolation, - ACTIONS(2019), 10, + ACTIONS(2019), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103323,8 +103366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2017), 24, + ACTIONS(2017), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103348,15 +103390,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, [30845] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1044), 1, sym_text_interpolation, - ACTIONS(2143), 10, + ACTIONS(2143), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103366,8 +103409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2141), 24, + ACTIONS(2141), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103391,18 +103433,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, [30893] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -103431,9 +103474,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -103454,13 +103497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [30977] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1046), 1, sym_text_interpolation, - ACTIONS(2147), 10, + ACTIONS(2147), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103470,8 +103513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2145), 24, + ACTIONS(2145), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103495,15 +103537,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, [31025] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1047), 1, sym_text_interpolation, - ACTIONS(2139), 10, + ACTIONS(2139), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103513,8 +103556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2137), 24, + ACTIONS(2137), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103538,15 +103580,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, [31073] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1048), 1, sym_text_interpolation, - ACTIONS(1815), 10, + ACTIONS(1815), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103556,8 +103599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1813), 24, + ACTIONS(1813), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103581,15 +103623,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, [31121] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1049), 1, sym_text_interpolation, - ACTIONS(2127), 10, + ACTIONS(2127), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103599,8 +103642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2125), 24, + ACTIONS(2125), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103624,15 +103666,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, [31169] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1050), 1, sym_text_interpolation, - ACTIONS(1933), 10, + ACTIONS(1933), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103642,8 +103685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1931), 24, + ACTIONS(1931), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103667,15 +103709,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, [31217] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1051), 1, sym_text_interpolation, - ACTIONS(1520), 10, + ACTIONS(1518), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103685,8 +103728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1518), 24, + ACTIONS(1516), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103710,15 +103752,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, [31265] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1052), 1, sym_text_interpolation, - ACTIONS(2031), 10, + ACTIONS(2031), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103728,8 +103771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2029), 24, + ACTIONS(2029), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103753,15 +103795,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, [31313] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1053), 1, sym_text_interpolation, - ACTIONS(2131), 10, + ACTIONS(2131), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103771,8 +103814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2129), 24, + ACTIONS(2129), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103796,15 +103838,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, [31361] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1054), 1, sym_text_interpolation, - ACTIONS(1933), 10, + ACTIONS(1933), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103814,8 +103857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1931), 24, + ACTIONS(1931), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103839,15 +103881,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, [31409] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1055), 1, sym_text_interpolation, - ACTIONS(2027), 10, + ACTIONS(2027), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103857,8 +103900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2025), 24, + ACTIONS(2025), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103882,15 +103924,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, [31457] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1056), 1, sym_text_interpolation, - ACTIONS(1937), 10, + ACTIONS(1937), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103900,8 +103943,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, + ACTIONS(1935), 25, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + 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_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_SLASH, - ACTIONS(1935), 24, + anon_sym_PERCENT, + [31505] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(18), 1, + anon_sym_QMARK_GT, + STATE(1057), 1, + sym_text_interpolation, + ACTIONS(2023), 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(2021), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103925,61 +104010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [31505] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1057), 1, - sym_text_interpolation, - ACTIONS(2023), 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(2021), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - 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_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, anon_sym_PERCENT, [31553] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -104002,9 +104045,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -104028,13 +104071,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [31631] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1059), 1, sym_text_interpolation, - ACTIONS(2035), 10, + ACTIONS(2035), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104044,8 +104087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2033), 24, + ACTIONS(2033), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104069,20 +104111,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, [31679] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2221), 1, anon_sym_QMARK, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2285), 1, @@ -104103,9 +104146,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -104129,16 +104172,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [31757] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -104167,9 +104210,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -104190,13 +104233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [31841] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1062), 1, sym_text_interpolation, - ACTIONS(1528), 10, + ACTIONS(1526), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104206,8 +104249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1526), 24, + ACTIONS(1524), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104231,11 +104273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_PERCENT, [31889] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2307), 1, aux_sym_function_static_declaration_token1, @@ -104284,13 +104327,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [31953] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1064), 1, sym_text_interpolation, - ACTIONS(1524), 10, + ACTIONS(1522), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104300,8 +104343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1522), 24, + ACTIONS(1520), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104325,15 +104367,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, [32001] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1065), 1, sym_text_interpolation, - ACTIONS(2119), 10, + ACTIONS(2119), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104343,8 +104386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2117), 24, + ACTIONS(2117), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104368,15 +104410,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, [32049] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1066), 1, sym_text_interpolation, - ACTIONS(1945), 10, + ACTIONS(1945), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104386,8 +104429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1943), 24, + ACTIONS(1943), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104411,15 +104453,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, [32097] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1067), 1, sym_text_interpolation, - ACTIONS(1941), 10, + ACTIONS(1941), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104429,8 +104472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1939), 24, + ACTIONS(1939), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104454,15 +104496,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, [32145] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1068), 1, sym_text_interpolation, - ACTIONS(2015), 10, + ACTIONS(2015), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104472,8 +104515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2013), 24, + ACTIONS(2013), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104497,17 +104539,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, [32193] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2327), 1, anon_sym_STAR_STAR, STATE(1069), 1, sym_text_interpolation, - ACTIONS(1941), 10, + ACTIONS(1941), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104517,8 +104560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1939), 23, + ACTIONS(1939), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104541,15 +104583,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, [32243] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1070), 1, sym_text_interpolation, - ACTIONS(2011), 10, + ACTIONS(2011), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104559,8 +104602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2009), 24, + ACTIONS(2009), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104584,17 +104626,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, [32291] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2329), 1, aux_sym_binary_expression_token1, STATE(1071), 1, sym_text_interpolation, - ACTIONS(1945), 10, + ACTIONS(1945), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104604,8 +104647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1943), 23, + ACTIONS(1943), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104628,15 +104670,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, [32341] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1072), 1, sym_text_interpolation, - ACTIONS(2007), 10, + ACTIONS(2007), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104646,8 +104689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2005), 24, + ACTIONS(2005), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104671,15 +104713,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, [32389] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1073), 1, sym_text_interpolation, - ACTIONS(2003), 10, + ACTIONS(2003), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104689,8 +104732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2001), 24, + ACTIONS(2001), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104714,15 +104756,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, [32437] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1074), 1, sym_text_interpolation, - ACTIONS(2123), 10, + ACTIONS(2123), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104732,8 +104775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2121), 24, + ACTIONS(2121), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104757,15 +104799,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, [32485] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1075), 1, sym_text_interpolation, - ACTIONS(1929), 10, + ACTIONS(1929), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104775,8 +104818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1927), 24, + ACTIONS(1927), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104800,15 +104842,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, [32533] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1076), 1, sym_text_interpolation, - ACTIONS(1999), 10, + ACTIONS(1999), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104818,8 +104861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1997), 24, + ACTIONS(1997), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104843,15 +104885,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, [32581] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1077), 1, sym_text_interpolation, - ACTIONS(2091), 10, + ACTIONS(2091), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104861,8 +104904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2089), 24, + ACTIONS(2089), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104886,15 +104928,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, [32629] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1078), 1, sym_text_interpolation, - ACTIONS(1971), 10, + ACTIONS(1971), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104904,8 +104947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1969), 24, + ACTIONS(1969), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104929,17 +104971,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, [32677] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2327), 1, anon_sym_STAR_STAR, STATE(1079), 1, sym_text_interpolation, - ACTIONS(1945), 10, + ACTIONS(1945), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104949,8 +104992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1943), 23, + ACTIONS(1943), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104973,15 +105015,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, [32727] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1080), 1, sym_text_interpolation, - ACTIONS(2087), 10, + ACTIONS(2087), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104991,8 +105034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2085), 24, + ACTIONS(2085), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105016,15 +105058,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, [32775] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1081), 1, sym_text_interpolation, - ACTIONS(2075), 10, + ACTIONS(2075), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105034,8 +105077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2073), 24, + ACTIONS(2073), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105059,15 +105101,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, [32823] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1082), 1, sym_text_interpolation, - ACTIONS(2115), 10, + ACTIONS(2115), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105077,8 +105120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2113), 24, + ACTIONS(2113), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105102,18 +105144,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, [32871] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -105142,9 +105185,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -105165,16 +105208,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [32955] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -105203,9 +105246,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -105226,13 +105269,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [33039] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1085), 1, sym_text_interpolation, - ACTIONS(2111), 10, + ACTIONS(2111), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105242,8 +105285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2109), 24, + ACTIONS(2109), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105267,15 +105309,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, [33087] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1086), 1, sym_text_interpolation, - ACTIONS(1951), 10, + ACTIONS(1951), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105285,8 +105328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 24, + ACTIONS(1949), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105310,15 +105352,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, [33135] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1087), 1, sym_text_interpolation, - ACTIONS(2135), 10, + ACTIONS(2135), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105328,8 +105371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2133), 24, + ACTIONS(2133), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105353,15 +105395,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, [33183] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1088), 1, sym_text_interpolation, - ACTIONS(1995), 10, + ACTIONS(1995), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105371,8 +105414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1993), 24, + ACTIONS(1993), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105396,18 +105438,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, [33231] = 24, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -105438,9 +105481,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -105460,13 +105503,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [33317] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1090), 1, sym_text_interpolation, - ACTIONS(1975), 10, + ACTIONS(1975), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105476,8 +105519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1973), 24, + ACTIONS(1973), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105501,15 +105543,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, [33365] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1091), 1, sym_text_interpolation, - ACTIONS(2107), 10, + ACTIONS(2107), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105519,8 +105562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2105), 24, + ACTIONS(2105), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105544,18 +105586,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, [33413] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -105584,9 +105627,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -105607,13 +105650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [33497] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1093), 1, sym_text_interpolation, - ACTIONS(2103), 10, + ACTIONS(2103), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105623,8 +105666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2101), 24, + ACTIONS(2101), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105648,18 +105690,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, [33545] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -105688,9 +105731,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -105711,16 +105754,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [33629] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -105749,9 +105792,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -105772,16 +105815,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [33713] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -105810,9 +105853,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -105833,13 +105876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [33797] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1097), 1, sym_text_interpolation, - ACTIONS(2099), 10, + ACTIONS(2099), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105849,8 +105892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2097), 24, + ACTIONS(2097), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105874,20 +105916,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, [33845] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2197), 1, anon_sym_QMARK, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2285), 1, @@ -105908,9 +105951,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -105934,13 +105977,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [33923] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1099), 1, sym_text_interpolation, - ACTIONS(2071), 10, + ACTIONS(2071), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105950,8 +105993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2069), 24, + ACTIONS(2069), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105975,15 +106017,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, [33971] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1100), 1, sym_text_interpolation, - ACTIONS(2095), 10, + ACTIONS(2095), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105993,8 +106036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2093), 24, + ACTIONS(2093), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106018,18 +106060,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, [34019] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -106058,9 +106101,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -106081,13 +106124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [34103] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1102), 1, sym_text_interpolation, - ACTIONS(2083), 10, + ACTIONS(2083), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106097,8 +106140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2081), 24, + ACTIONS(2081), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106122,17 +106164,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, [34151] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2327), 1, anon_sym_STAR_STAR, STATE(1103), 1, sym_text_interpolation, - ACTIONS(1955), 10, + ACTIONS(1955), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106142,8 +106185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1953), 23, + ACTIONS(1953), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106166,15 +106208,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, [34201] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1104), 1, sym_text_interpolation, - ACTIONS(1955), 10, + ACTIONS(1955), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106184,8 +106227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1953), 24, + ACTIONS(1953), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106209,15 +106251,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, [34249] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1105), 1, sym_text_interpolation, - ACTIONS(2067), 10, + ACTIONS(2067), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106227,8 +106270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2065), 24, + ACTIONS(2065), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106252,18 +106294,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, [34297] = 14, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, STATE(1106), 1, sym_text_interpolation, ACTIONS(2267), 2, @@ -106272,9 +106315,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -106306,13 +106349,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [34363] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1107), 1, sym_text_interpolation, - ACTIONS(2063), 10, + ACTIONS(2063), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106322,8 +106365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2061), 24, + ACTIONS(2061), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106347,18 +106389,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, [34411] = 16, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2299), 1, @@ -106374,9 +106417,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -106403,17 +106446,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [34481] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, STATE(1109), 1, sym_text_interpolation, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 8, anon_sym_AMP, anon_sym_QMARK, @@ -106448,18 +106491,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [34533] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1687), 1, anon_sym_QMARK, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2285), 1, @@ -106480,9 +106523,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -106506,16 +106549,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [34611] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -106538,9 +106581,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -106564,16 +106607,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [34689] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -106600,9 +106643,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -106624,16 +106667,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token1, aux_sym_binary_expression_token3, [34771] = 21, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -106658,9 +106701,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -106683,13 +106726,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [34851] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1114), 1, sym_text_interpolation, - ACTIONS(1959), 10, + ACTIONS(1959), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106699,8 +106742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1957), 24, + ACTIONS(1957), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106724,20 +106766,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, [34899] = 18, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1687), 1, anon_sym_QMARK, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2285), 1, @@ -106754,9 +106797,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -106782,18 +106825,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, [34973] = 17, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1687), 1, anon_sym_QMARK, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2285), 1, @@ -106808,9 +106851,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -106837,16 +106880,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [35045] = 15, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, STATE(1117), 1, @@ -106860,9 +106903,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -106890,13 +106933,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [35113] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1118), 1, sym_text_interpolation, - ACTIONS(2059), 10, + ACTIONS(2059), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106906,8 +106949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2057), 24, + ACTIONS(2057), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106931,16 +106973,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, [35161] = 10, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, STATE(1119), 1, sym_text_interpolation, ACTIONS(2267), 2, @@ -106949,9 +106992,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 8, anon_sym_AMP, anon_sym_QMARK, @@ -106981,20 +107024,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [35219] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, STATE(1120), 1, sym_text_interpolation, ACTIONS(2267), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 8, anon_sym_AMP, anon_sym_QMARK, @@ -107027,12 +107070,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [35273] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, STATE(1121), 1, sym_text_interpolation, ACTIONS(2267), 2, @@ -107041,9 +107084,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 8, anon_sym_AMP, anon_sym_QMARK, @@ -107074,13 +107117,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DOT, [35329] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1122), 1, sym_text_interpolation, - ACTIONS(2051), 10, + ACTIONS(2051), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107090,8 +107133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2049), 24, + ACTIONS(2049), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107115,15 +107157,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, [35377] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1123), 1, sym_text_interpolation, - ACTIONS(2055), 10, + ACTIONS(2055), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107133,8 +107176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2053), 24, + ACTIONS(2053), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107158,15 +107200,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, [35425] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1124), 1, sym_text_interpolation, - ACTIONS(998), 10, + ACTIONS(998), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107176,8 +107219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(996), 24, + ACTIONS(996), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107201,18 +107243,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, [35473] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -107241,9 +107284,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -107264,13 +107307,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [35557] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1126), 1, sym_text_interpolation, - ACTIONS(2047), 10, + ACTIONS(2047), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107280,8 +107323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2045), 24, + ACTIONS(2045), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107305,15 +107347,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, [35605] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1127), 1, sym_text_interpolation, - ACTIONS(1687), 10, + ACTIONS(1687), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107323,8 +107366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1685), 24, + ACTIONS(1685), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107348,15 +107390,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, [35653] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1128), 1, sym_text_interpolation, - ACTIONS(1006), 10, + ACTIONS(1006), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107366,8 +107409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1004), 24, + ACTIONS(1004), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107391,15 +107433,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, [35701] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1129), 1, sym_text_interpolation, - ACTIONS(1781), 10, + ACTIONS(1781), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107409,8 +107452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1779), 24, + ACTIONS(1779), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107434,15 +107476,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, [35749] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1130), 1, sym_text_interpolation, - ACTIONS(2043), 10, + ACTIONS(2043), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107452,8 +107495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2041), 24, + ACTIONS(2041), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107477,15 +107519,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, [35797] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1131), 1, sym_text_interpolation, - ACTIONS(1532), 10, + ACTIONS(1530), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107495,8 +107538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1530), 24, + ACTIONS(1528), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107520,15 +107562,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, [35845] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1132), 1, sym_text_interpolation, - ACTIONS(1963), 10, + ACTIONS(1963), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107538,8 +107581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1961), 24, + ACTIONS(1961), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107563,18 +107605,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, [35893] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -107597,9 +107640,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -107623,13 +107666,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [35971] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1134), 1, sym_text_interpolation, - ACTIONS(1979), 10, + ACTIONS(1979), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107639,8 +107682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1977), 24, + ACTIONS(1977), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107664,18 +107706,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, [36019] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2279), 1, - anon_sym_PERCENT, + ACTIONS(2277), 1, + anon_sym_STAR, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -107698,9 +107741,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2277), 2, - anon_sym_STAR, + ACTIONS(2279), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -107724,13 +107767,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [36097] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1136), 1, sym_text_interpolation, - ACTIONS(1967), 10, + ACTIONS(1967), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107740,8 +107783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1965), 24, + ACTIONS(1965), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107765,15 +107807,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, [36145] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1137), 1, sym_text_interpolation, - ACTIONS(2039), 10, + ACTIONS(2039), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107783,8 +107826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2037), 24, + ACTIONS(2037), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107808,15 +107850,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, [36193] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1138), 1, sym_text_interpolation, - ACTIONS(1991), 10, + ACTIONS(1991), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107826,8 +107869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1989), 24, + ACTIONS(1989), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107851,15 +107893,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, [36241] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1139), 1, sym_text_interpolation, - ACTIONS(2079), 10, + ACTIONS(2079), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107869,8 +107912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2077), 24, + ACTIONS(2077), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107894,15 +107936,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, [36289] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, STATE(1140), 1, sym_text_interpolation, - ACTIONS(1983), 10, + ACTIONS(1983), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107912,8 +107955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1981), 24, + ACTIONS(1981), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107937,17 +107979,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, [36337] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2333), 1, anon_sym_STAR_STAR, STATE(1141), 1, sym_text_interpolation, - ACTIONS(1941), 10, + ACTIONS(1941), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107957,8 +108000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1939), 22, + ACTIONS(1939), 23, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -107980,12 +108022,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, [36386] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -108010,8 +108053,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1142), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -108023,9 +108066,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -108042,18 +108085,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [36469] = 15, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2363), 1, anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1143), 1, sym_text_interpolation, ACTIONS(1687), 2, @@ -108068,9 +108111,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -108094,10 +108137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [36536] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -108122,8 +108165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1144), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -108135,9 +108178,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -108154,10 +108197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [36619] = 17, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1687), 1, anon_sym_QMARK, ACTIONS(2335), 1, @@ -108170,8 +108213,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1145), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -108183,9 +108226,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -108208,10 +108251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [36690] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2221), 1, anon_sym_QMARK, ACTIONS(2335), 1, @@ -108230,8 +108273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1146), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -108243,9 +108286,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -108265,10 +108308,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [36767] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -108293,8 +108336,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1147), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -108306,9 +108349,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -108325,16 +108368,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [36850] = 12, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2363), 1, anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1148), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -108343,9 +108386,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -108374,10 +108417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [36911] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -108396,8 +108439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1149), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -108409,9 +108452,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -108431,10 +108474,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [36988] = 18, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1687), 1, anon_sym_QMARK, ACTIONS(2335), 1, @@ -108449,8 +108492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1150), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -108462,9 +108505,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -108486,10 +108529,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, [37061] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -108508,8 +108551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1151), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -108521,9 +108564,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -108543,10 +108586,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [37138] = 24, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -108571,8 +108614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, ACTIONS(2373), 1, anon_sym_EQ_GT, STATE(1152), 1, @@ -108586,9 +108629,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -108604,14 +108647,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [37223] = 10, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1153), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -108620,9 +108663,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 8, anon_sym_AMP, anon_sym_QMARK, @@ -108651,10 +108694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [37280] = 21, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -108675,8 +108718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1154), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -108688,9 +108731,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -108709,15 +108752,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [37359] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2333), 1, anon_sym_STAR_STAR, STATE(1155), 1, sym_text_interpolation, - ACTIONS(1945), 10, + ACTIONS(1945), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108727,8 +108770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1943), 22, + ACTIONS(1943), 23, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -108750,12 +108792,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, [37408] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -108778,8 +108821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1156), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -108791,9 +108834,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -108811,10 +108854,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token1, aux_sym_binary_expression_token3, [37489] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -108839,8 +108882,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1157), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -108852,9 +108895,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -108871,17 +108914,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [37572] = 7, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1158), 1, sym_text_interpolation, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 8, anon_sym_AMP, anon_sym_QMARK, @@ -108915,20 +108958,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [37623] = 8, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1159), 1, sym_text_interpolation, ACTIONS(2341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 8, anon_sym_AMP, anon_sym_QMARK, @@ -108960,10 +109003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [37676] = 16, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2355), 1, @@ -108972,8 +109015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1160), 1, sym_text_interpolation, ACTIONS(1687), 2, @@ -108988,9 +109031,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -109013,10 +109056,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [37745] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -109041,8 +109084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1161), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -109054,9 +109097,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -109073,16 +109116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [37828] = 14, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2363), 1, anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1162), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -109094,9 +109137,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 3, anon_sym_AMP, anon_sym_QMARK, @@ -109124,10 +109167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [37893] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2197), 1, anon_sym_QMARK, ACTIONS(2335), 1, @@ -109146,8 +109189,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1163), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -109159,9 +109202,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -109181,10 +109224,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [37970] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -109209,8 +109252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1164), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -109222,9 +109265,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -109241,10 +109284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [38053] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -109269,8 +109312,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1165), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -109282,9 +109325,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -109301,12 +109344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [38136] = 9, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1166), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -109315,9 +109358,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(1687), 8, anon_sym_AMP, anon_sym_QMARK, @@ -109347,10 +109390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DOT, [38191] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -109369,8 +109412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1167), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -109382,9 +109425,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -109404,10 +109447,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [38268] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(1687), 1, anon_sym_QMARK, ACTIONS(2335), 1, @@ -109426,8 +109469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1168), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -109439,9 +109482,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -109461,10 +109504,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [38345] = 20, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -109483,8 +109526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1169), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -109496,9 +109539,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -109518,15 +109561,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [38422] = 6, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2333), 1, anon_sym_STAR_STAR, STATE(1170), 1, sym_text_interpolation, - ACTIONS(1955), 10, + ACTIONS(1955), 9, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109536,8 +109579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1953), 22, + ACTIONS(1953), 23, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -109559,12 +109601,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, [38471] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -109589,8 +109632,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1171), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -109602,9 +109645,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -109621,10 +109664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [38554] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -109649,8 +109692,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1172), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -109662,9 +109705,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -109681,10 +109724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, [38637] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -109709,8 +109752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_PERCENT, + ACTIONS(2369), 1, + anon_sym_STAR, STATE(1173), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -109722,9 +109765,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2369), 2, - anon_sym_STAR, + ACTIONS(2371), 2, anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, @@ -109740,17 +109783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [38720] = 23, + [38720] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2277), 1, - anon_sym_SLASH, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -109779,9 +109820,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -109789,6 +109827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2279), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2375), 3, sym__automatic_semicolon, anon_sym_SEMI, @@ -109798,7 +109840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38801] = 28, + [38799] = 28, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -109861,7 +109903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_declaration, sym_method_declaration, sym_use_declaration, - [38892] = 28, + [38890] = 28, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -109924,7 +109966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_declaration, sym_method_declaration, sym_use_declaration, - [38983] = 27, + [38981] = 27, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -109986,11 +110028,11 @@ static const uint16_t ts_small_parse_table[] = { sym_property_declaration, sym_method_declaration, sym_use_declaration, - [39072] = 24, + [39070] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -110015,8 +110057,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, ACTIONS(2431), 1, anon_sym_EQ_GT, STATE(1178), 1, @@ -110033,19 +110073,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39155] = 28, + [39151] = 28, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -110108,17 +110149,15 @@ static const uint16_t ts_small_parse_table[] = { sym_property_declaration, sym_method_declaration, sym_use_declaration, - [39246] = 25, + [39242] = 24, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_SLASH, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -110153,9 +110192,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2239), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -110163,22 +110199,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2263), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39331] = 23, + [39325] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2277), 1, - anon_sym_SLASH, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -110207,9 +110245,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -110217,6 +110252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2279), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2439), 3, sym__automatic_semicolon, anon_sym_SEMI, @@ -110226,17 +110265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39412] = 24, + [39404] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2277), 1, - anon_sym_SLASH, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -110267,9 +110304,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -110280,12 +110314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2279), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2303), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39495] = 19, + [39485] = 19, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -110294,12 +110332,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_readonly_modifier_token1, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, - ACTIONS(1681), 1, + ACTIONS(1679), 1, anon_sym_QMARK, + ACTIONS(1683), 1, + sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, STATE(1183), 1, @@ -110325,7 +110363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -110339,7 +110377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [39568] = 19, + [39558] = 19, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -110348,12 +110386,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_readonly_modifier_token1, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, - ACTIONS(1681), 1, + ACTIONS(1679), 1, anon_sym_QMARK, + ACTIONS(1683), 1, + sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, STATE(1184), 1, @@ -110379,7 +110417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -110393,17 +110431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [39641] = 24, + [39631] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_SLASH, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -110437,9 +110473,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2239), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -110447,22 +110480,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2263), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39724] = 23, + [39712] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2277), 1, - anon_sym_SLASH, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -110491,9 +110526,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -110501,6 +110533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2279), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2447), 3, sym__automatic_semicolon, anon_sym_SEMI, @@ -110510,7 +110546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39805] = 28, + [39791] = 28, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -110573,17 +110609,15 @@ static const uint16_t ts_small_parse_table[] = { sym_property_declaration, sym_method_declaration, sym_use_declaration, - [39896] = 24, + [39882] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2277), 1, - anon_sym_SLASH, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -110614,9 +110648,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -110627,12 +110658,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2279), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2303), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39979] = 28, + [39963] = 28, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -110695,17 +110730,15 @@ static const uint16_t ts_small_parse_table[] = { sym_property_declaration, sym_method_declaration, sym_use_declaration, - [40070] = 24, + [40054] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_SLASH, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -110739,9 +110772,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2239), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -110749,12 +110779,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2263), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40153] = 28, + [40135] = 28, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -110817,7 +110851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_declaration, sym_method_declaration, sym_use_declaration, - [40244] = 28, + [40226] = 28, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -110880,7 +110914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_declaration, sym_method_declaration, sym_use_declaration, - [40335] = 28, + [40317] = 28, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -110943,11 +110977,11 @@ static const uint16_t ts_small_parse_table[] = { sym_property_declaration, sym_method_declaration, sym_use_declaration, - [40426] = 23, + [40408] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -110972,8 +111006,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1194), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -110985,9 +111017,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2463), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -110995,16 +111024,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40506] = 24, + [40486] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -111029,8 +111062,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, ACTIONS(2441), 1, anon_sym_RPAREN, ACTIONS(2465), 1, @@ -111046,29 +111077,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40588] = 23, + [40566] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2277), 1, - anon_sym_SLASH, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -111097,9 +111127,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -111110,22 +111137,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2279), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2303), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40668] = 24, + [40644] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_SLASH, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -111158,9 +111187,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2239), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -111168,22 +111194,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2263), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40750] = 23, + [40724] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_SLASH, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -111212,9 +111240,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2239), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -111225,22 +111250,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2263), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40830] = 23, + [40802] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2277), 1, - anon_sym_SLASH, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -111269,9 +111296,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -111282,16 +111306,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2279), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2303), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40910] = 23, + [40880] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -111316,8 +111344,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1200), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -111329,9 +111355,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2475), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -111339,15 +111362,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40990] = 8, + [40958] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2479), 1, aux_sym_namespace_use_declaration_token3, @@ -111386,11 +111413,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [41040] = 24, + [41008] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -111415,8 +111442,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2483), 1, anon_sym_EQ_GT, ACTIONS(2485), 1, @@ -111432,23 +111457,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41122] = 23, + [41088] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -111473,8 +111499,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1203), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -111486,9 +111510,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2487), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -111496,22 +111517,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41202] = 24, + [41166] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_SLASH, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -111544,9 +111567,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2239), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -111554,16 +111574,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2263), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41284] = 23, + [41246] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -111588,8 +111612,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1205), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -111601,9 +111623,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2489), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -111611,16 +111630,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41364] = 23, + [41324] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -111645,8 +111668,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, STATE(1206), 1, sym_text_interpolation, ACTIONS(2159), 2, @@ -111658,9 +111679,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2491), 2, anon_sym_SEMI, anon_sym_COLON, @@ -111668,16 +111686,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41444] = 23, + [41402] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -111702,8 +111724,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1207), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -111715,9 +111735,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2493), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -111725,22 +111742,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41524] = 23, + [41480] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2277), 1, - anon_sym_SLASH, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -111769,9 +111788,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -111782,16 +111798,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2279), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2303), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41604] = 23, + [41558] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -111816,8 +111836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1209), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -111829,9 +111847,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2497), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -111839,22 +111854,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41684] = 23, + [41636] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_SLASH, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -111883,9 +111900,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2239), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -111896,16 +111910,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2263), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41764] = 23, + [41714] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -111930,8 +111948,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1211), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -111943,9 +111959,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2501), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -111953,22 +111966,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41844] = 23, + [41792] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_SLASH, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -111997,9 +112012,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2239), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -112010,16 +112022,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2263), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41924] = 23, + [41870] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -112044,8 +112060,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1213), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -112057,9 +112071,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2505), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -112067,16 +112078,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42004] = 23, + [41948] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -112101,8 +112116,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1214), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -112114,9 +112127,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2507), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -112124,16 +112134,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42084] = 24, + [42026] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -112158,8 +112172,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2483), 1, anon_sym_EQ_GT, ACTIONS(2509), 1, @@ -112175,23 +112187,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42166] = 23, + [42106] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -112216,8 +112229,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1216), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -112229,9 +112240,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2511), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -112239,16 +112247,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42246] = 23, + [42184] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -112273,8 +112285,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1217), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -112286,9 +112296,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2513), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -112296,16 +112303,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42326] = 24, + [42262] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -112330,8 +112341,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2483), 1, anon_sym_EQ_GT, ACTIONS(2515), 1, @@ -112347,80 +112356,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2177), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42408] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2335), 1, - anon_sym_AMP, - ACTIONS(2337), 1, - anon_sym_QMARK, - ACTIONS(2339), 1, - anon_sym_PIPE, - ACTIONS(2343), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2345), 1, - aux_sym_binary_expression_token2, - ACTIONS(2347), 1, - aux_sym_binary_expression_token3, - ACTIONS(2349), 1, - aux_sym_binary_expression_token4, - ACTIONS(2351), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2353), 1, - anon_sym_AMP_AMP, - ACTIONS(2355), 1, - anon_sym_CARET, - ACTIONS(2363), 1, - anon_sym_GT_EQ, - ACTIONS(2367), 1, - anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, - STATE(1219), 1, - sym_text_interpolation, - ACTIONS(2341), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2357), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2365), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2371), 2, + ACTIONS(2189), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2517), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2361), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2359), 4, + ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42488] = 23, + [42342] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -112445,9 +112398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, - STATE(1220), 1, + STATE(1219), 1, sym_text_interpolation, ACTIONS(2341), 2, anon_sym_PLUS, @@ -112458,9 +112409,62 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, + ACTIONS(2517), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2361), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2371), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2359), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [42420] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(18), 1, + anon_sym_QMARK_GT, + ACTIONS(2335), 1, + anon_sym_AMP, + ACTIONS(2337), 1, + anon_sym_QMARK, + ACTIONS(2339), 1, + anon_sym_PIPE, + ACTIONS(2343), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2345), 1, + aux_sym_binary_expression_token2, + ACTIONS(2347), 1, + aux_sym_binary_expression_token3, + ACTIONS(2349), 1, + aux_sym_binary_expression_token4, + ACTIONS(2351), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2353), 1, + anon_sym_AMP_AMP, + ACTIONS(2355), 1, + anon_sym_CARET, + ACTIONS(2363), 1, + anon_sym_GT_EQ, + ACTIONS(2367), 1, + anon_sym_DOT, + STATE(1220), 1, + sym_text_interpolation, + ACTIONS(2341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2357), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2519), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -112468,22 +112472,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42568] = 23, + [42498] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2277), 1, - anon_sym_SLASH, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -112512,9 +112518,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -112525,22 +112528,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2279), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2303), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42648] = 23, + [42576] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2277), 1, - anon_sym_SLASH, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -112569,9 +112574,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -112582,16 +112584,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2279), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2303), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42728] = 23, + [42654] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -112616,8 +112622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1223), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -112629,9 +112633,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2525), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -112639,16 +112640,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42808] = 23, + [42732] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -112673,8 +112678,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1224), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -112686,9 +112689,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2527), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -112696,22 +112696,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42888] = 23, + [42810] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2277), 1, - anon_sym_SLASH, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -112740,9 +112742,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -112753,22 +112752,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2279), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2303), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42968] = 23, + [42888] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2277), 1, - anon_sym_SLASH, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -112797,9 +112798,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -112810,22 +112808,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2279), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2303), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43048] = 23, + [42966] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2271), 1, anon_sym_GT_EQ, ACTIONS(2275), 1, anon_sym_DOT, - ACTIONS(2277), 1, - anon_sym_SLASH, ACTIONS(2281), 1, anon_sym_AMP, ACTIONS(2283), 1, @@ -112854,9 +112854,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2273), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2279), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -112867,16 +112864,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2279), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2303), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43128] = 23, + [43044] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -112901,8 +112902,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1228), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -112914,9 +112913,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2535), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -112924,16 +112920,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43208] = 24, + [43122] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -112958,8 +112958,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, ACTIONS(2451), 1, anon_sym_RPAREN, ACTIONS(2465), 1, @@ -112975,22 +112973,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2361), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43290] = 8, + [43202] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2479), 1, aux_sym_namespace_use_declaration_token3, @@ -113029,11 +113028,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [43340] = 23, + [43252] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -113058,8 +113057,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1231), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -113071,9 +113068,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2537), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -113081,16 +113075,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43420] = 23, + [43330] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -113115,8 +113113,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1232), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -113128,9 +113124,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2539), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -113138,16 +113131,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43500] = 23, + [43408] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -113172,8 +113169,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1233), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -113185,9 +113180,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2541), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -113195,16 +113187,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43580] = 23, + [43486] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2335), 1, anon_sym_AMP, ACTIONS(2337), 1, @@ -113229,8 +113225,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2367), 1, anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_SLASH, STATE(1234), 1, sym_text_interpolation, ACTIONS(2341), 2, @@ -113242,9 +113236,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2371), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2543), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -113252,16 +113243,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2359), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43660] = 24, + [43564] = 23, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -113286,8 +113281,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2483), 1, anon_sym_EQ_GT, ACTIONS(2545), 1, @@ -113303,23 +113296,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43742] = 23, + [43644] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -113344,8 +113338,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2547), 1, anon_sym_RBRACE, STATE(1236), 1, @@ -113359,23 +113351,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43821] = 23, + [43721] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -113400,8 +113393,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2549), 1, anon_sym_RBRACE, STATE(1237), 1, @@ -113415,31 +113406,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43900] = 17, + [43798] = 17, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, - ACTIONS(1681), 1, + ACTIONS(1679), 1, anon_sym_QMARK, + ACTIONS(1683), 1, + sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, STATE(1238), 1, @@ -113463,7 +113455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -113477,11 +113469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [43967] = 23, + [43865] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -113506,8 +113498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2551), 1, anon_sym_COLON, STATE(1239), 1, @@ -113521,23 +113511,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44046] = 23, + [43942] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -113562,8 +113553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2553), 1, anon_sym_RBRACE, STATE(1240), 1, @@ -113577,23 +113566,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44125] = 23, + [44019] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -113618,8 +113608,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2555), 1, anon_sym_RBRACE, STATE(1241), 1, @@ -113633,29 +113621,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44204] = 23, + [44096] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_SLASH, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -113686,9 +113673,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2239), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -113696,22 +113680,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2263), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44283] = 23, + [44173] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_SLASH, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -113742,9 +113728,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2239), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -113752,16 +113735,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2263), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44362] = 23, + [44250] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -113786,8 +113773,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2559), 1, anon_sym_RBRACE, STATE(1244), 1, @@ -113801,23 +113786,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44441] = 23, + [44327] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -113842,8 +113828,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2561), 1, anon_sym_RBRACE, STATE(1245), 1, @@ -113857,29 +113841,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44520] = 23, + [44404] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_SLASH, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -113910,9 +113893,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2239), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -113920,12 +113900,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2263), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44599] = 24, + [44481] = 24, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -113982,11 +113966,11 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [44680] = 23, + [44562] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114011,8 +113995,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2579), 1, anon_sym_RBRACE, STATE(1248), 1, @@ -114026,23 +114008,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44759] = 23, + [44639] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114067,8 +114050,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2581), 1, anon_sym_RBRACE, STATE(1249), 1, @@ -114082,23 +114063,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44838] = 23, + [44716] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114123,8 +114105,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2583), 1, anon_sym_RBRACE, STATE(1250), 1, @@ -114138,23 +114118,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44917] = 23, + [44793] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114179,8 +114160,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2585), 1, anon_sym_RBRACE, STATE(1251), 1, @@ -114194,23 +114173,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44996] = 23, + [44870] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114235,8 +114215,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2587), 1, anon_sym_RPAREN, STATE(1252), 1, @@ -114250,23 +114228,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45075] = 23, + [44947] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114291,8 +114270,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2589), 1, anon_sym_RBRACE, STATE(1253), 1, @@ -114306,23 +114283,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45154] = 23, + [45024] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114347,8 +114325,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2591), 1, anon_sym_COLON, STATE(1254), 1, @@ -114362,23 +114338,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45233] = 23, + [45101] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114403,8 +114380,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2593), 1, anon_sym_RBRACE, STATE(1255), 1, @@ -114418,23 +114393,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45312] = 23, + [45178] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114459,8 +114435,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2595), 1, aux_sym_namespace_aliasing_clause_token1, STATE(1256), 1, @@ -114474,23 +114448,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45391] = 23, + [45255] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114515,8 +114490,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2597), 1, anon_sym_EQ_GT, STATE(1257), 1, @@ -114530,23 +114503,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45470] = 23, + [45332] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114571,8 +114545,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2599), 1, anon_sym_RBRACE, STATE(1258), 1, @@ -114586,23 +114558,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45549] = 23, + [45409] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114627,8 +114600,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2601), 1, anon_sym_COLON, STATE(1259), 1, @@ -114642,79 +114613,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2177), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45628] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2151), 1, - anon_sym_AMP, - ACTIONS(2155), 1, - anon_sym_QMARK, - ACTIONS(2157), 1, - anon_sym_PIPE, - ACTIONS(2161), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2163), 1, - aux_sym_binary_expression_token2, - ACTIONS(2165), 1, - aux_sym_binary_expression_token3, - ACTIONS(2167), 1, - aux_sym_binary_expression_token4, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, - anon_sym_AMP_AMP, - ACTIONS(2173), 1, - anon_sym_CARET, - ACTIONS(2181), 1, - anon_sym_GT_EQ, - ACTIONS(2185), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, - ACTIONS(2603), 1, - anon_sym_RBRACE, - STATE(1260), 1, - sym_text_interpolation, - ACTIONS(2159), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2175), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2189), 2, + ACTIONS(2189), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2179), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45707] = 23, + [45486] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114739,8 +114655,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, + ACTIONS(2603), 1, + anon_sym_RBRACE, + STATE(1260), 1, + sym_text_interpolation, + ACTIONS(2159), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2175), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2177), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [45563] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(18), 1, + anon_sym_QMARK_GT, + ACTIONS(2151), 1, + anon_sym_AMP, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, + anon_sym_PIPE, + ACTIONS(2161), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2163), 1, + aux_sym_binary_expression_token2, + ACTIONS(2165), 1, + aux_sym_binary_expression_token3, + ACTIONS(2167), 1, + aux_sym_binary_expression_token4, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2171), 1, + anon_sym_AMP_AMP, + ACTIONS(2173), 1, + anon_sym_CARET, + ACTIONS(2181), 1, + anon_sym_GT_EQ, + ACTIONS(2185), 1, + anon_sym_DOT, ACTIONS(2605), 1, anon_sym_RBRACE, STATE(1261), 1, @@ -114754,23 +114723,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45786] = 23, + [45640] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114795,8 +114765,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2607), 1, anon_sym_RBRACE, STATE(1262), 1, @@ -114810,23 +114778,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45865] = 23, + [45717] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114851,8 +114820,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2609), 1, anon_sym_RBRACE, STATE(1263), 1, @@ -114866,23 +114833,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45944] = 23, + [45794] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114907,8 +114875,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2611), 1, anon_sym_RBRACE, STATE(1264), 1, @@ -114922,23 +114888,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46023] = 23, + [45871] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -114963,8 +114930,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2613), 1, aux_sym_namespace_aliasing_clause_token1, STATE(1265), 1, @@ -114978,23 +114943,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46102] = 23, + [45948] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -115019,8 +114985,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2615), 1, anon_sym_RBRACE, STATE(1266), 1, @@ -115034,23 +114998,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46181] = 23, + [46025] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -115075,8 +115040,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2617), 1, anon_sym_RBRACE, STATE(1267), 1, @@ -115090,23 +115053,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46260] = 23, + [46102] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -115131,8 +115095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2619), 1, anon_sym_RBRACE, STATE(1268), 1, @@ -115146,31 +115108,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46339] = 17, + [46179] = 17, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, - ACTIONS(1681), 1, + ACTIONS(1679), 1, anon_sym_QMARK, + ACTIONS(1683), 1, + sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, STATE(1269), 1, @@ -115194,7 +115157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115208,11 +115171,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46406] = 23, + [46246] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -115237,8 +115200,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2621), 1, aux_sym_namespace_aliasing_clause_token1, STATE(1270), 1, @@ -115252,29 +115213,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46485] = 23, + [46323] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_SLASH, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -115305,9 +115265,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2239), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -115315,16 +115272,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2263), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46564] = 23, + [46400] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -115349,8 +115310,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2623), 1, anon_sym_RBRACE, STATE(1272), 1, @@ -115364,23 +115323,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46643] = 23, + [46477] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -115405,8 +115365,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2625), 1, anon_sym_RBRACE, STATE(1273), 1, @@ -115420,22 +115378,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46722] = 5, + [46554] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1274), 1, sym_text_interpolation, @@ -115470,11 +115429,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [46765] = 23, + [46597] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -115499,8 +115458,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2631), 1, anon_sym_RBRACE, STATE(1275), 1, @@ -115514,23 +115471,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46844] = 23, + [46674] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -115555,8 +115513,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2633), 1, anon_sym_RBRACE, STATE(1276), 1, @@ -115570,19 +115526,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46923] = 24, + [46751] = 24, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -115639,11 +115596,11 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [47004] = 23, + [46832] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -115668,8 +115625,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2637), 1, anon_sym_RBRACE, STATE(1278), 1, @@ -115683,23 +115638,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47083] = 23, + [46909] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -115724,8 +115680,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2639), 1, anon_sym_RBRACE, STATE(1279), 1, @@ -115739,23 +115693,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47162] = 23, + [46986] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -115780,8 +115735,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2641), 1, anon_sym_RPAREN, STATE(1280), 1, @@ -115795,23 +115748,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47241] = 23, + [47063] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -115836,8 +115790,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2643), 1, anon_sym_RBRACE, STATE(1281), 1, @@ -115851,29 +115803,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47320] = 23, + [47140] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_SLASH, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -115904,9 +115855,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2239), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -115914,12 +115862,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2263), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47399] = 23, + [47217] = 23, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -115975,11 +115927,11 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [47478] = 23, + [47296] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -116004,8 +115956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2679), 1, anon_sym_RBRACE, STATE(1284), 1, @@ -116019,23 +115969,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47557] = 23, + [47373] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -116060,8 +116011,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2681), 1, anon_sym_RBRACE, STATE(1285), 1, @@ -116075,23 +116024,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47636] = 23, + [47450] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -116116,8 +116066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2683), 1, anon_sym_RBRACE, STATE(1286), 1, @@ -116131,29 +116079,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47715] = 23, + [47527] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2231), 1, anon_sym_GT_EQ, ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2237), 1, - anon_sym_SLASH, ACTIONS(2241), 1, anon_sym_AMP, ACTIONS(2243), 1, @@ -116184,9 +116131,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2239), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -116194,16 +116138,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2263), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47794] = 23, + [47604] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -116228,8 +116176,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2685), 1, aux_sym_namespace_aliasing_clause_token1, STATE(1288), 1, @@ -116243,23 +116189,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47873] = 23, + [47681] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -116284,8 +116231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2687), 1, anon_sym_RBRACE, STATE(1289), 1, @@ -116299,23 +116244,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47952] = 23, + [47758] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -116340,8 +116286,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2645), 1, anon_sym_RBRACE, STATE(1290), 1, @@ -116355,23 +116299,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48031] = 23, + [47835] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -116396,8 +116341,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2557), 1, anon_sym_RBRACE, STATE(1291), 1, @@ -116411,23 +116354,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48110] = 23, + [47912] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -116452,8 +116396,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2689), 1, anon_sym_RBRACE, STATE(1292), 1, @@ -116467,23 +116409,189 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, + ACTIONS(2179), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2189), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2177), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [47989] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(18), 1, + anon_sym_QMARK_GT, + ACTIONS(2151), 1, + anon_sym_AMP, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, + anon_sym_PIPE, + ACTIONS(2161), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2163), 1, + aux_sym_binary_expression_token2, + ACTIONS(2165), 1, + aux_sym_binary_expression_token3, + ACTIONS(2167), 1, + aux_sym_binary_expression_token4, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2171), 1, + anon_sym_AMP_AMP, + ACTIONS(2173), 1, + anon_sym_CARET, + ACTIONS(2181), 1, + anon_sym_GT_EQ, + ACTIONS(2185), 1, + anon_sym_DOT, + ACTIONS(2691), 1, + anon_sym_RBRACE, + STATE(1293), 1, + sym_text_interpolation, + ACTIONS(2159), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2175), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2177), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [48066] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(18), 1, + anon_sym_QMARK_GT, + ACTIONS(2151), 1, + anon_sym_AMP, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, + anon_sym_PIPE, + ACTIONS(2161), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2163), 1, + aux_sym_binary_expression_token2, + ACTIONS(2165), 1, + aux_sym_binary_expression_token3, + ACTIONS(2167), 1, + aux_sym_binary_expression_token4, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2171), 1, + anon_sym_AMP_AMP, + ACTIONS(2173), 1, + anon_sym_CARET, + ACTIONS(2181), 1, + anon_sym_GT_EQ, + ACTIONS(2185), 1, + anon_sym_DOT, + ACTIONS(2693), 1, + anon_sym_EQ_GT, + STATE(1294), 1, + sym_text_interpolation, + ACTIONS(2159), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2175), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48189] = 23, + [48143] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(2151), 1, + anon_sym_AMP, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, + anon_sym_PIPE, + ACTIONS(2161), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2163), 1, + aux_sym_binary_expression_token2, + ACTIONS(2165), 1, + aux_sym_binary_expression_token3, + ACTIONS(2167), 1, + aux_sym_binary_expression_token4, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2171), 1, + anon_sym_AMP_AMP, + ACTIONS(2173), 1, + anon_sym_CARET, + ACTIONS(2181), 1, + anon_sym_GT_EQ, + ACTIONS(2185), 1, + anon_sym_DOT, + ACTIONS(2695), 1, + anon_sym_COLON, + STATE(1295), 1, + sym_text_interpolation, + ACTIONS(2159), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2175), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2179), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2177), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [48220] = 22, + ACTIONS(5), 1, sym_comment, + ACTIONS(18), 1, + anon_sym_QMARK_GT, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -116508,11 +116616,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, - ACTIONS(2691), 1, + ACTIONS(2697), 1, anon_sym_RBRACE, - STATE(1293), 1, + STATE(1296), 1, sym_text_interpolation, ACTIONS(2159), 2, anon_sym_PLUS, @@ -116523,191 +116629,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2177), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [48268] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2151), 1, - anon_sym_AMP, - ACTIONS(2155), 1, - anon_sym_QMARK, - ACTIONS(2157), 1, - anon_sym_PIPE, - ACTIONS(2161), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2163), 1, - aux_sym_binary_expression_token2, - ACTIONS(2165), 1, - aux_sym_binary_expression_token3, - ACTIONS(2167), 1, - aux_sym_binary_expression_token4, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, - anon_sym_AMP_AMP, - ACTIONS(2173), 1, - anon_sym_CARET, - ACTIONS(2181), 1, - anon_sym_GT_EQ, - ACTIONS(2185), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, - ACTIONS(2693), 1, - anon_sym_EQ_GT, - STATE(1294), 1, - sym_text_interpolation, - ACTIONS(2159), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2175), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2189), 2, + ACTIONS(2189), 3, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2179), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2177), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [48347] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2151), 1, - anon_sym_AMP, - ACTIONS(2155), 1, - anon_sym_QMARK, - ACTIONS(2157), 1, - anon_sym_PIPE, - ACTIONS(2161), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2163), 1, - aux_sym_binary_expression_token2, - ACTIONS(2165), 1, - aux_sym_binary_expression_token3, - ACTIONS(2167), 1, - aux_sym_binary_expression_token4, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, - anon_sym_AMP_AMP, - ACTIONS(2173), 1, - anon_sym_CARET, - ACTIONS(2181), 1, - anon_sym_GT_EQ, - ACTIONS(2185), 1, - anon_sym_DOT, - ACTIONS(2187), 1, anon_sym_SLASH, - ACTIONS(2695), 1, - anon_sym_COLON, - STATE(1295), 1, - sym_text_interpolation, - ACTIONS(2159), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2175), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2179), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48426] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [48297] = 22, + ACTIONS(5), 1, sym_comment, - ACTIONS(2151), 1, - anon_sym_AMP, - ACTIONS(2155), 1, - anon_sym_QMARK, - ACTIONS(2157), 1, - anon_sym_PIPE, - ACTIONS(2161), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2163), 1, - aux_sym_binary_expression_token2, - ACTIONS(2165), 1, - aux_sym_binary_expression_token3, - ACTIONS(2167), 1, - aux_sym_binary_expression_token4, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, - anon_sym_AMP_AMP, - ACTIONS(2173), 1, - anon_sym_CARET, - ACTIONS(2181), 1, - anon_sym_GT_EQ, - ACTIONS(2185), 1, - anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, - ACTIONS(2697), 1, - anon_sym_RBRACE, - STATE(1296), 1, - sym_text_interpolation, - ACTIONS(2159), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2175), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2183), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2179), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2177), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [48505] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -116732,8 +116671,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2699), 1, anon_sym_RBRACE, STATE(1297), 1, @@ -116747,23 +116684,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48584] = 23, + [48374] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -116788,8 +116726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2701), 1, anon_sym_RBRACE, STATE(1298), 1, @@ -116803,23 +116739,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48663] = 23, + [48451] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -116844,8 +116781,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2703), 1, anon_sym_RPAREN, STATE(1299), 1, @@ -116859,23 +116794,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48742] = 23, + [48528] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -116900,8 +116836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2705), 1, anon_sym_EQ_GT, STATE(1300), 1, @@ -116915,23 +116849,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48821] = 23, + [48605] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -116956,8 +116891,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2707), 1, anon_sym_RBRACE, STATE(1301), 1, @@ -116971,23 +116904,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48900] = 23, + [48682] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -117012,8 +116946,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2709), 1, anon_sym_RBRACE, STATE(1302), 1, @@ -117027,23 +116959,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48979] = 23, + [48759] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -117068,8 +117001,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2711), 1, anon_sym_RPAREN, STATE(1303), 1, @@ -117083,23 +117014,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49058] = 23, + [48836] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -117124,8 +117056,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2713), 1, anon_sym_RBRACE, STATE(1304), 1, @@ -117139,19 +117069,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49137] = 24, + [48913] = 24, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -117208,7 +117139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [49218] = 24, + [48994] = 24, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -117265,11 +117196,11 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [49299] = 23, + [49075] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -117294,8 +117225,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2719), 1, anon_sym_RBRACE, STATE(1307), 1, @@ -117309,23 +117238,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49378] = 23, + [49152] = 22, + ACTIONS(5), 1, + sym_comment, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2151), 1, anon_sym_AMP, ACTIONS(2155), 1, @@ -117350,8 +117280,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2185), 1, anon_sym_DOT, - ACTIONS(2187), 1, - anon_sym_SLASH, ACTIONS(2721), 1, anon_sym_RBRACE, STATE(1308), 1, @@ -117365,22 +117293,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2183), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2189), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(2179), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + ACTIONS(2189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, ACTIONS(2177), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49457] = 5, + [49229] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1309), 1, sym_text_interpolation, @@ -117414,14 +117343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49499] = 16, + [49271] = 16, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2727), 1, sym_name, @@ -117462,19 +117391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [49563] = 16, + [49335] = 16, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, - ACTIONS(1681), 1, + ACTIONS(1679), 1, anon_sym_QMARK, + ACTIONS(1683), 1, + sym_comment, ACTIONS(2735), 1, sym_bottom_type, STATE(1311), 1, @@ -117496,7 +117425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -117510,10 +117439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [49627] = 5, + [49399] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1312), 1, sym_text_interpolation, @@ -117547,10 +117476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49669] = 6, + [49441] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2741), 1, aux_sym_namespace_use_declaration_token3, @@ -117585,10 +117514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49713] = 5, + [49485] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1314), 1, sym_text_interpolation, @@ -117621,10 +117550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49754] = 5, + [49526] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1315), 1, sym_text_interpolation, @@ -117657,10 +117586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49795] = 5, + [49567] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1316), 1, sym_text_interpolation, @@ -117693,10 +117622,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49836] = 5, + [49608] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1317), 1, sym_text_interpolation, @@ -117729,7 +117658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49877] = 7, + [49649] = 7, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -117766,7 +117695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49921] = 8, + [49693] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -117804,14 +117733,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49967] = 13, + [49739] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2727), 1, sym_name, @@ -117845,14 +117774,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50021] = 13, + [49793] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2727), 1, sym_name, @@ -117886,19 +117815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50075] = 13, + [49847] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, - ACTIONS(1681), 1, + ACTIONS(1679), 1, anon_sym_QMARK, + ACTIONS(1683), 1, + sym_comment, STATE(1322), 1, sym_text_interpolation, STATE(1566), 1, @@ -117913,7 +117842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -117927,19 +117856,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50129] = 13, + [49901] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, - ACTIONS(1681), 1, + ACTIONS(1679), 1, anon_sym_QMARK, + ACTIONS(1683), 1, + sym_comment, STATE(1323), 1, sym_text_interpolation, STATE(1566), 1, @@ -117954,7 +117883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -117968,7 +117897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50183] = 5, + [49955] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -118001,7 +117930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50221] = 5, + [49993] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -118034,7 +117963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50259] = 5, + [50031] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -118067,17 +117996,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50297] = 13, + [50069] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, + ACTIONS(1683), 1, + sym_comment, ACTIONS(1721), 1, anon_sym_QMARK, STATE(1327), 1, @@ -118094,7 +118023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -118108,17 +118037,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50351] = 13, + [50123] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, + ACTIONS(1683), 1, + sym_comment, ACTIONS(1721), 1, anon_sym_QMARK, STATE(1328), 1, @@ -118135,7 +118064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -118149,7 +118078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50405] = 5, + [50177] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -118182,17 +118111,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50443] = 11, + [50215] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, + ACTIONS(1683), 1, + sym_comment, STATE(1330), 1, sym_text_interpolation, STATE(1566), 1, @@ -118204,7 +118133,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1629), 2, sym_named_type, sym_primitive_type, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -118218,17 +118147,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50490] = 11, + [50262] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, + ACTIONS(1683), 1, + sym_comment, STATE(1331), 1, sym_text_interpolation, STATE(1566), 1, @@ -118240,7 +118169,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1629), 2, sym_named_type, sym_primitive_type, - ACTIONS(1673), 13, + ACTIONS(1671), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -118254,14 +118183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50537] = 11, + [50309] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2727), 1, sym_name, @@ -118290,10 +118219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50584] = 5, + [50356] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1333), 1, sym_text_interpolation, @@ -118319,10 +118248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50618] = 18, + [50390] = 18, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2377), 1, aux_sym_function_static_declaration_token1, @@ -118360,10 +118289,10 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, - [50677] = 5, + [50449] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1335), 1, sym_text_interpolation, @@ -118388,10 +118317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50710] = 15, + [50482] = 15, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2381), 1, aux_sym_namespace_use_declaration_token2, @@ -118425,7 +118354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [50762] = 16, + [50534] = 16, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -118463,7 +118392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [50816] = 15, + [50588] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -118500,7 +118429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [50868] = 6, + [50640] = 6, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -118527,10 +118456,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, - [50901] = 14, + [50673] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2381), 1, aux_sym_namespace_use_declaration_token2, @@ -118562,10 +118491,10 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [50950] = 14, + [50722] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2381), 1, aux_sym_namespace_use_declaration_token2, @@ -118597,7 +118526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [50999] = 7, + [50771] = 7, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -118625,7 +118554,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, - [51034] = 15, + [50806] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -118661,7 +118590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [51085] = 15, + [50857] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -118697,7 +118626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [51136] = 15, + [50908] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -118733,7 +118662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [51187] = 14, + [50959] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -118768,10 +118697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [51236] = 12, + [51008] = 12, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2310), 1, aux_sym_namespace_use_declaration_token2, @@ -118800,10 +118729,10 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [51280] = 5, + [51052] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1348), 1, sym_text_interpolation, @@ -118825,7 +118754,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - [51310] = 4, + [51082] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -118848,7 +118777,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, anon_sym_POUND_LBRACK, - [51337] = 4, + [51109] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -118871,10 +118800,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, anon_sym_POUND_LBRACK, - [51364] = 13, + [51136] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2786), 1, sym_escape_sequence, @@ -118903,7 +118832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [51409] = 4, + [51181] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -118926,7 +118855,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, anon_sym_POUND_LBRACK, - [51436] = 4, + [51208] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -118949,7 +118878,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, anon_sym_POUND_LBRACK, - [51463] = 4, + [51235] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -118971,12 +118900,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [51489] = 10, + [51261] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(593), 1, anon_sym_LT_LT_LT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2877), 1, sym_integer, @@ -118999,7 +118928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_heredoc, sym_nowdoc, - [51527] = 4, + [51299] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119021,7 +118950,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [51553] = 4, + [51325] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119043,10 +118972,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [51579] = 13, + [51351] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2883), 1, anon_sym_LBRACE, @@ -119074,7 +119003,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1537), 2, sym__complex_string_part, sym__simple_string_part, - [51623] = 4, + [51395] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119096,7 +119025,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [51649] = 4, + [51421] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119118,7 +119047,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [51675] = 4, + [51447] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119140,7 +119069,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [51701] = 4, + [51473] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119162,7 +119091,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [51727] = 4, + [51499] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119184,7 +119113,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [51753] = 4, + [51525] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119206,10 +119135,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [51779] = 14, + [51551] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2908), 1, anon_sym_LBRACE, @@ -119238,10 +119167,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1537), 2, sym__complex_string_part, sym__simple_string_part, - [51825] = 14, + [51597] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2908), 1, anon_sym_LBRACE, @@ -119270,7 +119199,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1537), 2, sym__complex_string_part, sym__simple_string_part, - [51871] = 4, + [51643] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119292,7 +119221,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [51897] = 4, + [51669] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119314,7 +119243,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [51923] = 4, + [51695] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119336,7 +119265,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [51949] = 4, + [51721] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119358,7 +119287,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [51975] = 4, + [51747] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119380,7 +119309,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52001] = 4, + [51773] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119402,7 +119331,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52027] = 4, + [51799] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119424,7 +119353,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52053] = 4, + [51825] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119446,10 +119375,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52079] = 14, + [51851] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2908), 1, anon_sym_LBRACE, @@ -119478,7 +119407,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1537), 2, sym__complex_string_part, sym__simple_string_part, - [52125] = 4, + [51897] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119500,10 +119429,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52151] = 14, + [51923] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2908), 1, anon_sym_LBRACE, @@ -119532,10 +119461,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1537), 2, sym__complex_string_part, sym__simple_string_part, - [52197] = 15, + [51969] = 15, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2387), 1, aux_sym_final_modifier_token1, @@ -119564,19 +119493,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(1899), 2, sym_final_modifier, sym_abstract_modifier, - [52244] = 5, + [52016] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1379), 1, sym_text_interpolation, - ACTIONS(1604), 4, + ACTIONS(1602), 4, sym_encapsed_string_chars_heredoc, sym_encapsed_string_chars_after_variable_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(1606), 9, + ACTIONS(1604), 9, anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_LBRACK, @@ -119586,7 +119515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [52271] = 4, + [52043] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119607,12 +119536,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52296] = 12, + [52068] = 12, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2950), 1, sym_name, @@ -119636,7 +119565,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [52337] = 4, + [52109] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119657,7 +119586,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52362] = 8, + [52134] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -119682,7 +119611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [52395] = 4, + [52167] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119703,7 +119632,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52420] = 4, + [52192] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119724,7 +119653,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52445] = 4, + [52217] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119745,7 +119674,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52470] = 4, + [52242] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119766,7 +119695,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52495] = 4, + [52267] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119787,7 +119716,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52520] = 4, + [52292] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119808,7 +119737,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52545] = 4, + [52317] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119829,12 +119758,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52570] = 12, + [52342] = 12, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2950), 1, sym_name, @@ -119858,7 +119787,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [52611] = 4, + [52383] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119879,7 +119808,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52636] = 4, + [52408] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119900,10 +119829,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52661] = 13, + [52433] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2988), 1, anon_sym_LBRACE, @@ -119930,7 +119859,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1595), 2, sym__complex_string_part, sym__simple_string_part, - [52704] = 4, + [52476] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119951,7 +119880,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52729] = 4, + [52501] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119972,7 +119901,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52754] = 4, + [52526] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119993,10 +119922,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52779] = 13, + [52551] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2988), 1, anon_sym_LBRACE, @@ -120023,7 +119952,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1595), 2, sym__complex_string_part, sym__simple_string_part, - [52822] = 4, + [52594] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120044,7 +119973,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52847] = 4, + [52619] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120065,7 +119994,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52872] = 4, + [52644] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120086,10 +120015,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52897] = 15, + [52669] = 15, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2387), 1, aux_sym_final_modifier_token1, @@ -120118,7 +120047,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1909), 2, sym_final_modifier, sym_abstract_modifier, - [52944] = 4, + [52716] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120139,7 +120068,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52969] = 4, + [52741] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120160,10 +120089,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52994] = 12, + [52766] = 12, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3020), 1, anon_sym_LBRACE, @@ -120189,10 +120118,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1595), 2, sym__complex_string_part, sym__simple_string_part, - [53035] = 13, + [52807] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2988), 1, anon_sym_LBRACE, @@ -120219,7 +120148,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1595), 2, sym__complex_string_part, sym__simple_string_part, - [53078] = 4, + [52850] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120240,7 +120169,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53103] = 4, + [52875] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120261,10 +120190,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53128] = 13, + [52900] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2988), 1, anon_sym_LBRACE, @@ -120291,7 +120220,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1595), 2, sym__complex_string_part, sym__simple_string_part, - [53171] = 4, + [52943] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120312,7 +120241,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53196] = 4, + [52968] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120333,7 +120262,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53221] = 4, + [52993] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120354,14 +120283,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53246] = 12, + [53018] = 12, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3046), 1, sym_name, @@ -120382,14 +120311,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53286] = 12, + [53058] = 12, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3046), 1, sym_name, @@ -120410,14 +120339,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53326] = 12, + [53098] = 12, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3046), 1, sym_name, @@ -120438,14 +120367,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53366] = 12, + [53138] = 12, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3046), 1, sym_name, @@ -120466,12 +120395,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53406] = 11, + [53178] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2950), 1, sym_name, @@ -120492,14 +120421,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53443] = 11, + [53215] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3046), 1, sym_name, @@ -120518,14 +120447,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53480] = 11, + [53252] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3046), 1, sym_name, @@ -120544,14 +120473,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53517] = 11, + [53289] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2950), 1, sym_name, @@ -120570,13 +120499,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53554] = 10, + [53326] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1683), 1, + ACTIONS(1681), 1, anon_sym_DOLLAR, + ACTIONS(1683), 1, + sym_comment, ACTIONS(1849), 1, anon_sym_COLON_COLON, ACTIONS(2745), 1, @@ -120589,20 +120518,20 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(1773), 1, sym_static_variable_declaration, - ACTIONS(1592), 5, + ACTIONS(1590), 5, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [53589] = 11, + [53361] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3046), 1, sym_name, @@ -120621,12 +120550,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53626] = 11, + [53398] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2950), 1, sym_name, @@ -120647,13 +120576,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53663] = 10, + [53435] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1683), 1, + ACTIONS(1681), 1, anon_sym_DOLLAR, + ACTIONS(1683), 1, + sym_comment, ACTIONS(1849), 1, anon_sym_COLON_COLON, ACTIONS(2745), 1, @@ -120666,21 +120595,21 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(1824), 1, sym_static_variable_declaration, - ACTIONS(1592), 5, + ACTIONS(1590), 5, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [53698] = 10, + [53470] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, + ACTIONS(1683), 1, + sym_comment, ACTIONS(3064), 1, aux_sym_namespace_aliasing_clause_token1, ACTIONS(3066), 1, @@ -120691,13 +120620,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [53733] = 5, + [53505] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -120716,18 +120645,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [53757] = 5, + [53529] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1427), 1, sym_text_interpolation, - ACTIONS(1604), 3, + ACTIONS(1602), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(1606), 7, + ACTIONS(1604), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -120735,7 +120664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [53781] = 5, + [53553] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -120754,7 +120683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [53805] = 5, + [53577] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -120773,7 +120702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [53829] = 5, + [53601] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -120792,14 +120721,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [53853] = 10, + [53625] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3076), 1, sym_name, @@ -120816,18 +120745,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53887] = 5, + [53659] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1432), 1, sym_text_interpolation, - ACTIONS(1596), 3, + ACTIONS(1594), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(1598), 7, + ACTIONS(1596), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -120835,18 +120764,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [53911] = 5, + [53683] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(1433), 1, sym_text_interpolation, - ACTIONS(1612), 3, + ACTIONS(1610), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(1614), 7, + ACTIONS(1612), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -120854,14 +120783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [53935] = 10, + [53707] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3078), 1, sym_name, @@ -120878,14 +120807,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53969] = 10, + [53741] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3080), 1, sym_name, @@ -120902,13 +120831,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54003] = 7, + [53775] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(590), 1, sym_arguments, STATE(1436), 1, @@ -120917,19 +120846,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54031] = 9, + [53803] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, ACTIONS(3082), 1, anon_sym_COMMA, ACTIONS(3084), 1, @@ -120940,21 +120869,21 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2034), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54063] = 9, + [53835] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, ACTIONS(3086), 1, anon_sym_RPAREN, STATE(590), 1, @@ -120963,13 +120892,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2133), 1, aux_sym__list_destructing_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54095] = 5, + [53867] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -120988,10 +120917,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [54119] = 8, + [53891] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2958), 1, anon_sym_BSLASHu, @@ -121010,14 +120939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [54149] = 10, + [53921] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3098), 1, sym_name, @@ -121034,16 +120963,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54183] = 5, + [53955] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1606), 1, + ACTIONS(1604), 1, anon_sym_BSLASHu, + ACTIONS(1683), 1, + sym_comment, STATE(1442), 1, sym_text_interpolation, - ACTIONS(1604), 9, + ACTIONS(1602), 9, sym_encapsed_string_chars, sym_encapsed_string_chars_after_variable, anon_sym_LBRACE, @@ -121053,7 +120982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [54207] = 5, + [53979] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -121072,13 +121001,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [54231] = 9, + [54003] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, ACTIONS(3082), 1, anon_sym_COMMA, ACTIONS(3104), 1, @@ -121089,37 +121018,37 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1976), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54263] = 7, + [54035] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(590), 1, sym_arguments, STATE(1445), 1, sym_text_interpolation, - ACTIONS(1542), 3, + ACTIONS(1540), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54291] = 7, + [54063] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1849), 1, anon_sym_COLON_COLON, @@ -121129,7 +121058,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_use_declaration_token2, STATE(1446), 1, sym_text_interpolation, - ACTIONS(1592), 7, + ACTIONS(1590), 7, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_LPAREN, @@ -121137,14 +121066,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54319] = 10, + [54091] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3108), 1, sym_name, @@ -121161,7 +121090,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54353] = 5, + [54125] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -121180,7 +121109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [54377] = 5, + [54149] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -121199,12 +121128,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [54401] = 8, + [54173] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1510), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3118), 1, sym_name, @@ -121220,10 +121149,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [54430] = 4, + [54202] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1451), 1, sym_text_interpolation, @@ -121237,10 +121166,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [54451] = 4, + [54223] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1452), 1, sym_text_interpolation, @@ -121254,13 +121183,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [54472] = 6, + [54244] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, + ACTIONS(1683), 1, + sym_comment, STATE(1453), 1, sym_text_interpolation, STATE(2250), 1, @@ -121273,10 +121202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [54497] = 8, + [54269] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1695), 1, anon_sym_DOLLAR, @@ -121294,10 +121223,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [54526] = 8, + [54298] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1695), 1, anon_sym_DOLLAR, @@ -121315,13 +121244,13 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [54555] = 7, + [54327] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(590), 1, sym_arguments, STATE(1456), 1, @@ -121329,19 +121258,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2463), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54582] = 8, + [54354] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, + ACTIONS(1683), 1, + sym_comment, ACTIONS(1891), 1, anon_sym_LPAREN, STATE(794), 1, @@ -121350,16 +121279,16 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54611] = 9, + [54383] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1695), 1, anon_sym_DOLLAR, @@ -121378,12 +121307,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54642] = 8, + [54414] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1510), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3138), 1, sym_name, @@ -121399,10 +121328,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [54671] = 4, + [54443] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1460), 1, sym_text_interpolation, @@ -121416,12 +121345,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [54692] = 9, + [54464] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(597), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3142), 1, sym_name, @@ -121438,10 +121367,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54723] = 8, + [54495] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1695), 1, anon_sym_DOLLAR, @@ -121459,12 +121388,12 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [54752] = 8, + [54524] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(597), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3150), 1, sym_name, @@ -121480,12 +121409,12 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [54781] = 8, + [54553] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(597), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3150), 1, sym_name, @@ -121501,12 +121430,12 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [54810] = 8, + [54582] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(597), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3156), 1, sym_name, @@ -121522,10 +121451,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [54839] = 8, + [54611] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1703), 1, anon_sym_DOLLAR, @@ -121543,10 +121472,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [54868] = 8, + [54640] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1703), 1, anon_sym_DOLLAR, @@ -121564,10 +121493,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [54897] = 9, + [54669] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1695), 1, anon_sym_DOLLAR, @@ -121586,10 +121515,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54928] = 4, + [54700] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1469), 1, sym_text_interpolation, @@ -121603,33 +121532,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [54949] = 8, + [54721] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, + ACTIONS(1683), 1, + sym_comment, STATE(590), 1, sym_arguments, STATE(1470), 1, sym_text_interpolation, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54978] = 9, + [54750] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1504), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3168), 1, sym_name, @@ -121646,12 +121575,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55009] = 9, + [54781] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(597), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3134), 1, sym_name, @@ -121668,13 +121597,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55040] = 7, + [54812] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(590), 1, sym_arguments, STATE(1473), 1, @@ -121682,19 +121611,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2537), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55067] = 7, + [54839] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(590), 1, sym_arguments, STATE(1474), 1, @@ -121702,18 +121631,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2493), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55094] = 8, + [54866] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1504), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3172), 1, sym_name, @@ -121729,10 +121658,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55123] = 9, + [54895] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1703), 1, anon_sym_DOLLAR, @@ -121751,12 +121680,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55154] = 8, + [54926] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1504), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3178), 1, sym_name, @@ -121772,10 +121701,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55183] = 4, + [54955] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1478), 1, sym_text_interpolation, @@ -121789,31 +121718,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [55204] = 8, + [54976] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(754), 1, sym_arguments, STATE(1479), 1, sym_text_interpolation, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55233] = 4, + [55005] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1480), 1, sym_text_interpolation, @@ -121827,10 +121756,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [55254] = 10, + [55026] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -121850,12 +121779,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55287] = 8, + [55059] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(597), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3156), 1, sym_name, @@ -121871,12 +121800,12 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55316] = 8, + [55088] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(306), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3186), 1, sym_name, @@ -121892,10 +121821,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55345] = 4, + [55117] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1484), 1, sym_text_interpolation, @@ -121909,12 +121838,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [55366] = 9, + [55138] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1504), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3170), 1, anon_sym_LBRACE, @@ -121931,12 +121860,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55397] = 8, + [55169] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(306), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3194), 1, sym_name, @@ -121952,10 +121881,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55426] = 9, + [55198] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1695), 1, anon_sym_DOLLAR, @@ -121974,12 +121903,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55457] = 9, + [55229] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1510), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3198), 1, sym_name, @@ -121996,13 +121925,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55488] = 8, + [55260] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, + ACTIONS(1683), 1, + sym_comment, ACTIONS(1893), 1, anon_sym_LPAREN, STATE(868), 1, @@ -122011,18 +121940,18 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55517] = 9, + [55289] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(306), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3202), 1, sym_name, @@ -122039,13 +121968,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55548] = 7, + [55320] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(590), 1, sym_arguments, STATE(1491), 1, @@ -122053,19 +121982,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2513), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55575] = 7, + [55347] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(590), 1, sym_arguments, STATE(1492), 1, @@ -122073,18 +122002,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3206), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55602] = 9, + [55374] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(597), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3208), 1, sym_name, @@ -122101,13 +122030,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55633] = 7, + [55405] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(590), 1, sym_arguments, STATE(1494), 1, @@ -122115,16 +122044,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3212), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55660] = 9, + [55432] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1703), 1, anon_sym_DOLLAR, @@ -122143,10 +122072,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55691] = 8, + [55463] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1695), 1, anon_sym_DOLLAR, @@ -122164,10 +122093,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55720] = 8, + [55492] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2958), 1, anon_sym_BSLASHu, @@ -122185,13 +122114,13 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [55749] = 7, + [55521] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(590), 1, sym_arguments, STATE(1498), 1, @@ -122199,16 +122128,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3224), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55776] = 8, + [55548] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1695), 1, anon_sym_DOLLAR, @@ -122226,10 +122155,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55805] = 8, + [55577] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1695), 1, anon_sym_DOLLAR, @@ -122247,10 +122176,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55834] = 8, + [55606] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1703), 1, anon_sym_DOLLAR, @@ -122268,10 +122197,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55863] = 8, + [55635] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1703), 1, anon_sym_DOLLAR, @@ -122289,10 +122218,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55892] = 9, + [55664] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1703), 1, anon_sym_DOLLAR, @@ -122311,10 +122240,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55923] = 10, + [55695] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -122334,16 +122263,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55956] = 5, + [55728] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1606), 1, + ACTIONS(1604), 1, anon_sym_BSLASHu, + ACTIONS(1683), 1, + sym_comment, STATE(1505), 1, sym_text_interpolation, - ACTIONS(1604), 8, + ACTIONS(1602), 8, sym_execution_string_chars, sym_execution_string_chars_after_variable, anon_sym_LBRACE, @@ -122352,10 +122281,10 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [55979] = 8, + [55751] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1703), 1, anon_sym_DOLLAR, @@ -122373,10 +122302,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56008] = 8, + [55780] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1703), 1, anon_sym_DOLLAR, @@ -122394,38 +122323,38 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56037] = 8, + [55809] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1656), 1, + ACTIONS(1654), 1, anon_sym_LPAREN, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, + ACTIONS(1683), 1, + sym_comment, STATE(663), 1, sym_arguments, STATE(1508), 1, sym_text_interpolation, STATE(2250), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56066] = 11, + [55838] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, + ACTIONS(1683), 1, + sym_comment, STATE(1509), 1, sym_text_interpolation, STATE(1566), 1, @@ -122438,13 +122367,13 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2611), 1, sym_namespace_name, - [56100] = 11, + [55872] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, ACTIONS(3252), 1, @@ -122461,10 +122390,10 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2241), 1, sym_class_interface_clause, - [56134] = 7, + [55906] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3082), 1, anon_sym_COMMA, @@ -122474,19 +122403,19 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1976), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56160] = 11, + [55932] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, ACTIONS(3254), 1, @@ -122503,13 +122432,13 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2388), 1, sym_class_interface_clause, - [56194] = 11, + [55966] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, ACTIONS(3254), 1, @@ -122526,12 +122455,12 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2374), 1, sym_class_interface_clause, - [56228] = 8, + [56000] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(945), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3258), 1, aux_sym_catch_clause_token1, @@ -122546,13 +122475,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(1726), 2, sym_catch_clause, sym_finally_clause, - [56256] = 10, + [56028] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, + ACTIONS(1683), 1, + sym_comment, ACTIONS(3266), 1, anon_sym_COMMA, ACTIONS(3268), 1, @@ -122568,10 +122497,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3264), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56288] = 7, + [56060] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1849), 1, anon_sym_COLON_COLON, @@ -122581,19 +122510,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_use_declaration_token2, STATE(1516), 1, sym_text_interpolation, - ACTIONS(1592), 5, + ACTIONS(1590), 5, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56314] = 11, + [56086] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, ACTIONS(3252), 1, @@ -122610,12 +122539,12 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2410), 1, sym_class_interface_clause, - [56348] = 9, + [56120] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(937), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3270), 1, aux_sym_catch_clause_token1, @@ -122631,17 +122560,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(1726), 2, sym_catch_clause, sym_finally_clause, - [56378] = 11, + [56150] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, + ACTIONS(1683), 1, + sym_comment, STATE(1519), 1, sym_text_interpolation, STATE(1566), 1, @@ -122654,12 +122583,12 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2611), 1, sym_namespace_name, - [56412] = 7, + [56184] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3086), 1, anon_sym_RPAREN, @@ -122667,16 +122596,16 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2133), 1, aux_sym__list_destructing_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56438] = 7, + [56210] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3082), 1, anon_sym_COMMA, @@ -122686,19 +122615,19 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2034), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56464] = 6, + [56236] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, + ACTIONS(1683), 1, + sym_comment, STATE(1522), 1, sym_text_interpolation, STATE(2250), 1, @@ -122709,10 +122638,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [56487] = 5, + [56259] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3088), 1, anon_sym_BSLASHu, @@ -122725,10 +122654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [56508] = 5, + [56280] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3114), 1, anon_sym_BSLASHu, @@ -122741,26 +122670,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [56529] = 5, + [56301] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1614), 1, + ACTIONS(1612), 1, anon_sym_BSLASHu, + ACTIONS(1683), 1, + sym_comment, STATE(1525), 1, sym_text_interpolation, - ACTIONS(1612), 6, + ACTIONS(1610), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [56550] = 5, + [56322] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3072), 1, anon_sym_BSLASHu, @@ -122773,10 +122702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [56571] = 5, + [56343] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2958), 1, anon_sym_BSLASHu, @@ -122789,10 +122718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [56592] = 7, + [56364] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3276), 1, aux_sym_enum_case_token1, @@ -122807,10 +122736,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1763), 2, sym_case_statement, sym_default_statement, - [56617] = 6, + [56389] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1893), 1, anon_sym_LPAREN, @@ -122818,16 +122747,16 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(1529), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56640] = 8, + [56412] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -122843,46 +122772,46 @@ static const uint16_t ts_small_parse_table[] = { STATE(2450), 2, sym__simple_string_subscript_unary_expression, sym_variable_name, - [56667] = 6, + [56439] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1656), 1, + ACTIONS(1654), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(663), 1, sym_arguments, STATE(1531), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56690] = 5, + [56462] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1532), 1, sym_text_interpolation, ACTIONS(3212), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56711] = 6, + [56483] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(762), 1, sym_arguments, STATE(1533), 1, @@ -122893,26 +122822,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56734] = 5, + [56506] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1534), 1, sym_text_interpolation, ACTIONS(3206), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56755] = 8, + [56527] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3286), 1, anon_sym_AMP, @@ -122928,26 +122857,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - [56782] = 5, + [56554] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1606), 1, + ACTIONS(1604), 1, anon_sym_BSLASHu, + ACTIONS(1683), 1, + sym_comment, STATE(1536), 1, sym_text_interpolation, - ACTIONS(1604), 6, + ACTIONS(1602), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [56803] = 5, + [56575] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3295), 1, anon_sym_BSLASHu, @@ -122960,10 +122889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [56824] = 5, + [56596] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3299), 1, anon_sym_BSLASHu, @@ -122976,10 +122905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [56845] = 8, + [56617] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3184), 1, anon_sym_LPAREN, @@ -122995,43 +122924,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56872] = 6, + [56644] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(590), 1, sym_arguments, STATE(1540), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56895] = 5, + [56667] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1598), 1, + ACTIONS(1596), 1, anon_sym_BSLASHu, + ACTIONS(1683), 1, + sym_comment, STATE(1541), 1, sym_text_interpolation, - ACTIONS(1596), 6, + ACTIONS(1594), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [56916] = 8, + [56688] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -123047,34 +122976,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56943] = 6, + [56715] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1630), 1, + ACTIONS(1628), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(622), 1, sym_arguments, STATE(1543), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56966] = 10, + [56738] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, anon_sym_BSLASH, ACTIONS(555), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1667), 1, + ACTIONS(1665), 1, sym_name, + ACTIONS(1683), 1, + sym_comment, STATE(1544), 1, sym_text_interpolation, STATE(1566), 1, @@ -123085,10 +123014,10 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2611), 1, sym_namespace_name, - [56997] = 6, + [56769] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1891), 1, anon_sym_LPAREN, @@ -123096,16 +123025,16 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(1545), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57020] = 8, + [56792] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -123121,10 +123050,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(2450), 2, sym__simple_string_subscript_unary_expression, sym_variable_name, - [57047] = 8, + [56819] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3184), 1, anon_sym_LPAREN, @@ -123140,10 +123069,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [57074] = 8, + [56846] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3305), 1, anon_sym_AMP, @@ -123159,10 +123088,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [57101] = 5, + [56873] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3309), 1, anon_sym_BSLASHu, @@ -123175,10 +123104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [57122] = 6, + [56894] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1893), 1, anon_sym_LPAREN, @@ -123186,33 +123115,33 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(1550), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57145] = 6, + [56917] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(762), 1, sym_arguments, STATE(1551), 1, sym_text_interpolation, - ACTIONS(1556), 5, + ACTIONS(1554), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57168] = 6, + [56940] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1891), 1, anon_sym_LPAREN, @@ -123226,10 +123155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57191] = 5, + [56963] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3110), 1, anon_sym_BSLASHu, @@ -123242,44 +123171,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [57212] = 6, + [56984] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(754), 1, sym_arguments, STATE(1554), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57235] = 6, + [57007] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(590), 1, sym_arguments, STATE(1555), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57258] = 6, + [57030] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1891), 1, anon_sym_LPAREN, @@ -123287,16 +123216,16 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(1556), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57281] = 5, + [57053] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1557), 1, sym_text_interpolation, @@ -123309,27 +123238,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [57302] = 6, + [57074] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(754), 1, sym_arguments, STATE(1558), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57325] = 6, + [57097] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1893), 1, anon_sym_LPAREN, @@ -123343,10 +123272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57348] = 6, + [57120] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1893), 1, anon_sym_LPAREN, @@ -123354,35 +123283,35 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(1560), 1, sym_text_interpolation, - ACTIONS(1556), 5, + ACTIONS(1554), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57371] = 5, + [57143] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1561), 1, sym_text_interpolation, ACTIONS(3224), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57392] = 8, + [57164] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, + ACTIONS(1683), 1, + sym_comment, ACTIONS(3313), 1, aux_sym_namespace_aliasing_clause_token1, STATE(1562), 1, @@ -123395,27 +123324,27 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [57419] = 6, + [57191] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1656), 1, + ACTIONS(1654), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(663), 1, sym_arguments, STATE(1563), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57442] = 6, + [57214] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3064), 1, aux_sym_namespace_aliasing_clause_token1, @@ -123423,16 +123352,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_use_instead_of_clause_token1, STATE(1564), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57465] = 8, + [57237] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -123448,10 +123377,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(2450), 2, sym__simple_string_subscript_unary_expression, sym_variable_name, - [57492] = 4, + [57264] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1566), 1, sym_text_interpolation, @@ -123463,10 +123392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [57511] = 8, + [57283] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3315), 1, aux_sym_enum_case_token1, @@ -123481,12 +123410,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(1763), 2, sym_case_statement, sym_default_statement, - [57537] = 9, + [57309] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3321), 1, aux_sym_namespace_use_declaration_token1, @@ -123500,12 +123429,12 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2411), 1, sym__return_type, - [57565] = 9, + [57337] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3321), 1, aux_sym_namespace_use_declaration_token1, @@ -123519,25 +123448,25 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2330), 1, sym__return_type, - [57593] = 5, + [57365] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1614), 1, + ACTIONS(1612), 1, anon_sym_BSLASHu, + ACTIONS(1683), 1, + sym_comment, STATE(1570), 1, sym_text_interpolation, - ACTIONS(1612), 5, + ACTIONS(1610), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [57613] = 8, + [57385] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3315), 1, aux_sym_enum_case_token1, @@ -123552,12 +123481,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(1763), 2, sym_case_statement, sym_default_statement, - [57639] = 9, + [57411] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3321), 1, aux_sym_namespace_use_declaration_token1, @@ -123571,10 +123500,10 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2311), 1, sym__return_type, - [57667] = 9, + [57439] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3321), 1, aux_sym_namespace_use_declaration_token1, @@ -123590,10 +123519,10 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2253), 1, sym__return_type, - [57695] = 9, + [57467] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, @@ -123609,10 +123538,10 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2409), 1, sym_class_interface_clause, - [57723] = 9, + [57495] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3321), 1, aux_sym_namespace_use_declaration_token1, @@ -123628,10 +123557,10 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2254), 1, sym__return_type, - [57751] = 9, + [57523] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, @@ -123647,10 +123576,10 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2336), 1, sym_class_interface_clause, - [57779] = 9, + [57551] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, @@ -123666,10 +123595,10 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2257), 1, sym_class_interface_clause, - [57807] = 4, + [57579] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1578), 1, sym_text_interpolation, @@ -123680,27 +123609,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [57825] = 5, + [57597] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1598), 1, + ACTIONS(1596), 1, anon_sym_BSLASHu, + ACTIONS(1683), 1, + sym_comment, STATE(1579), 1, sym_text_interpolation, - ACTIONS(1596), 5, + ACTIONS(1594), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [57845] = 9, + [57617] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3321), 1, aux_sym_namespace_use_declaration_token1, @@ -123714,10 +123643,10 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2324), 1, sym__return_type, - [57873] = 9, + [57645] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, @@ -123733,13 +123662,13 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2303), 1, sym_class_interface_clause, - [57901] = 6, + [57673] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, + ACTIONS(1683), 1, + sym_comment, STATE(1582), 1, sym_text_interpolation, STATE(2250), 1, @@ -123749,10 +123678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, - [57923] = 9, + [57695] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, @@ -123768,12 +123697,12 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2310), 1, sym_class_interface_clause, - [57951] = 9, + [57723] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(953), 1, aux_sym_while_statement_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3335), 1, aux_sym_else_if_clause_token1, @@ -123787,15 +123716,15 @@ static const uint16_t ts_small_parse_table[] = { sym_else_clause, STATE(2068), 1, sym_else_if_clause, - [57979] = 8, + [57751] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, + ACTIONS(1683), 1, + sym_comment, STATE(1585), 1, sym_text_interpolation, STATE(2250), 1, @@ -123805,10 +123734,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3339), 2, anon_sym_COMMA, anon_sym_RBRACK, - [58005] = 8, + [57777] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3315), 1, aux_sym_enum_case_token1, @@ -123823,10 +123752,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1763), 2, sym_case_statement, sym_default_statement, - [58031] = 8, + [57803] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3315), 1, aux_sym_enum_case_token1, @@ -123841,7 +123770,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1763), 2, sym_case_statement, sym_default_statement, - [58057] = 8, + [57829] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -123859,10 +123788,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3347), 2, aux_sym_text_token1, aux_sym_text_token2, - [58083] = 9, + [57855] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3351), 1, aux_sym_if_statement_token2, @@ -123878,10 +123807,10 @@ static const uint16_t ts_small_parse_table[] = { sym_else_if_clause_2, STATE(2449), 1, sym_else_clause_2, - [58111] = 7, + [57883] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3357), 1, sym_name, @@ -123895,10 +123824,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [58135] = 9, + [57907] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3321), 1, aux_sym_namespace_use_declaration_token1, @@ -123914,10 +123843,10 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2289), 1, sym__return_type, - [58163] = 9, + [57935] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, @@ -123933,10 +123862,10 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2286), 1, sym_class_interface_clause, - [58191] = 5, + [57963] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2958), 1, anon_sym_BSLASHu, @@ -123948,10 +123877,10 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [58211] = 8, + [57983] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3315), 1, aux_sym_enum_case_token1, @@ -123966,10 +123895,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1763), 2, sym_case_statement, sym_default_statement, - [58237] = 5, + [58009] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3363), 1, anon_sym_BSLASHu, @@ -123981,10 +123910,10 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [58257] = 5, + [58029] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3365), 1, anon_sym_BSLASHu, @@ -123996,10 +123925,10 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [58277] = 8, + [58049] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3266), 1, anon_sym_COMMA, @@ -124014,10 +123943,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3367), 2, sym__automatic_semicolon, anon_sym_SEMI, - [58303] = 8, + [58075] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3315), 1, aux_sym_enum_case_token1, @@ -124032,10 +123961,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1763), 2, sym_case_statement, sym_default_statement, - [58329] = 5, + [58101] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3072), 1, anon_sym_BSLASHu, @@ -124047,10 +123976,10 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [58349] = 9, + [58121] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3353), 1, aux_sym_else_if_clause_token1, @@ -124066,10 +123995,10 @@ static const uint16_t ts_small_parse_table[] = { sym_else_if_clause_2, STATE(2501), 1, sym_else_clause_2, - [58377] = 7, + [58149] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3357), 1, sym_name, @@ -124083,12 +124012,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [58401] = 9, + [58173] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(967), 1, aux_sym_while_statement_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3373), 1, aux_sym_else_if_clause_token1, @@ -124102,10 +124031,10 @@ static const uint16_t ts_small_parse_table[] = { sym_else_clause, STATE(2068), 1, sym_else_if_clause, - [58429] = 9, + [58201] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, @@ -124121,10 +124050,10 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2349), 1, sym_class_interface_clause, - [58457] = 7, + [58229] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3357), 1, sym_name, @@ -124138,10 +124067,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [58481] = 9, + [58253] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, @@ -124157,12 +124086,12 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2418), 1, sym_class_interface_clause, - [58509] = 9, + [58281] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3321), 1, aux_sym_namespace_use_declaration_token1, @@ -124176,10 +124105,10 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2359), 1, sym__return_type, - [58537] = 9, + [58309] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, @@ -124195,12 +124124,12 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2367), 1, sym_class_interface_clause, - [58565] = 9, + [58337] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(953), 1, aux_sym_while_statement_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3379), 1, aux_sym_else_if_clause_token1, @@ -124214,10 +124143,10 @@ static const uint16_t ts_small_parse_table[] = { sym_else_clause, STATE(2068), 1, sym_else_if_clause, - [58593] = 5, + [58365] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3088), 1, anon_sym_BSLASHu, @@ -124229,13 +124158,13 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [58613] = 8, + [58385] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, + ACTIONS(1683), 1, + sym_comment, ACTIONS(3385), 1, anon_sym_COMMA, STATE(1610), 1, @@ -124247,12 +124176,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3387), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [58639] = 9, + [58411] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3321), 1, aux_sym_namespace_use_declaration_token1, @@ -124266,10 +124195,10 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2366), 1, sym__return_type, - [58667] = 8, + [58439] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3315), 1, aux_sym_enum_case_token1, @@ -124284,10 +124213,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1763), 2, sym_case_statement, sym_default_statement, - [58693] = 8, + [58465] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3266), 1, anon_sym_COMMA, @@ -124302,10 +124231,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3264), 2, sym__automatic_semicolon, anon_sym_SEMI, - [58719] = 9, + [58491] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3321), 1, aux_sym_namespace_use_declaration_token1, @@ -124321,10 +124250,10 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2365), 1, sym__return_type, - [58747] = 9, + [58519] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3353), 1, aux_sym_else_if_clause_token1, @@ -124340,10 +124269,10 @@ static const uint16_t ts_small_parse_table[] = { sym_else_if_clause_2, STATE(2476), 1, sym_else_clause_2, - [58775] = 7, + [58547] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3357), 1, sym_name, @@ -124357,10 +124286,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [58799] = 9, + [58571] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3353), 1, aux_sym_else_if_clause_token1, @@ -124376,10 +124305,10 @@ static const uint16_t ts_small_parse_table[] = { sym_else_if_clause_2, STATE(2499), 1, sym_else_clause_2, - [58827] = 7, + [58599] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3357), 1, sym_name, @@ -124393,10 +124322,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [58851] = 9, + [58623] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, @@ -124412,10 +124341,10 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2213), 1, sym_class_interface_clause, - [58879] = 9, + [58651] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, @@ -124431,10 +124360,10 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2370), 1, sym_class_interface_clause, - [58907] = 4, + [58679] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1621), 1, sym_text_interpolation, @@ -124445,25 +124374,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [58925] = 5, + [58697] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1606), 1, + ACTIONS(1604), 1, anon_sym_BSLASHu, + ACTIONS(1683), 1, + sym_comment, STATE(1622), 1, sym_text_interpolation, - ACTIONS(1604), 5, + ACTIONS(1602), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [58945] = 8, + [58717] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3397), 1, anon_sym_AMP, @@ -124478,12 +124407,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3288), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [58971] = 9, + [58743] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3321), 1, aux_sym_namespace_use_declaration_token1, @@ -124497,10 +124426,10 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2160), 1, sym__return_type, - [58999] = 4, + [58771] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1625), 1, sym_text_interpolation, @@ -124511,10 +124440,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [59017] = 9, + [58789] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3321), 1, aux_sym_namespace_use_declaration_token1, @@ -124530,12 +124459,12 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2421), 1, sym__return_type, - [59045] = 9, + [58817] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(967), 1, aux_sym_while_statement_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3335), 1, aux_sym_else_if_clause_token1, @@ -124549,10 +124478,10 @@ static const uint16_t ts_small_parse_table[] = { sym_else_clause, STATE(2068), 1, sym_else_if_clause, - [59073] = 9, + [58845] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, @@ -124568,10 +124497,10 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2379), 1, sym_class_interface_clause, - [59101] = 4, + [58873] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1629), 1, sym_text_interpolation, @@ -124582,10 +124511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [59119] = 9, + [58891] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, @@ -124601,12 +124530,12 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2168), 1, sym_class_interface_clause, - [59147] = 9, + [58919] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3321), 1, aux_sym_namespace_use_declaration_token1, @@ -124620,10 +124549,10 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2422), 1, sym__return_type, - [59175] = 9, + [58947] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3321), 1, aux_sym_namespace_use_declaration_token1, @@ -124639,10 +124568,10 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2175), 1, sym__return_type, - [59203] = 5, + [58975] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3114), 1, anon_sym_BSLASHu, @@ -124654,10 +124583,10 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [59223] = 8, + [58995] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3315), 1, aux_sym_enum_case_token1, @@ -124672,10 +124601,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1763), 2, sym_case_statement, sym_default_statement, - [59249] = 5, + [59021] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3110), 1, anon_sym_BSLASHu, @@ -124687,10 +124616,10 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [59269] = 9, + [59041] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3321), 1, aux_sym_namespace_use_declaration_token1, @@ -124706,10 +124635,10 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2363), 1, sym__return_type, - [59297] = 7, + [59069] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3357), 1, sym_name, @@ -124723,10 +124652,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [59321] = 9, + [59093] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, @@ -124742,10 +124671,10 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2242), 1, sym_class_interface_clause, - [59349] = 9, + [59121] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, @@ -124761,10 +124690,10 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2360), 1, sym_class_interface_clause, - [59377] = 9, + [59149] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, @@ -124780,10 +124709,10 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2415), 1, sym_class_interface_clause, - [59405] = 9, + [59177] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3321), 1, aux_sym_namespace_use_declaration_token1, @@ -124799,10 +124728,10 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2354), 1, sym__return_type, - [59433] = 7, + [59205] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3357), 1, sym_name, @@ -124816,10 +124745,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [59457] = 8, + [59229] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3409), 1, anon_sym_LBRACE, @@ -124833,12 +124762,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1643), 1, sym_text_interpolation, - [59482] = 6, + [59254] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1014), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1644), 1, sym_text_interpolation, @@ -124848,12 +124777,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3419), 2, sym__automatic_semicolon, anon_sym_SEMI, - [59503] = 6, + [59275] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1102), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1645), 1, sym_text_interpolation, @@ -124863,12 +124792,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3421), 2, sym__automatic_semicolon, anon_sym_SEMI, - [59524] = 6, + [59296] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1048), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1646), 1, sym_text_interpolation, @@ -124878,10 +124807,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3423), 2, sym__automatic_semicolon, anon_sym_SEMI, - [59545] = 8, + [59317] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -124895,10 +124824,10 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2420), 1, sym_class_interface_clause, - [59570] = 8, + [59342] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -124912,10 +124841,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2361), 1, sym_class_interface_clause, - [59595] = 6, + [59367] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3435), 1, anon_sym_BSLASH, @@ -124927,12 +124856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [59616] = 6, + [59388] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1042), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1650), 1, sym_text_interpolation, @@ -124942,12 +124871,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3437), 2, sym__automatic_semicolon, anon_sym_SEMI, - [59637] = 7, + [59409] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(597), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3439), 1, sym_name, @@ -124958,10 +124887,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(593), 2, sym_dynamic_variable_name, sym_variable_name, - [59660] = 8, + [59432] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3411), 1, anon_sym_COLON_COLON, @@ -124975,10 +124904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1652), 1, sym_text_interpolation, - [59685] = 6, + [59457] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3435), 1, anon_sym_BSLASH, @@ -124990,12 +124919,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [59706] = 7, + [59478] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(306), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3453), 1, sym_name, @@ -125006,10 +124935,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(613), 2, sym_dynamic_variable_name, sym_variable_name, - [59729] = 7, + [59501] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3457), 1, sym_name, @@ -125022,12 +124951,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3459), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - [59752] = 8, + [59524] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3461), 1, sym_name, @@ -125039,10 +124968,10 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(2117), 1, sym_compound_statement, - [59777] = 7, + [59549] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3465), 1, sym_name, @@ -125055,10 +124984,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1570), 2, sym_dynamic_variable_name, sym_variable_name, - [59800] = 6, + [59572] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3471), 1, sym_name, @@ -125070,12 +124999,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [59821] = 7, + [59593] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3477), 1, anon_sym_BSLASH, @@ -125086,12 +125015,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3475), 2, sym__automatic_semicolon, anon_sym_SEMI, - [59844] = 5, + [59616] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(988), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1660), 1, sym_text_interpolation, @@ -125100,10 +125029,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59863] = 8, + [59635] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3411), 1, anon_sym_COLON_COLON, @@ -125117,10 +125046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1661), 1, sym_text_interpolation, - [59888] = 4, + [59660] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1662), 1, sym_text_interpolation, @@ -125130,10 +125059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [59905] = 6, + [59677] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3305), 1, anon_sym_AMP, @@ -125145,10 +125074,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [59926] = 6, + [59698] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3401), 1, anon_sym_PIPE, @@ -125160,10 +125089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [59947] = 7, + [59719] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3493), 1, sym_name, @@ -125176,12 +125105,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(1433), 2, sym_dynamic_variable_name, sym_variable_name, - [59970] = 5, + [59742] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1002), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1666), 1, sym_text_interpolation, @@ -125190,10 +125119,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59989] = 8, + [59761] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -125207,7 +125136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_modifier, STATE(1951), 1, sym_variable_name, - [60014] = 7, + [59786] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -125223,10 +125152,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3347), 2, aux_sym_text_token1, aux_sym_text_token2, - [60037] = 8, + [59809] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -125240,12 +125169,12 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_modifier, STATE(2023), 1, sym_variable_name, - [60062] = 7, + [59834] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1504), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3507), 1, sym_name, @@ -125256,12 +125185,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(795), 2, sym_dynamic_variable_name, sym_variable_name, - [60085] = 6, + [59857] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1090), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1671), 1, sym_text_interpolation, @@ -125271,10 +125200,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3511), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60106] = 8, + [59878] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3409), 1, anon_sym_LBRACE, @@ -125288,10 +125217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, STATE(1672), 1, sym_text_interpolation, - [60131] = 7, + [59903] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1703), 1, anon_sym_DOLLAR, @@ -125304,10 +125233,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(869), 2, sym_dynamic_variable_name, sym_variable_name, - [60154] = 8, + [59926] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -125321,12 +125250,12 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2198), 1, sym_class_interface_clause, - [60179] = 6, + [59951] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1078), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1675), 1, sym_text_interpolation, @@ -125336,12 +125265,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3523), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60200] = 6, + [59972] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1072), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1676), 1, sym_text_interpolation, @@ -125351,10 +125280,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3525), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60221] = 5, + [59993] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3527), 1, anon_sym_PIPE, @@ -125365,7 +125294,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [60240] = 6, + [60012] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -125380,10 +125309,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1678), 2, sym_text_interpolation, aux_sym_text_repeat1, - [60261] = 8, + [60033] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3411), 1, anon_sym_COLON_COLON, @@ -125397,10 +125326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1679), 1, sym_text_interpolation, - [60286] = 5, + [60058] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3547), 1, anon_sym_AMP, @@ -125411,10 +125340,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [60305] = 7, + [60077] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3550), 1, aux_sym_if_statement_token2, @@ -125427,10 +125356,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1681), 2, sym_text_interpolation, aux_sym_if_statement_repeat2, - [60328] = 6, + [60100] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3559), 1, anon_sym_COLON, @@ -125442,10 +125371,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [60349] = 6, + [60121] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3286), 1, anon_sym_AMP, @@ -125457,10 +125386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - [60370] = 6, + [60142] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3291), 1, anon_sym_PIPE, @@ -125472,10 +125401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - [60391] = 8, + [60163] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3411), 1, anon_sym_COLON_COLON, @@ -125489,10 +125418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, STATE(1685), 1, sym_text_interpolation, - [60416] = 7, + [60188] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3495), 1, anon_sym_LBRACE, @@ -125505,12 +125434,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(1433), 2, sym_dynamic_variable_name, sym_variable_name, - [60439] = 7, + [60211] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1510), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3567), 1, sym_name, @@ -125521,10 +125450,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(678), 2, sym_dynamic_variable_name, sym_variable_name, - [60462] = 6, + [60234] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3307), 1, anon_sym_PIPE, @@ -125536,10 +125465,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [60483] = 4, + [60255] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1689), 1, sym_text_interpolation, @@ -125549,10 +125478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [60500] = 7, + [60272] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3467), 1, anon_sym_LBRACE, @@ -125565,10 +125494,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1570), 2, sym_dynamic_variable_name, sym_variable_name, - [60523] = 8, + [60295] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3411), 1, anon_sym_COLON_COLON, @@ -125582,10 +125511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, STATE(1691), 1, sym_text_interpolation, - [60548] = 8, + [60320] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3409), 1, anon_sym_LBRACE, @@ -125599,10 +125528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, STATE(1692), 1, sym_text_interpolation, - [60573] = 5, + [60345] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3581), 1, anon_sym_PIPE, @@ -125613,10 +125542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - [60592] = 5, + [60364] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3584), 1, anon_sym_AMP, @@ -125627,12 +125556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - [60611] = 6, + [60383] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1060), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1695), 1, sym_text_interpolation, @@ -125642,10 +125571,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3587), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60632] = 8, + [60404] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3411), 1, anon_sym_COLON_COLON, @@ -125659,14 +125588,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1696), 1, sym_text_interpolation, - [60657] = 7, + [60429] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(977), 1, aux_sym_while_statement_token1, ACTIONS(979), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3597), 1, aux_sym_else_if_clause_token1, @@ -125675,10 +125604,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1697), 2, sym_text_interpolation, aux_sym_if_statement_repeat1, - [60680] = 6, + [60452] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3602), 1, anon_sym_EQ, @@ -125690,10 +125619,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [60701] = 7, + [60473] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3270), 1, aux_sym_catch_clause_token1, @@ -125706,7 +125635,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1726), 2, sym_catch_clause, sym_finally_clause, - [60724] = 6, + [60496] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -125721,10 +125650,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1700), 2, sym_text_interpolation, aux_sym_text_repeat1, - [60745] = 8, + [60517] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3411), 1, anon_sym_COLON_COLON, @@ -125738,10 +125667,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, STATE(1701), 1, sym_text_interpolation, - [60770] = 6, + [60542] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3611), 1, anon_sym_BSLASH, @@ -125753,13 +125682,13 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [60791] = 8, + [60563] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, + ACTIONS(1683), 1, + sym_comment, ACTIONS(3385), 1, anon_sym_COMMA, ACTIONS(3614), 1, @@ -125770,10 +125699,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_base_clause_repeat1, STATE(2250), 1, aux_sym_namespace_name_repeat1, - [60816] = 7, + [60588] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3616), 1, sym_name, @@ -125786,10 +125715,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1525), 2, sym_dynamic_variable_name, sym_variable_name, - [60839] = 8, + [60611] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3411), 1, anon_sym_COLON_COLON, @@ -125803,10 +125732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1705), 1, sym_text_interpolation, - [60864] = 7, + [60636] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -125819,10 +125748,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(2156), 2, sym_variable_name, sym_variable_reference, - [60887] = 5, + [60659] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3636), 1, anon_sym_BSLASH, @@ -125833,10 +125762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [60906] = 5, + [60678] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3639), 1, anon_sym_BSLASH, @@ -125847,12 +125776,12 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [60925] = 7, + [60697] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3477), 1, anon_sym_BSLASH, @@ -125863,12 +125792,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3642), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60948] = 6, + [60720] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1118), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1710), 1, sym_text_interpolation, @@ -125878,12 +125807,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3644), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60969] = 5, + [60741] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1010), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1711), 1, sym_text_interpolation, @@ -125892,12 +125821,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60988] = 6, + [60760] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1112), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1712), 1, sym_text_interpolation, @@ -125907,12 +125836,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3646), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61009] = 6, + [60781] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1020), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1713), 1, sym_text_interpolation, @@ -125922,10 +125851,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3648), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61030] = 6, + [60802] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3313), 1, aux_sym_namespace_aliasing_clause_token1, @@ -125937,10 +125866,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [61051] = 7, + [60823] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3618), 1, anon_sym_LBRACE, @@ -125953,12 +125882,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(1525), 2, sym_dynamic_variable_name, sym_variable_name, - [61074] = 6, + [60846] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1026), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1716), 1, sym_text_interpolation, @@ -125968,10 +125897,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3652), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61095] = 7, + [60867] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3457), 1, sym_name, @@ -125984,12 +125913,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3459), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - [61118] = 6, + [60890] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1054), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1718), 1, sym_text_interpolation, @@ -125999,12 +125928,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3654), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61139] = 6, + [60911] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1084), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1719), 1, sym_text_interpolation, @@ -126014,10 +125943,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3656), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61160] = 8, + [60932] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -126031,12 +125960,12 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2301), 1, sym_class_interface_clause, - [61185] = 6, + [60957] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1124), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1721), 1, sym_text_interpolation, @@ -126046,10 +125975,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3660), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61206] = 7, + [60978] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -126062,12 +125991,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(2156), 2, sym_variable_name, sym_variable_reference, - [61229] = 8, + [61001] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3461), 1, sym_name, @@ -126079,10 +126008,10 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(1723), 1, sym_text_interpolation, - [61254] = 6, + [61026] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3664), 1, sym_name, @@ -126094,10 +126023,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [61275] = 5, + [61047] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3666), 1, anon_sym_COMMA, @@ -126108,12 +126037,12 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61294] = 5, + [61066] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(994), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1726), 1, sym_text_interpolation, @@ -126122,12 +126051,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [61313] = 6, + [61085] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1066), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1727), 1, sym_text_interpolation, @@ -126137,10 +126066,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3669), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61334] = 6, + [61106] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3559), 1, anon_sym_COLON, @@ -126152,10 +126081,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61355] = 4, + [61127] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1729), 1, sym_text_interpolation, @@ -126165,10 +126094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [61372] = 4, + [61144] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1730), 1, sym_text_interpolation, @@ -126178,23 +126107,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [61389] = 4, + [61161] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1731), 1, sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1534), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [61406] = 6, + [61178] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3673), 1, anon_sym_BSLASH, @@ -126206,10 +126135,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61427] = 4, + [61199] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1733), 1, sym_text_interpolation, @@ -126219,12 +126148,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [61444] = 6, + [61216] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1036), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1734), 1, sym_text_interpolation, @@ -126234,10 +126163,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3676), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61465] = 5, + [61237] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3678), 1, anon_sym_PIPE, @@ -126248,12 +126177,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [61484] = 6, + [61256] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1096), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1736), 1, sym_text_interpolation, @@ -126263,10 +126192,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3681), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61505] = 7, + [61277] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3683), 1, aux_sym_catch_clause_token1, @@ -126279,13 +126208,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(434), 2, sym_catch_clause, sym_finally_clause, - [61528] = 6, + [61300] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, + ACTIONS(1683), 1, + sym_comment, STATE(1738), 1, sym_text_interpolation, STATE(2250), 1, @@ -126294,10 +126223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [61549] = 7, + [61321] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1695), 1, anon_sym_DOLLAR, @@ -126310,10 +126239,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(752), 2, sym_dynamic_variable_name, sym_variable_name, - [61572] = 4, + [61344] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1740), 1, sym_text_interpolation, @@ -126323,7 +126252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [61589] = 7, + [61361] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -126339,10 +126268,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(11), 2, aux_sym_text_token1, aux_sym_text_token2, - [61612] = 6, + [61384] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3693), 1, anon_sym_COMMA, @@ -126353,10 +126282,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3691), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61632] = 4, + [61404] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1743), 1, sym_text_interpolation, @@ -126365,10 +126294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [61648] = 6, + [61420] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3699), 1, anon_sym_COMMA, @@ -126379,10 +126308,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3697), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61668] = 7, + [61440] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -126394,10 +126323,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2259), 1, sym_class_interface_clause, - [61690] = 6, + [61462] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3699), 1, anon_sym_COMMA, @@ -126408,10 +126337,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3701), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61710] = 7, + [61482] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -126423,10 +126352,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2252), 1, sym__return_type, - [61732] = 7, + [61504] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -126438,10 +126367,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2251), 1, sym_class_interface_clause, - [61754] = 7, + [61526] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -126453,10 +126382,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2234), 1, sym__return_type, - [61776] = 6, + [61548] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3705), 1, aux_sym_namespace_aliasing_clause_token1, @@ -126467,10 +126396,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3703), 2, anon_sym_COMMA, anon_sym_RBRACE, - [61796] = 4, + [61568] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1751), 1, sym_text_interpolation, @@ -126479,10 +126408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [61812] = 5, + [61584] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1752), 1, sym_text_interpolation, @@ -126492,10 +126421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [61830] = 5, + [61602] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3711), 1, anon_sym_AMP, @@ -126505,10 +126434,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1753), 2, sym_text_interpolation, aux_sym_intersection_type_repeat1, - [61848] = 7, + [61620] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -126520,10 +126449,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2304), 1, sym_reference_modifier, - [61870] = 7, + [61642] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2946), 1, aux_sym__arrow_function_header_token1, @@ -126535,10 +126464,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2530), 1, sym_static_modifier, - [61892] = 6, + [61664] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3699), 1, anon_sym_COMMA, @@ -126549,10 +126478,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3718), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61912] = 6, + [61684] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3699), 1, anon_sym_COMMA, @@ -126563,10 +126492,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3718), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61932] = 5, + [61704] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1758), 1, sym_text_interpolation, @@ -126576,10 +126505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [61950] = 7, + [61722] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3252), 1, aux_sym_base_clause_token1, @@ -126591,13 +126520,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2294), 1, sym_base_clause, - [61972] = 6, + [61744] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(1760), 1, sym_text_interpolation, STATE(2322), 1, @@ -126605,10 +126534,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3339), 2, anon_sym_COMMA, anon_sym_RBRACK, - [61992] = 6, + [61764] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3699), 1, anon_sym_COMMA, @@ -126619,10 +126548,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3722), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62012] = 7, + [61784] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2936), 1, aux_sym_function_static_declaration_token1, @@ -126634,10 +126563,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2530), 1, sym_static_modifier, - [62034] = 4, + [61806] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1763), 1, sym_text_interpolation, @@ -126646,10 +126575,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_enum_case_token1, aux_sym_match_default_expression_token1, aux_sym_switch_block_token1, - [62050] = 4, + [61822] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1764), 1, sym_text_interpolation, @@ -126658,10 +126587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_RPAREN, anon_sym_RBRACK, - [62066] = 7, + [61838] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -126673,10 +126602,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2286), 1, sym_class_interface_clause, - [62088] = 6, + [61860] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3693), 1, anon_sym_COMMA, @@ -126687,10 +126616,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3730), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62108] = 7, + [61880] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -126702,10 +126631,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2287), 1, sym_class_interface_clause, - [62130] = 7, + [61902] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3732), 1, anon_sym_SEMI, @@ -126717,10 +126646,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(1768), 1, sym_text_interpolation, - [62152] = 5, + [61924] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3740), 1, anon_sym_COMMA, @@ -126730,10 +126659,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1769), 2, sym_text_interpolation, aux_sym_global_declaration_repeat1, - [62170] = 4, + [61942] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1770), 1, sym_text_interpolation, @@ -126742,10 +126671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BSLASH, anon_sym_LBRACE, - [62186] = 6, + [61958] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3745), 1, anon_sym_COMMA, @@ -126756,10 +126685,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3743), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62206] = 5, + [61978] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3749), 1, anon_sym_EQ, @@ -126769,10 +126698,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [62224] = 6, + [61996] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3753), 1, anon_sym_COMMA, @@ -126783,10 +126712,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3751), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62244] = 7, + [62016] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -126798,10 +126727,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2260), 1, sym_reference_modifier, - [62266] = 5, + [62038] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1775), 1, sym_text_interpolation, @@ -126811,10 +126740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [62284] = 7, + [62056] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -126826,10 +126755,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2320), 1, sym_class_interface_clause, - [62306] = 6, + [62078] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3757), 1, anon_sym_COMMA, @@ -126840,10 +126769,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3755), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62326] = 7, + [62098] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3734), 1, anon_sym_LBRACE, @@ -126855,10 +126784,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(1778), 1, sym_text_interpolation, - [62348] = 7, + [62120] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -126870,10 +126799,10 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2332), 1, sym_reference_modifier, - [62370] = 6, + [62142] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3385), 1, anon_sym_COMMA, @@ -126884,10 +126813,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3763), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [62390] = 7, + [62162] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -126899,10 +126828,10 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2313), 1, sym_class_interface_clause, - [62412] = 6, + [62184] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3385), 1, anon_sym_COMMA, @@ -126913,10 +126842,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3387), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [62432] = 6, + [62204] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3767), 1, anon_sym_PIPE, @@ -126927,10 +126856,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3765), 2, anon_sym_RPAREN, anon_sym_DOLLAR, - [62452] = 7, + [62224] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3734), 1, anon_sym_LBRACE, @@ -126942,10 +126871,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(1784), 1, sym_text_interpolation, - [62474] = 5, + [62246] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3775), 1, anon_sym_COMMA, @@ -126955,10 +126884,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1785), 2, sym_text_interpolation, aux_sym__const_declaration_repeat1, - [62492] = 7, + [62264] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -126970,10 +126899,10 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2357), 1, sym_reference_modifier, - [62514] = 6, + [62286] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3753), 1, anon_sym_COMMA, @@ -126984,10 +126913,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3778), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62534] = 6, + [62306] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3745), 1, anon_sym_COMMA, @@ -126998,10 +126927,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3780), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62554] = 6, + [62326] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3693), 1, anon_sym_COMMA, @@ -127012,10 +126941,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3782), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62574] = 7, + [62346] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -127027,10 +126956,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2305), 1, sym_reference_modifier, - [62596] = 7, + [62368] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -127042,10 +126971,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2192), 1, sym_class_interface_clause, - [62618] = 6, + [62390] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -127056,10 +126985,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(2024), 2, sym_variable_name, sym_variable_reference, - [62638] = 7, + [62410] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -127071,10 +127000,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2295), 1, sym_reference_modifier, - [62660] = 6, + [62432] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3693), 1, anon_sym_COMMA, @@ -127085,10 +127014,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3782), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62680] = 7, + [62452] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -127100,10 +127029,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2328), 1, sym__return_type, - [62702] = 4, + [62474] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1796), 1, sym_text_interpolation, @@ -127112,10 +127041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [62718] = 6, + [62490] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3699), 1, anon_sym_COMMA, @@ -127126,10 +127055,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3784), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62738] = 6, + [62510] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3786), 1, anon_sym_AMP, @@ -127140,7 +127069,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3489), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [62758] = 5, + [62530] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -127153,10 +127082,10 @@ static const uint16_t ts_small_parse_table[] = { sym_php_tag, aux_sym_text_token1, aux_sym_text_token2, - [62776] = 4, + [62548] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1800), 1, sym_text_interpolation, @@ -127165,10 +127094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [62792] = 5, + [62564] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3797), 1, anon_sym_COMMA, @@ -127178,10 +127107,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1801), 2, sym_text_interpolation, aux_sym_namespace_use_declaration_repeat1, - [62810] = 7, + [62582] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -127193,12 +127122,12 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2176), 1, sym_class_interface_clause, - [62832] = 7, + [62604] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -127208,10 +127137,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2345), 1, sym__return_type, - [62854] = 4, + [62626] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1804), 1, sym_text_interpolation, @@ -127220,10 +127149,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [62870] = 7, + [62642] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -127235,10 +127164,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2268), 1, sym_reference_modifier, - [62892] = 7, + [62664] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -127250,10 +127179,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2173), 1, sym__return_type, - [62914] = 7, + [62686] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -127265,10 +127194,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2172), 1, sym__return_type, - [62936] = 6, + [62708] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3693), 1, anon_sym_COMMA, @@ -127279,10 +127208,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3800), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62956] = 7, + [62728] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -127294,10 +127223,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2423), 1, sym__return_type, - [62978] = 7, + [62750] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -127309,10 +127238,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2171), 1, sym_class_interface_clause, - [63000] = 6, + [62772] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3699), 1, anon_sym_COMMA, @@ -127323,10 +127252,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3802), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63020] = 7, + [62792] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -127338,10 +127267,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2169), 1, sym_class_interface_clause, - [63042] = 7, + [62814] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -127353,12 +127282,12 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2312), 1, sym_class_interface_clause, - [63064] = 7, + [62836] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -127368,10 +127297,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2397), 1, sym__return_type, - [63086] = 5, + [62858] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3806), 1, anon_sym_COMMA, @@ -127381,10 +127310,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1815), 2, sym_text_interpolation, aux_sym_function_static_declaration_repeat1, - [63104] = 7, + [62876] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -127396,10 +127325,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2353), 1, sym__return_type, - [63126] = 7, + [62898] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -127411,10 +127340,10 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2356), 1, sym_reference_modifier, - [63148] = 6, + [62920] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3757), 1, anon_sym_COMMA, @@ -127425,10 +127354,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3809), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63168] = 7, + [62940] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -127440,10 +127369,10 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2387), 1, sym_class_interface_clause, - [63190] = 7, + [62962] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -127455,10 +127384,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2364), 1, sym_reference_modifier, - [63212] = 7, + [62984] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, @@ -127470,10 +127399,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2381), 1, sym_class_interface_clause, - [63234] = 7, + [63006] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, @@ -127485,10 +127414,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2379), 1, sym_class_interface_clause, - [63256] = 6, + [63028] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -127499,10 +127428,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(2156), 2, sym_variable_name, sym_variable_reference, - [63276] = 6, + [63048] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3753), 1, anon_sym_COMMA, @@ -127513,10 +127442,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3811), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63296] = 6, + [63068] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3745), 1, anon_sym_COMMA, @@ -127527,10 +127456,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3813), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63316] = 4, + [63088] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1826), 1, sym_text_interpolation, @@ -127539,10 +127468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [63332] = 6, + [63104] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3693), 1, anon_sym_COMMA, @@ -127553,10 +127482,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3815), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63352] = 7, + [63124] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -127568,10 +127497,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2419), 1, sym_class_interface_clause, - [63374] = 6, + [63146] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3705), 1, aux_sym_namespace_aliasing_clause_token1, @@ -127582,10 +127511,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3817), 2, anon_sym_COMMA, anon_sym_RBRACE, - [63394] = 4, + [63166] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1830), 1, sym_text_interpolation, @@ -127594,10 +127523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP, anon_sym_LBRACE, - [63410] = 6, + [63182] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3699), 1, anon_sym_COMMA, @@ -127608,10 +127537,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3819), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63430] = 5, + [63202] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1832), 1, sym_text_interpolation, @@ -127621,10 +127550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [63448] = 7, + [63220] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -127636,10 +127565,10 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2256), 1, sym_reference_modifier, - [63470] = 7, + [63242] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, @@ -127651,10 +127580,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2275), 1, sym_base_clause, - [63492] = 4, + [63264] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1835), 1, sym_text_interpolation, @@ -127663,10 +127592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PIPE, - [63508] = 7, + [63280] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -127678,10 +127607,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2371), 1, sym_class_interface_clause, - [63530] = 7, + [63302] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -127693,10 +127622,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2227), 1, sym_reference_modifier, - [63552] = 6, + [63324] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3699), 1, anon_sym_COMMA, @@ -127707,10 +127636,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3821), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63572] = 7, + [63344] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1713), 1, anon_sym_AMP, @@ -127722,10 +127651,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2416), 1, sym_reference_modifier, - [63594] = 7, + [63366] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -127737,10 +127666,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2336), 1, sym_class_interface_clause, - [63616] = 4, + [63388] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1841), 1, sym_text_interpolation, @@ -127749,10 +127678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [63632] = 6, + [63404] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3699), 1, anon_sym_COMMA, @@ -127763,10 +127692,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3825), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63652] = 6, + [63424] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3699), 1, anon_sym_COMMA, @@ -127777,10 +127706,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3825), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63672] = 6, + [63444] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3699), 1, anon_sym_COMMA, @@ -127791,7 +127720,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3802), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63692] = 5, + [63464] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -127804,12 +127733,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(1845), 2, sym_text_interpolation, aux_sym_nowdoc_body_repeat1, - [63710] = 7, + [63482] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -127819,10 +127748,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2355), 1, sym__return_type, - [63732] = 7, + [63504] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -127834,12 +127763,12 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2352), 1, sym_class_interface_clause, - [63754] = 7, + [63526] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -127849,10 +127778,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2346), 1, sym__return_type, - [63776] = 5, + [63548] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3834), 1, anon_sym_PIPE, @@ -127862,10 +127791,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1849), 2, sym_text_interpolation, aux_sym_type_list_repeat1, - [63794] = 4, + [63566] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1850), 1, sym_text_interpolation, @@ -127874,10 +127803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [63810] = 6, + [63582] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3757), 1, anon_sym_COMMA, @@ -127888,10 +127817,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3837), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63830] = 6, + [63602] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3839), 1, sym_integer, @@ -127902,10 +127831,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(298), 2, anon_sym_SQUOTE, aux_sym_string_token1, - [63850] = 6, + [63622] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3757), 1, anon_sym_COMMA, @@ -127916,10 +127845,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3841), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63870] = 5, + [63642] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3845), 1, anon_sym_COMMA, @@ -127929,10 +127858,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1854), 2, sym_text_interpolation, aux_sym_property_declaration_repeat2, - [63888] = 7, + [63660] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3734), 1, anon_sym_LBRACE, @@ -127944,10 +127873,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(1855), 1, sym_text_interpolation, - [63910] = 6, + [63682] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3757), 1, anon_sym_COMMA, @@ -127958,10 +127887,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3852), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63930] = 7, + [63702] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, @@ -127973,10 +127902,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2335), 1, sym_class_interface_clause, - [63952] = 6, + [63724] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3757), 1, anon_sym_COMMA, @@ -127987,10 +127916,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3854), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63972] = 7, + [63744] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -128002,10 +127931,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2326), 1, sym_class_interface_clause, - [63994] = 6, + [63766] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3757), 1, anon_sym_COMMA, @@ -128016,10 +127945,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3856), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64014] = 4, + [63786] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1861), 1, sym_text_interpolation, @@ -128028,10 +127957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [64030] = 6, + [63802] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3757), 1, anon_sym_COMMA, @@ -128042,10 +127971,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3858), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64050] = 4, + [63822] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1863), 1, sym_text_interpolation, @@ -128054,12 +127983,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [64066] = 7, + [63838] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -128069,10 +127998,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2323), 1, sym__return_type, - [64088] = 4, + [63860] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1865), 1, sym_text_interpolation, @@ -128081,10 +128010,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_RPAREN, anon_sym_RBRACK, - [64104] = 5, + [63876] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3862), 1, anon_sym_COMMA, @@ -128094,10 +128023,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1866), 2, sym_text_interpolation, aux_sym_base_clause_repeat1, - [64122] = 7, + [63894] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -128109,10 +128038,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2185), 1, sym_class_interface_clause, - [64144] = 6, + [63916] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3865), 1, sym_integer, @@ -128123,10 +128052,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(298), 2, anon_sym_SQUOTE, aux_sym_string_token1, - [64164] = 6, + [63936] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3767), 1, anon_sym_PIPE, @@ -128137,10 +128066,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3867), 2, anon_sym_RPAREN, anon_sym_DOLLAR, - [64184] = 7, + [63956] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -128152,12 +128081,12 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2184), 1, sym__return_type, - [64206] = 7, + [63978] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -128167,10 +128096,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2292), 1, sym__return_type, - [64228] = 7, + [64000] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, @@ -128182,10 +128111,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2409), 1, sym_class_interface_clause, - [64250] = 4, + [64022] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1873), 1, sym_text_interpolation, @@ -128194,10 +128123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, - [64266] = 6, + [64038] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3753), 1, anon_sym_COMMA, @@ -128208,10 +128137,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3869), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64286] = 6, + [64058] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3745), 1, anon_sym_COMMA, @@ -128222,10 +128151,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3871), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64306] = 6, + [64078] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3693), 1, anon_sym_COMMA, @@ -128236,12 +128165,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3873), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64326] = 7, + [64098] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3875), 1, anon_sym_EQ, @@ -128251,10 +128180,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1885), 1, aux_sym__list_destructing_repeat1, - [64348] = 6, + [64120] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3693), 1, anon_sym_COMMA, @@ -128265,7 +128194,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3873), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64368] = 5, + [64140] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -128278,10 +128207,10 @@ static const uint16_t ts_small_parse_table[] = { sym_php_tag, aux_sym_text_token1, aux_sym_text_token2, - [64386] = 7, + [64158] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -128293,12 +128222,12 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2372), 1, sym_class_interface_clause, - [64408] = 7, + [64180] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -128308,10 +128237,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2317), 1, sym__return_type, - [64430] = 7, + [64202] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3254), 1, aux_sym_class_interface_clause_token1, @@ -128323,7 +128252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2291), 1, sym_class_interface_clause, - [64452] = 6, + [64224] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -128337,12 +128266,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3879), 2, sym_heredoc_end, sym__new_line, - [64472] = 7, + [64244] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -128352,12 +128281,12 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2358), 1, sym__return_type, - [64494] = 6, + [64266] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3883), 1, anon_sym_RPAREN, @@ -128365,12 +128294,12 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1989), 1, aux_sym__list_destructing_repeat1, - [64513] = 6, + [64285] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(795), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3885), 1, anon_sym_COMMA, @@ -128378,22 +128307,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2070), 1, aux_sym_arguments_repeat1, - [64532] = 5, + [64304] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(306), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1887), 1, sym_text_interpolation, STATE(1771), 2, sym_dynamic_variable_name, sym_variable_name, - [64549] = 6, + [64321] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3887), 1, anon_sym_SQUOTE, @@ -128403,10 +128332,10 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_start, STATE(1888), 1, sym_text_interpolation, - [64568] = 6, + [64340] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2944), 1, aux_sym_readonly_modifier_token1, @@ -128416,10 +128345,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2536), 1, sym_readonly_modifier, - [64587] = 6, + [64359] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3463), 1, anon_sym_BSLASH, @@ -128429,10 +128358,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2589), 1, sym_namespace_name, - [64606] = 6, + [64378] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -128442,10 +128371,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2495), 1, sym__return_type, - [64625] = 5, + [64397] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3899), 1, anon_sym_COMMA, @@ -128454,10 +128383,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1892), 2, sym_text_interpolation, aux_sym_array_creation_expression_repeat1, - [64642] = 6, + [64414] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3904), 1, anon_sym_LBRACE, @@ -128467,10 +128396,10 @@ static const uint16_t ts_small_parse_table[] = { sym_switch_block, STATE(1893), 1, sym_text_interpolation, - [64661] = 6, + [64433] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3908), 1, anon_sym_COMMA, @@ -128480,10 +128409,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1939), 1, aux_sym_array_creation_expression_repeat1, - [64680] = 5, + [64452] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3875), 1, anon_sym_EQ, @@ -128492,10 +128421,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3912), 2, anon_sym_COMMA, anon_sym_RBRACK, - [64697] = 6, + [64469] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3914), 1, anon_sym_COMMA, @@ -128505,10 +128434,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1930), 1, aux_sym_formal_parameters_repeat1, - [64716] = 6, + [64488] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3918), 1, anon_sym_COMMA, @@ -128518,10 +128447,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1925), 1, aux_sym__array_destructing_repeat1, - [64735] = 6, + [64507] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3922), 1, anon_sym_COMMA, @@ -128531,10 +128460,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1926), 1, aux_sym_array_creation_expression_repeat1, - [64754] = 6, + [64526] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2944), 1, aux_sym_readonly_modifier_token1, @@ -128544,10 +128473,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2565), 1, sym_readonly_modifier, - [64773] = 6, + [64545] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3918), 1, anon_sym_COMMA, @@ -128557,10 +128486,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1927), 1, aux_sym__array_destructing_repeat1, - [64792] = 6, + [64564] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3928), 1, anon_sym_COMMA, @@ -128570,10 +128499,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1928), 1, aux_sym_attribute_group_repeat1, - [64811] = 6, + [64583] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2944), 1, aux_sym_readonly_modifier_token1, @@ -128583,7 +128512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2555), 1, sym_readonly_modifier, - [64830] = 6, + [64602] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -128596,7 +128525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2258), 1, sym_heredoc_body, - [64849] = 6, + [64621] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -128609,12 +128538,12 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2329), 1, sym_heredoc_body, - [64868] = 6, + [64640] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(773), 1, anon_sym_RBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3940), 1, anon_sym_COMMA, @@ -128622,10 +128551,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1994), 1, aux_sym_array_creation_expression_repeat1, - [64887] = 6, + [64659] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3942), 1, anon_sym_COMMA, @@ -128635,10 +128564,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1907), 1, aux_sym_attribute_group_repeat1, - [64906] = 6, + [64678] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3056), 1, anon_sym_RBRACK, @@ -128648,10 +128577,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1996), 1, aux_sym_attribute_group_repeat1, - [64925] = 6, + [64697] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3948), 1, anon_sym_COMMA, @@ -128661,10 +128590,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_array_creation_expression_repeat1, STATE(1908), 1, sym_text_interpolation, - [64944] = 6, + [64716] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2944), 1, aux_sym_readonly_modifier_token1, @@ -128674,23 +128603,23 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2457), 1, sym_readonly_modifier, - [64963] = 6, + [64735] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1683), 1, + ACTIONS(1681), 1, anon_sym_DOLLAR, + ACTIONS(1683), 1, + sym_comment, STATE(1772), 1, sym_variable_name, STATE(1910), 1, sym_text_interpolation, STATE(1933), 1, sym_static_variable_declaration, - [64982] = 6, + [64754] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3954), 1, anon_sym_LBRACE, @@ -128700,22 +128629,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2087), 1, sym_switch_block, - [65001] = 5, + [64773] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(306), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1912), 1, sym_text_interpolation, STATE(1937), 2, sym_dynamic_variable_name, sym_variable_name, - [65018] = 6, + [64790] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3958), 1, anon_sym_COMMA, @@ -128725,10 +128654,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1963), 1, aux_sym_arguments_repeat1, - [65037] = 4, + [64809] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1914), 1, sym_text_interpolation, @@ -128736,10 +128665,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [65052] = 6, + [64824] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3964), 1, sym_name, @@ -128749,10 +128678,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2393), 1, sym_namespace_use_group, - [65071] = 6, + [64843] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -128762,10 +128691,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1944), 1, sym_variable_name, - [65090] = 6, + [64862] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3970), 1, anon_sym_COMMA, @@ -128775,10 +128704,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1946), 1, aux_sym_formal_parameters_repeat1, - [65109] = 5, + [64881] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3976), 1, anon_sym_EQ, @@ -128787,10 +128716,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3974), 2, anon_sym_COMMA, anon_sym_RPAREN, - [65126] = 6, + [64898] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -128800,10 +128729,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2429), 1, sym__return_type, - [65145] = 6, + [64917] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -128813,10 +128742,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2428), 1, sym__return_type, - [65164] = 6, + [64936] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3980), 1, anon_sym_COMMA, @@ -128826,10 +128755,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1974), 1, aux_sym_array_creation_expression_repeat1, - [65183] = 4, + [64955] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1922), 1, sym_text_interpolation, @@ -128837,36 +128766,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [65198] = 6, + [64970] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1628), 1, + ACTIONS(1626), 1, anon_sym_RPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(1923), 1, sym_text_interpolation, STATE(1986), 1, aux_sym__list_destructing_repeat1, - [65217] = 6, + [64989] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1628), 1, + ACTIONS(1626), 1, anon_sym_RPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(1924), 1, sym_text_interpolation, STATE(1989), 1, aux_sym__list_destructing_repeat1, - [65236] = 6, + [65008] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3918), 1, anon_sym_COMMA, @@ -128876,12 +128805,12 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1927), 1, aux_sym__array_destructing_repeat1, - [65255] = 6, + [65027] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(789), 1, anon_sym_RBRACK, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3988), 1, anon_sym_COMMA, @@ -128889,10 +128818,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1994), 1, aux_sym_array_creation_expression_repeat1, - [65274] = 5, + [65046] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3990), 1, anon_sym_COMMA, @@ -128901,10 +128830,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(1927), 2, sym_text_interpolation, aux_sym__array_destructing_repeat1, - [65291] = 6, + [65063] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3050), 1, anon_sym_RBRACK, @@ -128914,10 +128843,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1996), 1, aux_sym_attribute_group_repeat1, - [65310] = 6, + [65082] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3997), 1, anon_sym_COMMA, @@ -128927,10 +128856,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2001), 1, aux_sym_arguments_repeat1, - [65329] = 6, + [65101] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1839), 1, anon_sym_RPAREN, @@ -128940,10 +128869,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2015), 1, aux_sym_formal_parameters_repeat1, - [65348] = 6, + [65120] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -128953,10 +128882,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2456), 1, sym__return_type, - [65367] = 6, + [65139] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -128966,10 +128895,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2459), 1, sym__return_type, - [65386] = 4, + [65158] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1933), 1, sym_text_interpolation, @@ -128977,46 +128906,46 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [65401] = 5, + [65173] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1362), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1934), 1, sym_text_interpolation, ACTIONS(1360), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [65418] = 5, + [65190] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1470), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1935), 1, sym_text_interpolation, ACTIONS(1468), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [65435] = 5, + [65207] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1486), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1936), 1, sym_text_interpolation, ACTIONS(1484), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [65452] = 4, + [65224] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1937), 1, sym_text_interpolation, @@ -129024,24 +128953,24 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [65467] = 5, + [65239] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1158), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1938), 1, sym_text_interpolation, ACTIONS(1156), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [65484] = 6, + [65256] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(767), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4007), 1, anon_sym_COMMA, @@ -129049,10 +128978,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_array_creation_expression_repeat1, STATE(1939), 1, sym_text_interpolation, - [65503] = 6, + [65275] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3966), 1, anon_sym_LBRACE, @@ -129062,22 +128991,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2351), 1, sym_namespace_use_group, - [65522] = 5, + [65294] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1210), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1941), 1, sym_text_interpolation, ACTIONS(1208), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [65539] = 4, + [65311] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1942), 1, sym_text_interpolation, @@ -129085,10 +129014,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [65554] = 4, + [65326] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1943), 1, sym_text_interpolation, @@ -129096,10 +129025,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [65569] = 5, + [65341] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4015), 1, anon_sym_EQ, @@ -129108,10 +129037,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4013), 2, anon_sym_COMMA, anon_sym_RPAREN, - [65586] = 5, + [65358] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4019), 1, anon_sym_EQ, @@ -129120,10 +129049,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4017), 2, anon_sym_COMMA, anon_sym_RPAREN, - [65603] = 6, + [65375] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1837), 1, anon_sym_RPAREN, @@ -129133,10 +129062,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2015), 1, aux_sym_formal_parameters_repeat1, - [65622] = 6, + [65394] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4023), 1, anon_sym_COMMA, @@ -129146,22 +129075,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1991), 1, aux_sym_match_block_repeat1, - [65641] = 5, + [65413] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1214), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1948), 1, sym_text_interpolation, ACTIONS(1212), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [65658] = 6, + [65430] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -129171,22 +129100,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2016), 1, sym_variable_name, - [65677] = 5, + [65449] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1230), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1950), 1, sym_text_interpolation, ACTIONS(1228), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [65694] = 5, + [65466] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4031), 1, anon_sym_EQ, @@ -129195,34 +129124,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4029), 2, anon_sym_COMMA, anon_sym_RPAREN, - [65711] = 5, + [65483] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1230), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1952), 1, sym_text_interpolation, ACTIONS(1228), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [65728] = 5, + [65500] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1246), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1953), 1, sym_text_interpolation, ACTIONS(1244), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [65745] = 6, + [65517] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -129232,46 +129161,46 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2017), 1, sym_variable_name, - [65764] = 5, + [65536] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1250), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1955), 1, sym_text_interpolation, ACTIONS(1248), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [65781] = 5, + [65553] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1254), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1956), 1, sym_text_interpolation, ACTIONS(1252), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [65798] = 5, + [65570] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1310), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1957), 1, sym_text_interpolation, ACTIONS(1308), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [65815] = 5, + [65587] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4037), 1, anon_sym_EQ, @@ -129280,10 +129209,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4035), 2, anon_sym_COMMA, anon_sym_RPAREN, - [65832] = 6, + [65604] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -129293,7 +129222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2470), 1, sym__return_type, - [65851] = 6, + [65623] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -129306,7 +129235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2378), 1, sym_nowdoc_body, - [65870] = 6, + [65642] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -129319,24 +129248,24 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2376), 1, sym_heredoc_body, - [65889] = 5, + [65661] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1310), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1962), 1, sym_text_interpolation, ACTIONS(1308), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [65906] = 6, + [65678] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(793), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4045), 1, anon_sym_COMMA, @@ -129344,22 +129273,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2070), 1, aux_sym_arguments_repeat1, - [65925] = 5, + [65697] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1130), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1964), 1, sym_text_interpolation, ACTIONS(1128), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [65942] = 4, + [65714] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1965), 1, sym_text_interpolation, @@ -129367,82 +129296,82 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [65957] = 5, + [65729] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1390), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1966), 1, sym_text_interpolation, ACTIONS(1388), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [65974] = 5, + [65746] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1418), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1967), 1, sym_text_interpolation, ACTIONS(1416), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [65991] = 5, + [65763] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1426), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1968), 1, sym_text_interpolation, ACTIONS(1424), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66008] = 5, + [65780] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1442), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1969), 1, sym_text_interpolation, ACTIONS(1440), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66025] = 5, + [65797] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1494), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1970), 1, sym_text_interpolation, ACTIONS(1492), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66042] = 5, + [65814] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1474), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1971), 1, sym_text_interpolation, ACTIONS(1472), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66059] = 6, + [65831] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3385), 1, anon_sym_COMMA, @@ -129452,24 +129381,24 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2028), 1, aux_sym_base_clause_repeat1, - [66078] = 5, + [65850] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1286), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1973), 1, sym_text_interpolation, ACTIONS(1284), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66095] = 6, + [65867] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(805), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4047), 1, anon_sym_COMMA, @@ -129477,22 +129406,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_array_creation_expression_repeat1, STATE(1974), 1, sym_text_interpolation, - [66114] = 5, + [65886] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1286), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1975), 1, sym_text_interpolation, ACTIONS(1284), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66131] = 6, + [65903] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3082), 1, anon_sym_COMMA, @@ -129502,22 +129431,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2029), 1, aux_sym_unset_statement_repeat1, - [66150] = 5, + [65922] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1222), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1977), 1, sym_text_interpolation, ACTIONS(1220), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66167] = 5, + [65939] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4053), 1, aux_sym_else_clause_token1, @@ -129526,22 +129455,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4051), 2, aux_sym_if_statement_token2, aux_sym_else_if_clause_token1, - [66184] = 5, + [65956] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1198), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1979), 1, sym_text_interpolation, ACTIONS(1196), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66201] = 6, + [65973] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3964), 1, sym_name, @@ -129551,10 +129480,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2351), 1, sym_namespace_use_group, - [66220] = 6, + [65992] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4055), 1, anon_sym_COMMA, @@ -129564,22 +129493,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2035), 1, aux_sym_match_block_repeat1, - [66239] = 5, + [66011] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1198), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1982), 1, sym_text_interpolation, ACTIONS(1196), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66256] = 5, + [66028] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3875), 1, anon_sym_EQ, @@ -129588,10 +129517,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4059), 2, anon_sym_COMMA, anon_sym_RPAREN, - [66273] = 4, + [66045] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1984), 1, sym_text_interpolation, @@ -129599,24 +129528,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [66288] = 5, + [66060] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1142), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1985), 1, sym_text_interpolation, ACTIONS(1140), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66305] = 6, + [66077] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4063), 1, anon_sym_RPAREN, @@ -129624,22 +129553,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1989), 1, aux_sym__list_destructing_repeat1, - [66324] = 5, + [66096] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1142), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1987), 1, sym_text_interpolation, ACTIONS(1140), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66341] = 4, + [66113] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1988), 1, sym_text_interpolation, @@ -129647,36 +129576,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [66356] = 5, + [66128] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1647), 1, + ACTIONS(1645), 1, anon_sym_RPAREN, + ACTIONS(1683), 1, + sym_comment, ACTIONS(4067), 1, anon_sym_COMMA, STATE(1989), 2, sym_text_interpolation, aux_sym__list_destructing_repeat1, - [66373] = 5, + [66145] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1174), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1990), 1, sym_text_interpolation, ACTIONS(1172), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66390] = 6, + [66162] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(826), 1, anon_sym_RBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4070), 1, anon_sym_COMMA, @@ -129684,10 +129613,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2141), 1, aux_sym_match_block_repeat1, - [66409] = 5, + [66181] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3875), 1, anon_sym_EQ, @@ -129696,10 +129625,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4072), 2, anon_sym_COMMA, anon_sym_RBRACK, - [66426] = 4, + [66198] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1993), 1, sym_text_interpolation, @@ -129707,10 +129636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [66441] = 5, + [66213] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3902), 1, anon_sym_RBRACK, @@ -129719,22 +129648,22 @@ static const uint16_t ts_small_parse_table[] = { STATE(1994), 2, sym_text_interpolation, aux_sym_array_creation_expression_repeat1, - [66458] = 5, + [66230] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1358), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1995), 1, sym_text_interpolation, ACTIONS(1356), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66475] = 5, + [66247] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4077), 1, anon_sym_COMMA, @@ -129743,7 +129672,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1996), 2, sym_text_interpolation, aux_sym_attribute_group_repeat1, - [66492] = 6, + [66264] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -129756,19 +129685,19 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2267), 1, sym_nowdoc_body, - [66511] = 5, + [66283] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1490), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1998), 1, sym_text_interpolation, ACTIONS(1488), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66528] = 6, + [66300] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -129781,24 +129710,24 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2264), 1, sym_heredoc_body, - [66547] = 5, + [66319] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1458), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2000), 1, sym_text_interpolation, ACTIONS(1456), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66564] = 6, + [66336] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(799), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4086), 1, anon_sym_COMMA, @@ -129806,10 +129735,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2070), 1, aux_sym_arguments_repeat1, - [66583] = 6, + [66355] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -129819,22 +129748,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2535), 1, sym__return_type, - [66602] = 5, + [66374] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1170), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2003), 1, sym_text_interpolation, ACTIONS(1168), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66619] = 6, + [66391] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -129844,22 +129773,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2551), 1, sym__return_type, - [66638] = 5, + [66410] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1406), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2005), 1, sym_text_interpolation, ACTIONS(1404), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66655] = 6, + [66427] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -129869,22 +129798,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2579), 1, sym__return_type, - [66674] = 5, + [66446] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1202), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2007), 1, sym_text_interpolation, ACTIONS(1200), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66691] = 6, + [66463] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3966), 1, anon_sym_LBRACE, @@ -129894,22 +129823,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2232), 1, sym_namespace_use_group, - [66710] = 5, + [66482] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1374), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2009), 1, sym_text_interpolation, ACTIONS(1372), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66727] = 6, + [66499] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4094), 1, anon_sym_COMMA, @@ -129919,22 +129848,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2078), 1, aux_sym_namespace_use_group_repeat1, - [66746] = 5, + [66518] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1362), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2011), 1, sym_text_interpolation, ACTIONS(1360), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66763] = 5, + [66535] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4100), 1, anon_sym_EQ, @@ -129943,22 +129872,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4098), 2, anon_sym_COMMA, anon_sym_RPAREN, - [66780] = 5, + [66552] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1258), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2013), 1, sym_text_interpolation, ACTIONS(1256), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66797] = 5, + [66569] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4104), 1, anon_sym_EQ, @@ -129967,10 +129896,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4102), 2, anon_sym_COMMA, anon_sym_RPAREN, - [66814] = 5, + [66586] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4106), 1, anon_sym_COMMA, @@ -129979,10 +129908,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(2015), 2, sym_text_interpolation, aux_sym_formal_parameters_repeat1, - [66831] = 5, + [66603] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4113), 1, anon_sym_EQ, @@ -129991,10 +129920,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4111), 2, anon_sym_COMMA, anon_sym_RPAREN, - [66848] = 5, + [66620] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4117), 1, anon_sym_EQ, @@ -130003,34 +129932,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4115), 2, anon_sym_COMMA, anon_sym_RPAREN, - [66865] = 5, + [66637] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1354), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2018), 1, sym_text_interpolation, ACTIONS(1352), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66882] = 5, + [66654] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1242), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2019), 1, sym_text_interpolation, ACTIONS(1240), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66899] = 5, + [66671] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4121), 1, anon_sym_EQ, @@ -130039,22 +129968,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4119), 2, anon_sym_COMMA, anon_sym_RPAREN, - [66916] = 5, + [66688] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1218), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2021), 1, sym_text_interpolation, ACTIONS(1216), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66933] = 6, + [66705] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -130064,10 +129993,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2100), 1, sym_variable_name, - [66952] = 5, + [66724] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4127), 1, anon_sym_EQ, @@ -130076,10 +130005,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4125), 2, anon_sym_COMMA, anon_sym_RPAREN, - [66969] = 6, + [66741] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4129), 1, anon_sym_COMMA, @@ -130089,23 +130018,23 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2116), 1, aux_sym_anonymous_function_use_clause_repeat1, - [66988] = 6, + [66760] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1683), 1, + ACTIONS(1681), 1, anon_sym_DOLLAR, + ACTIONS(1683), 1, + sym_comment, STATE(1698), 1, sym_variable_name, STATE(1862), 1, sym_property_element, STATE(2025), 1, sym_text_interpolation, - [67007] = 5, + [66779] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4135), 1, anon_sym_EQ, @@ -130114,22 +130043,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4133), 2, sym__automatic_semicolon, anon_sym_SEMI, - [67024] = 5, + [66796] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1218), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2027), 1, sym_text_interpolation, ACTIONS(1216), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67041] = 6, + [66813] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3385), 1, anon_sym_COMMA, @@ -130139,10 +130068,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_base_clause_repeat1, STATE(2028), 1, sym_text_interpolation, - [67060] = 5, + [66832] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3206), 1, anon_sym_RPAREN, @@ -130151,10 +130080,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(2029), 2, sym_text_interpolation, aux_sym_unset_statement_repeat1, - [67077] = 6, + [66849] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -130164,10 +130093,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2473), 1, sym_variable_name, - [67096] = 6, + [66868] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -130177,22 +130106,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2606), 1, sym_variable_name, - [67115] = 5, + [66887] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1162), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2032), 1, sym_text_interpolation, ACTIONS(1160), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67132] = 6, + [66904] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3966), 1, anon_sym_LBRACE, @@ -130202,10 +130131,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2261), 1, sym_namespace_use_group, - [67151] = 6, + [66923] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3082), 1, anon_sym_COMMA, @@ -130215,12 +130144,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unset_statement_repeat1, STATE(2034), 1, sym_text_interpolation, - [67170] = 6, + [66942] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(824), 1, anon_sym_RBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4148), 1, anon_sym_COMMA, @@ -130228,10 +130157,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2141), 1, aux_sym_match_block_repeat1, - [67189] = 6, + [66961] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2435), 1, anon_sym_COMMA, @@ -130241,22 +130170,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2131), 1, aux_sym_match_condition_list_repeat1, - [67208] = 5, + [66980] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1154), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2037), 1, sym_text_interpolation, ACTIONS(1152), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67225] = 6, + [66997] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3966), 1, anon_sym_LBRACE, @@ -130266,10 +130195,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2396), 1, sym_namespace_use_group, - [67244] = 6, + [67016] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3964), 1, sym_name, @@ -130279,12 +130208,12 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2396), 1, sym_namespace_use_group, - [67263] = 6, + [67035] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4152), 1, anon_sym_RPAREN, @@ -130292,24 +130221,24 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2137), 1, aux_sym__list_destructing_repeat1, - [67282] = 5, + [67054] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1146), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2041), 1, sym_text_interpolation, ACTIONS(1144), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67299] = 6, + [67071] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3086), 1, anon_sym_RPAREN, @@ -130317,10 +130246,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2133), 1, aux_sym__list_destructing_repeat1, - [67318] = 4, + [67090] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2043), 1, sym_text_interpolation, @@ -130328,10 +130257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [67333] = 4, + [67105] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2044), 1, sym_text_interpolation, @@ -130339,10 +130268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [67348] = 6, + [67120] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3964), 1, sym_name, @@ -130352,214 +130281,214 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2321), 1, sym_namespace_use_group, - [67367] = 5, + [67139] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1414), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2046), 1, sym_text_interpolation, ACTIONS(1412), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67384] = 5, + [67156] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1326), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2047), 1, sym_text_interpolation, ACTIONS(1324), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67401] = 5, + [67173] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1290), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2048), 1, sym_text_interpolation, ACTIONS(1288), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67418] = 5, + [67190] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1206), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2049), 1, sym_text_interpolation, ACTIONS(1204), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67435] = 5, + [67207] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1150), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2050), 1, sym_text_interpolation, ACTIONS(1148), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67452] = 5, + [67224] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1342), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2051), 1, sym_text_interpolation, ACTIONS(1340), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67469] = 5, + [67241] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1446), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2052), 1, sym_text_interpolation, ACTIONS(1444), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67486] = 5, + [67258] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1478), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2053), 1, sym_text_interpolation, ACTIONS(1476), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67503] = 5, + [67275] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1466), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2054), 1, sym_text_interpolation, ACTIONS(1464), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67520] = 5, + [67292] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1134), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2055), 1, sym_text_interpolation, ACTIONS(1132), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67537] = 5, + [67309] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1450), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2056), 1, sym_text_interpolation, ACTIONS(1448), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67554] = 5, + [67326] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1438), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2057), 1, sym_text_interpolation, ACTIONS(1436), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67571] = 5, + [67343] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1438), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2058), 1, sym_text_interpolation, ACTIONS(1436), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67588] = 5, + [67360] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1394), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2059), 1, sym_text_interpolation, ACTIONS(1392), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67605] = 5, + [67377] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1386), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2060), 1, sym_text_interpolation, ACTIONS(1384), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67622] = 5, + [67394] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1382), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2061), 1, sym_text_interpolation, ACTIONS(1380), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67639] = 5, + [67411] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1378), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2062), 1, sym_text_interpolation, ACTIONS(1376), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67656] = 4, + [67428] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2063), 1, sym_text_interpolation, @@ -130567,67 +130496,67 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [67671] = 5, + [67443] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1370), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2064), 1, sym_text_interpolation, ACTIONS(1368), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67688] = 5, + [67460] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1166), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2065), 1, sym_text_interpolation, ACTIONS(1164), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67705] = 5, + [67477] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1238), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2066), 1, sym_text_interpolation, ACTIONS(1236), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67722] = 5, + [67494] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1266), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2067), 1, sym_text_interpolation, ACTIONS(1264), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67739] = 5, + [67511] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1270), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2068), 1, sym_text_interpolation, ACTIONS(1268), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67756] = 6, + [67528] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -130640,10 +130569,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_nowdoc_body_repeat1, STATE(2069), 1, sym_text_interpolation, - [67775] = 5, + [67547] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4162), 1, anon_sym_COMMA, @@ -130652,10 +130581,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(2070), 2, sym_text_interpolation, aux_sym_arguments_repeat1, - [67792] = 6, + [67564] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4167), 1, anon_sym_SQUOTE, @@ -130665,10 +130594,10 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_start, STATE(2071), 1, sym_text_interpolation, - [67811] = 6, + [67583] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3323), 1, anon_sym_COLON, @@ -130678,70 +130607,70 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2643), 1, sym__return_type, - [67830] = 5, + [67602] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(306), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2073), 1, sym_text_interpolation, STATE(1825), 2, sym_dynamic_variable_name, sym_variable_name, - [67847] = 5, + [67619] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1346), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2074), 1, sym_text_interpolation, ACTIONS(1344), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67864] = 5, + [67636] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1350), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2075), 1, sym_text_interpolation, ACTIONS(1348), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67881] = 5, + [67653] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1398), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2076), 1, sym_text_interpolation, ACTIONS(1396), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67898] = 5, + [67670] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1410), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2077), 1, sym_text_interpolation, ACTIONS(1408), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67915] = 6, + [67687] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4094), 1, anon_sym_COMMA, @@ -130751,22 +130680,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2148), 1, aux_sym_namespace_use_group_repeat1, - [67934] = 5, + [67706] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1482), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2079), 1, sym_text_interpolation, ACTIONS(1480), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67951] = 4, + [67723] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2080), 1, sym_text_interpolation, @@ -130774,10 +130703,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [67966] = 4, + [67738] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2081), 1, sym_text_interpolation, @@ -130785,10 +130714,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [67981] = 5, + [67753] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4183), 1, anon_sym_EQ, @@ -130797,94 +130726,94 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4181), 2, anon_sym_COMMA, anon_sym_RPAREN, - [67998] = 5, + [67770] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1334), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2083), 1, sym_text_interpolation, ACTIONS(1332), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68015] = 5, + [67787] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1322), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2084), 1, sym_text_interpolation, ACTIONS(1320), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68032] = 5, + [67804] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1306), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2085), 1, sym_text_interpolation, ACTIONS(1304), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68049] = 5, + [67821] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1234), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2086), 1, sym_text_interpolation, ACTIONS(1232), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68066] = 5, + [67838] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1138), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2087), 1, sym_text_interpolation, ACTIONS(1136), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68083] = 5, + [67855] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1178), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2088), 1, sym_text_interpolation, ACTIONS(1176), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68100] = 5, + [67872] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1182), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2089), 1, sym_text_interpolation, ACTIONS(1180), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68117] = 5, + [67889] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4187), 1, anon_sym_EQ, @@ -130893,22 +130822,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4185), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68134] = 5, + [67906] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1186), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2091), 1, sym_text_interpolation, ACTIONS(1184), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68151] = 5, + [67923] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4191), 1, anon_sym_EQ, @@ -130917,10 +130846,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4189), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68168] = 6, + [67940] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4193), 1, anon_sym_COMMA, @@ -130930,82 +130859,82 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2102), 1, aux_sym_arguments_repeat1, - [68187] = 5, + [67959] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1190), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2094), 1, sym_text_interpolation, ACTIONS(1188), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68204] = 5, + [67976] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1194), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2095), 1, sym_text_interpolation, ACTIONS(1192), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68221] = 5, + [67993] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1226), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2096), 1, sym_text_interpolation, ACTIONS(1224), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68238] = 5, + [68010] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1274), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2097), 1, sym_text_interpolation, ACTIONS(1272), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68255] = 5, + [68027] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1282), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2098), 1, sym_text_interpolation, ACTIONS(1280), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68272] = 5, + [68044] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1294), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2099), 1, sym_text_interpolation, ACTIONS(1292), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68289] = 5, + [68061] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4199), 1, anon_sym_EQ, @@ -131014,24 +130943,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4197), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68306] = 5, + [68078] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1318), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2101), 1, sym_text_interpolation, ACTIONS(1316), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68323] = 6, + [68095] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(807), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4201), 1, anon_sym_COMMA, @@ -131039,10 +130968,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2102), 1, sym_text_interpolation, - [68342] = 4, + [68114] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2103), 1, sym_text_interpolation, @@ -131050,60 +130979,60 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [68357] = 5, + [68129] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1402), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2104), 1, sym_text_interpolation, ACTIONS(1400), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68374] = 5, + [68146] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1430), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2105), 1, sym_text_interpolation, ACTIONS(1428), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68391] = 5, + [68163] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1434), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2106), 1, sym_text_interpolation, ACTIONS(1432), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68408] = 5, + [68180] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1454), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2107), 1, sym_text_interpolation, ACTIONS(1452), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68425] = 6, + [68197] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(781), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4203), 1, anon_sym_COMMA, @@ -131111,46 +131040,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2108), 1, sym_text_interpolation, - [68444] = 5, + [68216] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1462), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2109), 1, sym_text_interpolation, ACTIONS(1460), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68461] = 5, + [68233] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1330), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2110), 1, sym_text_interpolation, ACTIONS(1328), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68478] = 5, + [68250] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1302), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2111), 1, sym_text_interpolation, ACTIONS(1300), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68495] = 4, + [68267] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2112), 1, sym_text_interpolation, @@ -131158,46 +131087,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [68510] = 5, + [68282] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1298), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2113), 1, sym_text_interpolation, ACTIONS(1296), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68527] = 5, + [68299] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1262), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2114), 1, sym_text_interpolation, ACTIONS(1260), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68544] = 5, + [68316] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1366), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2115), 1, sym_text_interpolation, ACTIONS(1364), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68561] = 6, + [68333] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3632), 1, anon_sym_RPAREN, @@ -131207,22 +131136,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2145), 1, aux_sym_anonymous_function_use_clause_repeat1, - [68580] = 5, + [68352] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1422), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2117), 1, sym_text_interpolation, ACTIONS(1420), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68597] = 6, + [68369] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4209), 1, anon_sym_COMMA, @@ -131232,22 +131161,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2118), 1, sym_text_interpolation, - [68616] = 5, + [68388] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1338), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2119), 1, sym_text_interpolation, ACTIONS(1336), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68633] = 4, + [68405] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2120), 1, sym_text_interpolation, @@ -131255,48 +131184,48 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, sym_name, - [68648] = 6, + [68420] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1683), 1, + ACTIONS(1681), 1, anon_sym_DOLLAR, + ACTIONS(1683), 1, + sym_comment, STATE(1698), 1, sym_variable_name, STATE(1856), 1, sym_property_element, STATE(2121), 1, sym_text_interpolation, - [68667] = 5, + [68439] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1278), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2122), 1, sym_text_interpolation, ACTIONS(1276), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68684] = 6, + [68456] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1683), 1, + ACTIONS(1681), 1, anon_sym_DOLLAR, + ACTIONS(1683), 1, + sym_comment, STATE(1698), 1, sym_variable_name, STATE(2123), 1, sym_text_interpolation, STATE(2144), 1, sym_property_element, - [68703] = 4, + [68475] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2124), 1, sym_text_interpolation, @@ -131304,10 +131233,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [68718] = 4, + [68490] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2125), 1, sym_text_interpolation, @@ -131315,10 +131244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [68733] = 5, + [68505] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4217), 1, anon_sym_EQ, @@ -131327,12 +131256,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4215), 2, sym__automatic_semicolon, anon_sym_SEMI, - [68750] = 6, + [68522] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(809), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4219), 1, anon_sym_COMMA, @@ -131340,10 +131269,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2127), 1, sym_text_interpolation, - [68769] = 5, + [68541] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4221), 1, sym_name, @@ -131352,10 +131281,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4223), 2, sym__automatic_semicolon, anon_sym_SEMI, - [68786] = 5, + [68558] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4227), 1, aux_sym_else_clause_token1, @@ -131364,10 +131293,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4225), 2, aux_sym_if_statement_token2, aux_sym_else_if_clause_token1, - [68803] = 6, + [68575] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4229), 1, anon_sym_COMMA, @@ -131377,10 +131306,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2130), 1, sym_text_interpolation, - [68822] = 5, + [68594] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2471), 1, anon_sym_EQ_GT, @@ -131389,10 +131318,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(2131), 2, sym_text_interpolation, aux_sym_match_condition_list_repeat1, - [68839] = 4, + [68611] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2132), 1, sym_text_interpolation, @@ -131400,12 +131329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [68854] = 6, + [68626] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4238), 1, anon_sym_RPAREN, @@ -131413,10 +131342,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__list_destructing_repeat1, STATE(2133), 1, sym_text_interpolation, - [68873] = 6, + [68645] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4240), 1, anon_sym_COMMA, @@ -131426,12 +131355,12 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2140), 1, aux_sym_arguments_repeat1, - [68892] = 6, + [68664] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(785), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4244), 1, anon_sym_COMMA, @@ -131439,10 +131368,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2135), 1, sym_text_interpolation, - [68911] = 4, + [68683] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2136), 1, sym_text_interpolation, @@ -131450,12 +131379,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [68926] = 6, + [68698] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4248), 1, anon_sym_RPAREN, @@ -131463,7 +131392,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__list_destructing_repeat1, STATE(2137), 1, sym_text_interpolation, - [68945] = 4, + [68717] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -131474,10 +131403,10 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, sym_nowdoc_string, sym__new_line, - [68960] = 4, + [68732] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2139), 1, sym_text_interpolation, @@ -131485,12 +131414,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [68975] = 6, + [68747] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(765), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4254), 1, anon_sym_COMMA, @@ -131498,10 +131427,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2140), 1, sym_text_interpolation, - [68994] = 5, + [68766] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4256), 1, anon_sym_COMMA, @@ -131510,10 +131439,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(2141), 2, sym_text_interpolation, aux_sym_match_block_repeat1, - [69011] = 6, + [68783] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4261), 1, anon_sym_COMMA, @@ -131523,10 +131452,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2142), 1, sym_text_interpolation, - [69030] = 4, + [68802] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2143), 1, sym_text_interpolation, @@ -131534,10 +131463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - [69045] = 4, + [68817] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2144), 1, sym_text_interpolation, @@ -131545,10 +131474,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [69060] = 5, + [68832] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4265), 1, anon_sym_COMMA, @@ -131557,10 +131486,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(2145), 2, sym_text_interpolation, aux_sym_anonymous_function_use_clause_repeat1, - [69077] = 5, + [68849] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4272), 1, anon_sym_EQ, @@ -131569,10 +131498,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4270), 2, anon_sym_COMMA, anon_sym_RPAREN, - [69094] = 6, + [68866] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4274), 1, anon_sym_COMMA, @@ -131582,10 +131511,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2147), 1, sym_text_interpolation, - [69113] = 5, + [68885] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4278), 1, anon_sym_COMMA, @@ -131594,10 +131523,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(2148), 2, sym_text_interpolation, aux_sym_namespace_use_group_repeat1, - [69130] = 5, + [68902] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -131605,41 +131534,41 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2149), 1, sym_text_interpolation, - [69146] = 5, + [68918] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(507), 1, sym_compound_statement, STATE(2150), 1, sym_text_interpolation, - [69162] = 4, + [68934] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2151), 1, sym_text_interpolation, ACTIONS(4283), 2, sym__automatic_semicolon, anon_sym_SEMI, - [69176] = 4, + [68948] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2152), 1, sym_text_interpolation, ACTIONS(4285), 2, sym__automatic_semicolon, anon_sym_SEMI, - [69190] = 5, + [68962] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1893), 1, anon_sym_LPAREN, @@ -131647,92 +131576,92 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2153), 1, sym_text_interpolation, - [69206] = 4, + [68978] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2154), 1, sym_text_interpolation, ACTIONS(4287), 2, sym__automatic_semicolon, anon_sym_SEMI, - [69220] = 5, + [68992] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(505), 1, ts_builtin_sym_end, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4289), 1, sym_php_tag, STATE(2155), 1, sym_text_interpolation, - [69236] = 4, + [69008] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2156), 1, sym_text_interpolation, ACTIONS(4268), 2, anon_sym_COMMA, anon_sym_RPAREN, - [69250] = 4, + [69022] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2157), 1, sym_text_interpolation, ACTIONS(4291), 2, anon_sym_LBRACE, anon_sym_COLON, - [69264] = 4, + [69036] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2158), 1, sym_text_interpolation, ACTIONS(4293), 2, anon_sym_COMMA, anon_sym_RPAREN, - [69278] = 4, + [69050] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2159), 1, sym_text_interpolation, ACTIONS(4295), 2, sym__eof, sym_php_tag, - [69292] = 5, + [69064] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(956), 1, sym_compound_statement, STATE(2160), 1, sym_text_interpolation, - [69308] = 4, + [69080] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2161), 1, sym_text_interpolation, ACTIONS(537), 2, sym__automatic_semicolon, anon_sym_SEMI, - [69322] = 5, + [69094] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4297), 1, anon_sym_LBRACE, @@ -131740,40 +131669,40 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2162), 1, sym_text_interpolation, - [69338] = 4, + [69110] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2163), 1, sym_text_interpolation, ACTIONS(4299), 2, sym__automatic_semicolon, anon_sym_SEMI, - [69352] = 4, + [69124] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2164), 1, sym_text_interpolation, ACTIONS(4281), 2, anon_sym_COMMA, anon_sym_RBRACE, - [69366] = 4, + [69138] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2165), 1, sym_text_interpolation, ACTIONS(4301), 2, anon_sym_COMMA, anon_sym_RBRACE, - [69380] = 5, + [69152] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2641), 1, anon_sym_RPAREN, @@ -131781,10 +131710,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2166), 1, sym_text_interpolation, - [69396] = 5, + [69168] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4305), 1, sym_name, @@ -131792,10 +131721,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2589), 1, sym_namespace_name, - [69412] = 5, + [69184] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3329), 1, anon_sym_LBRACE, @@ -131803,10 +131732,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2168), 1, sym_text_interpolation, - [69428] = 5, + [69200] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3329), 1, anon_sym_LBRACE, @@ -131814,21 +131743,21 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2169), 1, sym_text_interpolation, - [69444] = 5, + [69216] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1656), 1, + ACTIONS(1654), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(671), 1, sym_arguments, STATE(2170), 1, sym_text_interpolation, - [69460] = 5, + [69232] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3429), 1, anon_sym_LBRACE, @@ -131836,10 +131765,10 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2171), 1, sym_text_interpolation, - [69476] = 5, + [69248] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3327), 1, anon_sym_LBRACE, @@ -131847,10 +131776,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2172), 1, sym_text_interpolation, - [69492] = 5, + [69264] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3327), 1, anon_sym_LBRACE, @@ -131858,10 +131787,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2173), 1, sym_text_interpolation, - [69508] = 5, + [69280] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4305), 1, sym_name, @@ -131869,10 +131798,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2566), 1, sym_namespace_name, - [69524] = 5, + [69296] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3327), 1, anon_sym_LBRACE, @@ -131880,10 +131809,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2175), 1, sym_text_interpolation, - [69540] = 5, + [69312] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3329), 1, anon_sym_LBRACE, @@ -131891,31 +131820,31 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2176), 1, sym_text_interpolation, - [69556] = 4, + [69328] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2177), 1, sym_text_interpolation, ACTIONS(2463), 2, anon_sym_COMMA, anon_sym_RPAREN, - [69570] = 5, + [69342] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1737), 1, sym_compound_statement, STATE(2178), 1, sym_text_interpolation, - [69586] = 5, + [69358] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4305), 1, sym_name, @@ -131923,7 +131852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2560), 1, sym_namespace_name, - [69602] = 4, + [69374] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -131933,10 +131862,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3879), 2, sym_heredoc_end, sym__new_line, - [69616] = 5, + [69388] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4308), 1, anon_sym_LPAREN, @@ -131944,20 +131873,20 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2181), 1, sym_text_interpolation, - [69632] = 4, + [69404] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2182), 1, sym_text_interpolation, ACTIONS(2451), 2, anon_sym_SEMI, anon_sym_RPAREN, - [69646] = 5, + [69418] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4308), 1, anon_sym_LPAREN, @@ -131965,10 +131894,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2183), 1, sym_text_interpolation, - [69662] = 5, + [69434] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3327), 1, anon_sym_LBRACE, @@ -131976,10 +131905,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2184), 1, sym_text_interpolation, - [69678] = 5, + [69450] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3329), 1, anon_sym_LBRACE, @@ -131987,20 +131916,20 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2185), 1, sym_text_interpolation, - [69694] = 4, + [69466] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2186), 1, sym_text_interpolation, ACTIONS(4310), 2, anon_sym_LBRACE, anon_sym_COLON, - [69708] = 5, + [69480] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4312), 1, anon_sym_LPAREN, @@ -132008,10 +131937,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2238), 1, sym_parenthesized_expression, - [69724] = 5, + [69496] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4312), 1, anon_sym_LPAREN, @@ -132019,41 +131948,41 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2188), 1, sym_text_interpolation, - [69740] = 4, + [69512] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2189), 1, sym_text_interpolation, ACTIONS(3224), 2, anon_sym_COMMA, anon_sym_RPAREN, - [69754] = 5, + [69526] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, + ACTIONS(1663), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(743), 1, sym_arguments, STATE(2190), 1, sym_text_interpolation, - [69770] = 4, + [69542] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2191), 1, sym_text_interpolation, ACTIONS(4314), 2, anon_sym_COMMA, anon_sym_RPAREN, - [69784] = 5, + [69556] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -132061,7 +131990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2192), 1, sym_text_interpolation, - [69800] = 5, + [69572] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -132072,40 +132001,40 @@ static const uint16_t ts_small_parse_table[] = { sym_string_value, STATE(2193), 1, sym_text_interpolation, - [69816] = 4, + [69588] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2194), 1, sym_text_interpolation, ACTIONS(4320), 2, sym__automatic_semicolon, anon_sym_SEMI, - [69830] = 4, + [69602] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2195), 1, sym_text_interpolation, ACTIONS(4165), 2, anon_sym_COMMA, anon_sym_RPAREN, - [69844] = 4, + [69616] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2196), 1, sym_text_interpolation, ACTIONS(4259), 2, anon_sym_COMMA, anon_sym_RBRACE, - [69858] = 5, + [69630] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4322), 1, anon_sym_SEMI, @@ -132113,10 +132042,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, STATE(2197), 1, sym_text_interpolation, - [69874] = 5, + [69646] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3425), 1, anon_sym_LBRACE, @@ -132124,40 +132053,40 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2198), 1, sym_text_interpolation, - [69890] = 4, + [69662] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2199), 1, sym_text_interpolation, ACTIONS(529), 2, sym__automatic_semicolon, anon_sym_SEMI, - [69904] = 4, + [69676] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2200), 1, sym_text_interpolation, ACTIONS(4326), 2, sym__automatic_semicolon, anon_sym_SEMI, - [69918] = 4, + [69690] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2201), 1, sym_text_interpolation, ACTIONS(4223), 2, sym__automatic_semicolon, anon_sym_SEMI, - [69932] = 5, + [69704] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4328), 1, anon_sym_LPAREN, @@ -132165,21 +132094,21 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2202), 1, sym_text_interpolation, - [69948] = 5, + [69720] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(512), 1, sym_compound_statement, STATE(2203), 1, sym_text_interpolation, - [69964] = 5, + [69736] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4297), 1, anon_sym_LBRACE, @@ -132187,80 +132116,80 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2204), 1, sym_text_interpolation, - [69980] = 4, + [69752] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2205), 1, sym_text_interpolation, ACTIONS(4330), 2, sym__automatic_semicolon, anon_sym_SEMI, - [69994] = 4, + [69766] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2206), 1, sym_text_interpolation, ACTIONS(4332), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70008] = 4, + [69780] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2207), 1, sym_text_interpolation, ACTIONS(3875), 2, anon_sym_EQ, anon_sym_RPAREN, - [70022] = 4, + [69794] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2208), 1, sym_text_interpolation, ACTIONS(4334), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70036] = 4, + [69808] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2209), 1, sym_text_interpolation, ACTIONS(4336), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70050] = 4, + [69822] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2210), 1, sym_text_interpolation, ACTIONS(4338), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70064] = 4, + [69836] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2211), 1, sym_text_interpolation, ACTIONS(4340), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70078] = 5, + [69850] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4342), 1, sym_name, @@ -132268,10 +132197,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2525), 1, sym_namespace_name, - [70094] = 5, + [69866] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -132279,51 +132208,51 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2213), 1, sym_text_interpolation, - [70110] = 5, + [69882] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1662), 1, + ACTIONS(1660), 1, anon_sym_BSLASH, + ACTIONS(1683), 1, + sym_comment, STATE(2214), 1, sym_text_interpolation, STATE(2250), 1, aux_sym_namespace_name_repeat1, - [70126] = 4, + [69898] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2215), 1, sym_text_interpolation, ACTIONS(2441), 2, anon_sym_SEMI, anon_sym_RPAREN, - [70140] = 4, + [69912] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2216), 1, sym_text_interpolation, ACTIONS(4345), 2, anon_sym_LBRACE, anon_sym_COLON, - [70154] = 4, + [69926] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2217), 1, sym_text_interpolation, ACTIONS(4347), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70168] = 5, + [69940] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1891), 1, anon_sym_LPAREN, @@ -132331,10 +132260,10 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2218), 1, sym_text_interpolation, - [70184] = 5, + [69956] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -132342,20 +132271,20 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2219), 1, sym_text_interpolation, - [70200] = 4, + [69972] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2220), 1, sym_text_interpolation, ACTIONS(4349), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70214] = 5, + [69986] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4305), 1, sym_name, @@ -132363,10 +132292,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2520), 1, sym_namespace_name, - [70230] = 5, + [70002] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3184), 1, anon_sym_LPAREN, @@ -132374,10 +132303,10 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2222), 1, sym_text_interpolation, - [70246] = 5, + [70018] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3720), 1, anon_sym_LBRACE, @@ -132385,10 +132314,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2223), 1, sym_text_interpolation, - [70262] = 5, + [70034] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -132396,30 +132325,30 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2224), 1, sym_text_interpolation, - [70278] = 4, + [70050] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2225), 1, sym_text_interpolation, ACTIONS(4351), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70292] = 4, + [70064] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2226), 1, sym_text_interpolation, ACTIONS(4353), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70306] = 5, + [70078] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3184), 1, anon_sym_LPAREN, @@ -132427,10 +132356,10 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2227), 1, sym_text_interpolation, - [70322] = 5, + [70094] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4355), 1, anon_sym_LPAREN, @@ -132438,60 +132367,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2228), 1, sym_text_interpolation, - [70338] = 4, + [70110] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2229), 1, sym_text_interpolation, ACTIONS(4011), 2, anon_sym_COMMA, anon_sym_RBRACE, - [70352] = 4, + [70124] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2230), 1, sym_text_interpolation, ACTIONS(4359), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70366] = 4, + [70138] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2231), 1, sym_text_interpolation, ACTIONS(3817), 2, anon_sym_COMMA, anon_sym_RBRACE, - [70380] = 4, + [70152] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2232), 1, sym_text_interpolation, ACTIONS(4361), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70394] = 4, + [70166] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2233), 1, sym_text_interpolation, ACTIONS(4363), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70408] = 5, + [70180] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3327), 1, anon_sym_LBRACE, @@ -132499,10 +132428,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2234), 1, sym_text_interpolation, - [70424] = 5, + [70196] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2515), 1, anon_sym_RPAREN, @@ -132510,30 +132439,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2235), 1, sym_text_interpolation, - [70440] = 4, + [70212] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2236), 1, sym_text_interpolation, ACTIONS(2441), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70454] = 4, + [70226] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2237), 1, sym_text_interpolation, ACTIONS(4365), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70468] = 5, + [70240] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4367), 1, anon_sym_LBRACE, @@ -132541,31 +132470,31 @@ static const uint16_t ts_small_parse_table[] = { sym_match_block, STATE(2238), 1, sym_text_interpolation, - [70484] = 5, + [70256] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1660), 1, sym_compound_statement, STATE(2239), 1, sym_text_interpolation, - [70500] = 4, + [70272] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2240), 1, sym_text_interpolation, ACTIONS(4369), 2, anon_sym_COMMA, anon_sym_RBRACK, - [70514] = 5, + [70286] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, @@ -132573,10 +132502,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2241), 1, sym_text_interpolation, - [70530] = 5, + [70302] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3329), 1, anon_sym_LBRACE, @@ -132584,21 +132513,21 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2242), 1, sym_text_interpolation, - [70546] = 5, + [70318] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1699), 1, sym_compound_statement, STATE(2243), 1, sym_text_interpolation, - [70562] = 5, + [70334] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2745), 1, aux_sym__arrow_function_header_token1, @@ -132606,10 +132535,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_use_declaration_token2, STATE(2244), 1, sym_text_interpolation, - [70578] = 5, + [70350] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4308), 1, anon_sym_LPAREN, @@ -132617,10 +132546,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2245), 1, sym_text_interpolation, - [70594] = 5, + [70366] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4312), 1, anon_sym_LPAREN, @@ -132628,10 +132557,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2262), 1, sym_parenthesized_expression, - [70610] = 5, + [70382] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4312), 1, anon_sym_LPAREN, @@ -132639,21 +132568,21 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2247), 1, sym_text_interpolation, - [70626] = 5, + [70398] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2048), 1, sym_compound_statement, STATE(2248), 1, sym_text_interpolation, - [70642] = 5, + [70414] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4308), 1, anon_sym_LPAREN, @@ -132661,10 +132590,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2249), 1, sym_text_interpolation, - [70658] = 5, + [70430] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4374), 1, anon_sym_BSLASH, @@ -132672,10 +132601,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_name_repeat1, STATE(2250), 1, sym_text_interpolation, - [70674] = 5, + [70446] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3329), 1, anon_sym_LBRACE, @@ -132683,10 +132612,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2251), 1, sym_text_interpolation, - [70690] = 5, + [70462] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3327), 1, anon_sym_LBRACE, @@ -132694,10 +132623,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2252), 1, sym_text_interpolation, - [70706] = 5, + [70478] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3327), 1, anon_sym_LBRACE, @@ -132705,10 +132634,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2253), 1, sym_text_interpolation, - [70722] = 5, + [70494] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3327), 1, anon_sym_LBRACE, @@ -132716,21 +132645,21 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2254), 1, sym_text_interpolation, - [70738] = 5, + [70510] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1630), 1, + ACTIONS(1628), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(616), 1, sym_arguments, STATE(2255), 1, sym_text_interpolation, - [70754] = 5, + [70526] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3184), 1, anon_sym_LPAREN, @@ -132738,10 +132667,10 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2256), 1, sym_text_interpolation, - [70770] = 5, + [70542] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3329), 1, anon_sym_LBRACE, @@ -132749,7 +132678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2257), 1, sym_text_interpolation, - [70786] = 5, + [70558] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -132760,10 +132689,10 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2258), 1, sym_text_interpolation, - [70802] = 5, + [70574] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3329), 1, anon_sym_LBRACE, @@ -132771,10 +132700,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2259), 1, sym_text_interpolation, - [70818] = 5, + [70590] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3184), 1, anon_sym_LPAREN, @@ -132782,20 +132711,20 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2260), 1, sym_text_interpolation, - [70834] = 4, + [70606] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2261), 1, sym_text_interpolation, ACTIONS(4381), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70848] = 5, + [70620] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4383), 1, anon_sym_LBRACE, @@ -132803,17 +132732,17 @@ static const uint16_t ts_small_parse_table[] = { sym_match_block, STATE(2262), 1, sym_text_interpolation, - [70864] = 4, + [70636] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2263), 1, sym_text_interpolation, ACTIONS(2493), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70878] = 5, + [70650] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -132824,10 +132753,10 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2264), 1, sym_text_interpolation, - [70894] = 5, + [70666] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2745), 1, aux_sym__arrow_function_header_token1, @@ -132835,10 +132764,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_use_declaration_token2, STATE(2265), 1, sym_text_interpolation, - [70910] = 5, + [70682] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4305), 1, sym_name, @@ -132846,7 +132775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2452), 1, sym_namespace_name, - [70926] = 5, + [70698] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -132857,10 +132786,10 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2267), 1, sym_text_interpolation, - [70942] = 5, + [70714] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3184), 1, anon_sym_LPAREN, @@ -132868,10 +132797,10 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2268), 1, sym_text_interpolation, - [70958] = 5, + [70730] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4308), 1, anon_sym_LPAREN, @@ -132879,10 +132808,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2269), 1, sym_text_interpolation, - [70974] = 5, + [70746] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4308), 1, anon_sym_LPAREN, @@ -132890,50 +132819,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2270), 1, sym_text_interpolation, - [70990] = 4, + [70762] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2271), 1, sym_text_interpolation, ACTIONS(4395), 2, anon_sym_string, anon_sym_int, - [71004] = 4, + [70776] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2272), 1, sym_text_interpolation, ACTIONS(4397), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71018] = 4, + [70790] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2273), 1, sym_text_interpolation, ACTIONS(3212), 2, anon_sym_COMMA, anon_sym_RBRACK, - [71032] = 4, + [70804] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2274), 1, sym_text_interpolation, ACTIONS(4072), 2, anon_sym_COMMA, anon_sym_RBRACK, - [71046] = 5, + [70818] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, @@ -132941,20 +132870,20 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2275), 1, sym_text_interpolation, - [71062] = 4, + [70834] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2276), 1, sym_text_interpolation, ACTIONS(4399), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71076] = 5, + [70848] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -132962,10 +132891,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2394), 1, sym_variable_name, - [71092] = 5, + [70864] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4401), 1, anon_sym_LPAREN, @@ -132973,50 +132902,50 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2389), 1, sym_parenthesized_expression, - [71108] = 4, + [70880] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2279), 1, sym_text_interpolation, ACTIONS(4403), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71122] = 4, + [70894] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2280), 1, sym_text_interpolation, ACTIONS(4405), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71136] = 4, + [70908] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2281), 1, sym_text_interpolation, ACTIONS(4407), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71150] = 4, + [70922] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2282), 1, sym_text_interpolation, ACTIONS(4409), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71164] = 5, + [70936] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, @@ -133024,10 +132953,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2283), 1, sym_text_interpolation, - [71180] = 5, + [70952] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4328), 1, anon_sym_LPAREN, @@ -133035,10 +132964,10 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2284), 1, sym_text_interpolation, - [71196] = 5, + [70968] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3184), 1, anon_sym_LPAREN, @@ -133046,10 +132975,10 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2285), 1, sym_text_interpolation, - [71212] = 5, + [70984] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -133057,10 +132986,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2286), 1, sym_text_interpolation, - [71228] = 5, + [71000] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -133068,20 +132997,20 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2287), 1, sym_text_interpolation, - [71244] = 4, + [71016] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2288), 1, sym_text_interpolation, ACTIONS(4411), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71258] = 5, + [71030] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3327), 1, anon_sym_LBRACE, @@ -133089,20 +133018,20 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2289), 1, sym_text_interpolation, - [71274] = 4, + [71046] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2290), 1, sym_text_interpolation, ACTIONS(437), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71288] = 5, + [71060] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -133110,31 +133039,31 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2291), 1, sym_text_interpolation, - [71304] = 5, + [71076] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(915), 1, sym_compound_statement, STATE(2292), 1, sym_text_interpolation, - [71320] = 4, + [71092] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2293), 1, sym_text_interpolation, ACTIONS(523), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71334] = 5, + [71106] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3720), 1, anon_sym_LBRACE, @@ -133142,10 +133071,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2294), 1, sym_text_interpolation, - [71350] = 5, + [71122] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3184), 1, anon_sym_LPAREN, @@ -133153,21 +133082,21 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2295), 1, sym_text_interpolation, - [71366] = 5, + [71138] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1666), 1, sym_compound_statement, STATE(2296), 1, sym_text_interpolation, - [71382] = 5, + [71154] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4413), 1, anon_sym_SEMI, @@ -133175,41 +133104,41 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, STATE(2297), 1, sym_text_interpolation, - [71398] = 4, + [71170] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2298), 1, sym_text_interpolation, ACTIONS(4417), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71412] = 4, + [71184] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2299), 1, sym_text_interpolation, ACTIONS(4419), 2, anon_sym_string, anon_sym_int, - [71426] = 5, + [71198] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(441), 1, anon_sym_COLON, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2129), 1, sym_colon_block, STATE(2300), 1, sym_text_interpolation, - [71442] = 5, + [71214] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3429), 1, anon_sym_LBRACE, @@ -133217,10 +133146,10 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2301), 1, sym_text_interpolation, - [71458] = 5, + [71230] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2509), 1, anon_sym_RPAREN, @@ -133228,10 +133157,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2302), 1, sym_text_interpolation, - [71474] = 5, + [71246] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3329), 1, anon_sym_LBRACE, @@ -133239,10 +133168,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2303), 1, sym_text_interpolation, - [71490] = 5, + [71262] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3184), 1, anon_sym_LPAREN, @@ -133250,10 +133179,10 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2304), 1, sym_text_interpolation, - [71506] = 5, + [71278] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3184), 1, anon_sym_LPAREN, @@ -133261,20 +133190,20 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2305), 1, sym_text_interpolation, - [71522] = 4, + [71294] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2306), 1, sym_text_interpolation, ACTIONS(4421), 2, anon_sym_string, anon_sym_int, - [71536] = 5, + [71308] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4297), 1, anon_sym_LBRACE, @@ -133282,20 +133211,20 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2307), 1, sym_text_interpolation, - [71552] = 4, + [71324] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2308), 1, sym_text_interpolation, ACTIONS(4423), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71566] = 5, + [71338] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4401), 1, anon_sym_LPAREN, @@ -133303,10 +133232,10 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2404), 1, sym_parenthesized_expression, - [71582] = 5, + [71354] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -133314,21 +133243,21 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2310), 1, sym_text_interpolation, - [71598] = 5, + [71370] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(933), 1, sym_compound_statement, STATE(2311), 1, sym_text_interpolation, - [71614] = 5, + [71386] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -133336,10 +133265,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2312), 1, sym_text_interpolation, - [71630] = 5, + [71402] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3425), 1, anon_sym_LBRACE, @@ -133347,51 +133276,51 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2313), 1, sym_text_interpolation, - [71646] = 4, + [71418] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2314), 1, sym_text_interpolation, ACTIONS(3993), 2, anon_sym_COMMA, anon_sym_RBRACK, - [71660] = 4, + [71432] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2315), 1, sym_text_interpolation, ACTIONS(4425), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71674] = 4, + [71446] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2316), 1, sym_text_interpolation, - ACTIONS(1651), 2, + ACTIONS(1649), 2, anon_sym_COMMA, anon_sym_RBRACK, - [71688] = 5, + [71460] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(916), 1, sym_compound_statement, STATE(2317), 1, sym_text_interpolation, - [71704] = 5, + [71476] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2545), 1, anon_sym_RPAREN, @@ -133399,21 +133328,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2318), 1, sym_text_interpolation, - [71720] = 5, + [71492] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2111), 1, sym_compound_statement, STATE(2319), 1, sym_text_interpolation, - [71736] = 5, + [71508] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3429), 1, anon_sym_LBRACE, @@ -133421,49 +133350,49 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2320), 1, sym_text_interpolation, - [71752] = 4, + [71524] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2321), 1, sym_text_interpolation, ACTIONS(3800), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71766] = 4, + [71538] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2322), 1, sym_text_interpolation, ACTIONS(4427), 2, anon_sym_COMMA, anon_sym_RBRACK, - [71780] = 5, + [71552] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(917), 1, sym_compound_statement, STATE(2323), 1, sym_text_interpolation, - [71796] = 5, + [71568] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(921), 1, sym_compound_statement, STATE(2324), 1, sym_text_interpolation, - [71812] = 5, + [71584] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -133474,10 +133403,10 @@ static const uint16_t ts_small_parse_table[] = { sym_string_value, STATE(2325), 1, sym_text_interpolation, - [71828] = 5, + [71600] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -133485,10 +133414,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2326), 1, sym_text_interpolation, - [71844] = 5, + [71616] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -133496,10 +133425,10 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2327), 1, sym_text_interpolation, - [71860] = 5, + [71632] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3327), 1, anon_sym_LBRACE, @@ -133507,7 +133436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2328), 1, sym_text_interpolation, - [71876] = 5, + [71648] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -133518,31 +133447,31 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2329), 1, sym_text_interpolation, - [71892] = 5, + [71664] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(970), 1, sym_compound_statement, STATE(2330), 1, sym_text_interpolation, - [71908] = 4, + [71680] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2331), 1, sym_text_interpolation, ACTIONS(2513), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71922] = 5, + [71694] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3184), 1, anon_sym_LPAREN, @@ -133550,10 +133479,10 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2332), 1, sym_text_interpolation, - [71938] = 5, + [71710] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4308), 1, anon_sym_LPAREN, @@ -133561,10 +133490,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2333), 1, sym_text_interpolation, - [71954] = 5, + [71726] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -133572,10 +133501,10 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2334), 1, sym_text_interpolation, - [71970] = 5, + [71742] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, @@ -133583,10 +133512,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2335), 1, sym_text_interpolation, - [71986] = 5, + [71758] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -133594,10 +133523,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2336), 1, sym_text_interpolation, - [72002] = 5, + [71774] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4437), 1, anon_sym_SEMI, @@ -133605,10 +133534,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, STATE(2337), 1, sym_text_interpolation, - [72018] = 5, + [71790] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -133616,31 +133545,31 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2338), 1, sym_text_interpolation, - [72034] = 4, + [71806] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2339), 1, sym_text_interpolation, ACTIONS(4441), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72048] = 5, + [71820] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(1711), 1, sym_compound_statement, STATE(2340), 1, sym_text_interpolation, - [72064] = 5, + [71836] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -133648,62 +133577,62 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2341), 1, sym_text_interpolation, - [72080] = 4, + [71852] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2342), 1, sym_text_interpolation, ACTIONS(4443), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72094] = 4, + [71866] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2343), 1, sym_text_interpolation, ACTIONS(4445), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72108] = 4, + [71880] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2344), 1, sym_text_interpolation, ACTIONS(4109), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72122] = 5, + [71894] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(941), 1, sym_compound_statement, STATE(2345), 1, sym_text_interpolation, - [72138] = 5, + [71910] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(926), 1, sym_compound_statement, STATE(2346), 1, sym_text_interpolation, - [72154] = 5, + [71926] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -133711,20 +133640,20 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2347), 1, sym_text_interpolation, - [72170] = 4, + [71942] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2348), 1, sym_text_interpolation, ACTIONS(4447), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72184] = 5, + [71956] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -133732,10 +133661,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2349), 1, sym_text_interpolation, - [72200] = 5, + [71972] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4449), 1, sym_name, @@ -133743,20 +133672,20 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(2350), 1, sym_text_interpolation, - [72216] = 4, + [71988] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2351), 1, sym_text_interpolation, ACTIONS(4451), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72230] = 5, + [72002] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -133764,10 +133693,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2352), 1, sym_text_interpolation, - [72246] = 5, + [72018] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3327), 1, anon_sym_LBRACE, @@ -133775,10 +133704,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2353), 1, sym_text_interpolation, - [72262] = 5, + [72034] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3327), 1, anon_sym_LBRACE, @@ -133786,21 +133715,21 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2354), 1, sym_text_interpolation, - [72278] = 5, + [72050] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(928), 1, sym_compound_statement, STATE(2355), 1, sym_text_interpolation, - [72294] = 5, + [72066] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3184), 1, anon_sym_LPAREN, @@ -133808,10 +133737,10 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2356), 1, sym_text_interpolation, - [72310] = 5, + [72082] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3184), 1, anon_sym_LPAREN, @@ -133819,32 +133748,32 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2357), 1, sym_text_interpolation, - [72326] = 5, + [72098] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(965), 1, sym_compound_statement, STATE(2358), 1, sym_text_interpolation, - [72342] = 5, + [72114] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(929), 1, sym_compound_statement, STATE(2359), 1, sym_text_interpolation, - [72358] = 5, + [72130] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3329), 1, anon_sym_LBRACE, @@ -133852,10 +133781,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2360), 1, sym_text_interpolation, - [72374] = 5, + [72146] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3429), 1, anon_sym_LBRACE, @@ -133863,20 +133792,20 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2361), 1, sym_text_interpolation, - [72390] = 4, + [72162] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2362), 1, sym_text_interpolation, ACTIONS(4453), 2, anon_sym_string, anon_sym_int, - [72404] = 5, + [72176] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3327), 1, anon_sym_LBRACE, @@ -133884,10 +133813,10 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2363), 1, sym_text_interpolation, - [72420] = 5, + [72192] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3184), 1, anon_sym_LPAREN, @@ -133895,10 +133824,10 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2364), 1, sym_text_interpolation, - [72436] = 5, + [72208] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3327), 1, anon_sym_LBRACE, @@ -133906,21 +133835,21 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2365), 1, sym_text_interpolation, - [72452] = 5, + [72224] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(931), 1, sym_compound_statement, STATE(2366), 1, sym_text_interpolation, - [72468] = 5, + [72240] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3329), 1, anon_sym_LBRACE, @@ -133928,31 +133857,31 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2367), 1, sym_text_interpolation, - [72484] = 5, + [72256] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1538), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, + ACTIONS(1683), 1, + sym_comment, STATE(592), 1, sym_arguments, STATE(2368), 1, sym_text_interpolation, - [72500] = 4, + [72272] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2369), 1, sym_text_interpolation, ACTIONS(2537), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72514] = 5, + [72286] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -133960,10 +133889,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2370), 1, sym_text_interpolation, - [72530] = 5, + [72302] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -133971,10 +133900,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2371), 1, sym_text_interpolation, - [72546] = 5, + [72318] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -133982,20 +133911,20 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2372), 1, sym_text_interpolation, - [72562] = 4, + [72334] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2373), 1, sym_text_interpolation, ACTIONS(4455), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72576] = 5, + [72348] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -134003,17 +133932,17 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2374), 1, sym_text_interpolation, - [72592] = 4, + [72364] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2375), 1, sym_text_interpolation, ACTIONS(4457), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72606] = 5, + [72378] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -134024,17 +133953,17 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2376), 1, sym_text_interpolation, - [72622] = 4, + [72394] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2377), 1, sym_text_interpolation, ACTIONS(4080), 2, anon_sym_COMMA, anon_sym_RBRACK, - [72636] = 5, + [72408] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -134045,10 +133974,10 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2378), 1, sym_text_interpolation, - [72652] = 5, + [72424] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, @@ -134056,20 +133985,20 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2379), 1, sym_text_interpolation, - [72668] = 4, + [72440] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2380), 1, sym_text_interpolation, ACTIONS(4467), 2, anon_sym_COMMA, anon_sym_RBRACK, - [72682] = 5, + [72454] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, @@ -134077,20 +134006,20 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2381), 1, sym_text_interpolation, - [72698] = 4, + [72470] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2382), 1, sym_text_interpolation, ACTIONS(4470), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72712] = 5, + [72484] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4472), 1, anon_sym_SEMI, @@ -134098,40 +134027,40 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, STATE(2383), 1, sym_text_interpolation, - [72728] = 4, + [72500] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2384), 1, sym_text_interpolation, ACTIONS(4476), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72742] = 4, + [72514] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2385), 1, sym_text_interpolation, ACTIONS(4478), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72756] = 4, + [72528] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2386), 1, sym_text_interpolation, - ACTIONS(1647), 2, + ACTIONS(1645), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72770] = 5, + [72542] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3425), 1, anon_sym_LBRACE, @@ -134139,10 +134068,10 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2387), 1, sym_text_interpolation, - [72786] = 5, + [72558] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -134150,40 +134079,40 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2388), 1, sym_text_interpolation, - [72802] = 4, + [72574] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2389), 1, sym_text_interpolation, ACTIONS(4480), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72816] = 4, + [72588] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2390), 1, sym_text_interpolation, ACTIONS(3369), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72830] = 4, + [72602] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2391), 1, sym_text_interpolation, ACTIONS(4482), 2, anon_sym_SEMI, anon_sym_COLON, - [72844] = 5, + [72616] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4308), 1, anon_sym_LPAREN, @@ -134191,30 +134120,30 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2392), 1, sym_text_interpolation, - [72860] = 4, + [72632] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2393), 1, sym_text_interpolation, ACTIONS(3691), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72874] = 4, + [72646] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2394), 1, sym_text_interpolation, ACTIONS(4484), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72888] = 5, + [72660] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -134222,52 +134151,52 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2395), 1, sym_text_interpolation, - [72904] = 4, + [72676] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2396), 1, sym_text_interpolation, ACTIONS(4486), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72918] = 5, + [72690] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(942), 1, sym_compound_statement, STATE(2397), 1, sym_text_interpolation, - [72934] = 4, + [72706] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2398), 1, sym_text_interpolation, ACTIONS(4488), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72948] = 5, + [72720] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(361), 1, anon_sym_COLON, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2399), 1, sym_text_interpolation, STATE(2500), 1, sym_colon_block, - [72964] = 5, + [72736] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4312), 1, anon_sym_LPAREN, @@ -134275,20 +134204,20 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2400), 1, sym_text_interpolation, - [72980] = 4, + [72752] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2401), 1, sym_text_interpolation, ACTIONS(4490), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72994] = 5, + [72766] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4308), 1, anon_sym_LPAREN, @@ -134296,10 +134225,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2402), 1, sym_text_interpolation, - [73010] = 5, + [72782] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -134307,30 +134236,30 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2403), 1, sym_text_interpolation, - [73026] = 4, + [72798] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2404), 1, sym_text_interpolation, ACTIONS(4492), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73040] = 4, + [72812] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2405), 1, sym_text_interpolation, ACTIONS(4494), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73054] = 5, + [72826] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4308), 1, anon_sym_LPAREN, @@ -134338,20 +134267,20 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2406), 1, sym_text_interpolation, - [73070] = 4, + [72842] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2407), 1, sym_text_interpolation, ACTIONS(3407), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73084] = 5, + [72856] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -134359,10 +134288,10 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2408), 1, sym_text_interpolation, - [73100] = 5, + [72872] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, @@ -134370,10 +134299,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2409), 1, sym_text_interpolation, - [73116] = 5, + [72888] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3250), 1, anon_sym_LBRACE, @@ -134381,31 +134310,31 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2410), 1, sym_text_interpolation, - [73132] = 5, + [72904] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(944), 1, sym_compound_statement, STATE(2411), 1, sym_text_interpolation, - [73148] = 4, + [72920] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2412), 1, sym_text_interpolation, ACTIONS(4496), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73162] = 5, + [72934] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2485), 1, anon_sym_RPAREN, @@ -134413,20 +134342,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2413), 1, sym_text_interpolation, - [73178] = 4, + [72950] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2414), 1, sym_text_interpolation, ACTIONS(2451), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73192] = 5, + [72964] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -134434,10 +134363,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2415), 1, sym_text_interpolation, - [73208] = 5, + [72980] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3184), 1, anon_sym_LPAREN, @@ -134445,10 +134374,10 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2416), 1, sym_text_interpolation, - [73224] = 5, + [72996] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(1725), 1, anon_sym_DOLLAR, @@ -134456,10 +134385,10 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2417), 1, sym_text_interpolation, - [73240] = 5, + [73012] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3256), 1, anon_sym_LBRACE, @@ -134467,10 +134396,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2418), 1, sym_text_interpolation, - [73256] = 5, + [73028] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3329), 1, anon_sym_LBRACE, @@ -134478,10 +134407,10 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2419), 1, sym_text_interpolation, - [73272] = 5, + [73044] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3425), 1, anon_sym_LBRACE, @@ -134489,10 +134418,10 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2420), 1, sym_text_interpolation, - [73288] = 5, + [73060] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3327), 1, anon_sym_LBRACE, @@ -134500,21 +134429,21 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2421), 1, sym_text_interpolation, - [73304] = 5, + [73076] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(947), 1, sym_compound_statement, STATE(2422), 1, sym_text_interpolation, - [73320] = 5, + [73092] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3327), 1, anon_sym_LBRACE, @@ -134522,2063 +134451,2063 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2423), 1, sym_text_interpolation, - [73336] = 4, + [73108] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2424), 1, sym_text_interpolation, ACTIONS(4177), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [73350] = 4, + [73122] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4498), 1, anon_sym_COLON_COLON, STATE(2425), 1, sym_text_interpolation, - [73363] = 4, + [73135] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4500), 1, sym_name, STATE(2426), 1, sym_text_interpolation, - [73376] = 4, + [73148] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4502), 1, anon_sym_RPAREN, STATE(2427), 1, sym_text_interpolation, - [73389] = 4, + [73161] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4504), 1, anon_sym_EQ_GT, STATE(2428), 1, sym_text_interpolation, - [73402] = 4, + [73174] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4179), 1, anon_sym_LBRACE, STATE(2429), 1, sym_text_interpolation, - [73415] = 4, + [73187] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4506), 1, sym_heredoc_end, STATE(2430), 1, sym_text_interpolation, - [73428] = 4, + [73200] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(875), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2431), 1, sym_text_interpolation, - [73441] = 4, + [73213] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4508), 1, anon_sym_RBRACK, STATE(2432), 1, sym_text_interpolation, - [73454] = 4, + [73226] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2485), 1, anon_sym_RPAREN, STATE(2433), 1, sym_text_interpolation, - [73467] = 4, + [73239] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2327), 1, anon_sym_STAR_STAR, STATE(2434), 1, sym_text_interpolation, - [73480] = 4, + [73252] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4510), 1, anon_sym_EQ, STATE(2435), 1, sym_text_interpolation, - [73493] = 4, + [73265] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(881), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2436), 1, sym_text_interpolation, - [73506] = 4, + [73278] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4512), 1, anon_sym_RPAREN, STATE(2437), 1, sym_text_interpolation, - [73519] = 4, + [73291] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4514), 1, anon_sym_RPAREN, STATE(2438), 1, sym_text_interpolation, - [73532] = 4, + [73304] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4516), 1, anon_sym_COLON_COLON, STATE(2439), 1, sym_text_interpolation, - [73545] = 4, + [73317] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4518), 1, anon_sym_EQ, STATE(2440), 1, sym_text_interpolation, - [73558] = 4, + [73330] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4520), 1, anon_sym_EQ_GT, STATE(2441), 1, sym_text_interpolation, - [73571] = 4, + [73343] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4025), 1, anon_sym_RBRACE, STATE(2442), 1, sym_text_interpolation, - [73584] = 4, + [73356] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(841), 1, anon_sym_SEMI, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2443), 1, sym_text_interpolation, - [73597] = 4, + [73369] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2225), 1, anon_sym_STAR_STAR, STATE(2444), 1, sym_text_interpolation, - [73610] = 4, + [73382] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4057), 1, anon_sym_RBRACE, STATE(2445), 1, sym_text_interpolation, - [73623] = 4, + [73395] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4522), 1, anon_sym_EQ_GT, STATE(2446), 1, sym_text_interpolation, - [73636] = 4, + [73408] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4524), 1, anon_sym_EQ_GT, STATE(2447), 1, sym_text_interpolation, - [73649] = 4, + [73421] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4526), 1, anon_sym_EQ, STATE(2448), 1, sym_text_interpolation, - [73662] = 4, + [73434] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4528), 1, aux_sym_if_statement_token2, STATE(2449), 1, sym_text_interpolation, - [73675] = 4, + [73447] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4530), 1, anon_sym_RBRACK, STATE(2450), 1, sym_text_interpolation, - [73688] = 4, + [73460] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4532), 1, sym_integer, STATE(2451), 1, sym_text_interpolation, - [73701] = 4, + [73473] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4534), 1, anon_sym_BSLASH, STATE(2452), 1, sym_text_interpolation, - [73714] = 4, + [73486] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4536), 1, sym_name, STATE(2453), 1, sym_text_interpolation, - [73727] = 4, + [73499] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4538), 1, anon_sym_RBRACK, STATE(2454), 1, sym_text_interpolation, - [73740] = 4, + [73512] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4540), 1, sym_heredoc_end, STATE(2455), 1, sym_text_interpolation, - [73753] = 4, + [73525] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4542), 1, anon_sym_EQ_GT, STATE(2456), 1, sym_text_interpolation, - [73766] = 4, + [73538] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4544), 1, aux_sym_class_declaration_token1, STATE(2457), 1, sym_text_interpolation, - [73779] = 4, + [73551] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4546), 1, sym_name, STATE(2458), 1, sym_text_interpolation, - [73792] = 4, + [73564] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4548), 1, anon_sym_EQ_GT, STATE(2459), 1, sym_text_interpolation, - [73805] = 4, + [73577] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4550), 1, sym_name, STATE(2460), 1, sym_text_interpolation, - [73818] = 4, + [73590] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4552), 1, anon_sym_EQ, STATE(2461), 1, sym_text_interpolation, - [73831] = 4, + [73603] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4554), 1, sym_heredoc_end, STATE(2462), 1, sym_text_interpolation, - [73844] = 4, + [73616] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4556), 1, aux_sym_foreach_statement_token2, STATE(2463), 1, sym_text_interpolation, - [73857] = 4, + [73629] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4558), 1, sym_name, STATE(2464), 1, sym_text_interpolation, - [73870] = 4, + [73642] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4560), 1, anon_sym_RPAREN, STATE(2465), 1, sym_text_interpolation, - [73883] = 4, + [73655] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4562), 1, sym_heredoc_end, STATE(2466), 1, sym_text_interpolation, - [73896] = 4, + [73668] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3999), 1, anon_sym_RPAREN, STATE(2467), 1, sym_text_interpolation, - [73909] = 4, + [73681] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4564), 1, anon_sym_DQUOTE2, STATE(2468), 1, sym_text_interpolation, - [73922] = 4, + [73694] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4566), 1, anon_sym_SQUOTE2, STATE(2469), 1, sym_text_interpolation, - [73935] = 4, + [73707] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4158), 1, anon_sym_LBRACE, STATE(2470), 1, sym_text_interpolation, - [73948] = 4, + [73720] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4568), 1, sym_name, STATE(2471), 1, sym_text_interpolation, - [73961] = 4, + [73733] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(873), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2472), 1, sym_text_interpolation, - [73974] = 4, + [73746] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4570), 1, anon_sym_RPAREN, STATE(2473), 1, sym_text_interpolation, - [73987] = 4, + [73759] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4572), 1, sym_name, STATE(2474), 1, sym_text_interpolation, - [74000] = 4, + [73772] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4574), 1, sym_name, STATE(2475), 1, sym_text_interpolation, - [74013] = 4, + [73785] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4576), 1, aux_sym_if_statement_token2, STATE(2476), 1, sym_text_interpolation, - [74026] = 4, + [73798] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2545), 1, anon_sym_RPAREN, STATE(2477), 1, sym_text_interpolation, - [74039] = 4, + [73811] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(865), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2478), 1, sym_text_interpolation, - [74052] = 4, + [73824] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4578), 1, anon_sym_RPAREN, STATE(2479), 1, sym_text_interpolation, - [74065] = 4, + [73837] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4580), 1, anon_sym_EQ_GT, STATE(2480), 1, sym_text_interpolation, - [74078] = 4, + [73850] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4303), 1, anon_sym_EQ, STATE(2481), 1, sym_text_interpolation, - [74091] = 4, + [73863] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4009), 1, sym_name, STATE(2482), 1, sym_text_interpolation, - [74104] = 4, + [73876] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3924), 1, anon_sym_RBRACK, STATE(2483), 1, sym_text_interpolation, - [74117] = 4, + [73889] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4582), 1, anon_sym_RPAREN, STATE(2484), 1, sym_text_interpolation, - [74130] = 4, + [73902] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4584), 1, anon_sym_SEMI, STATE(2485), 1, sym_text_interpolation, - [74143] = 4, + [73915] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(859), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2486), 1, sym_text_interpolation, - [74156] = 4, + [73928] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4586), 1, aux_sym_while_statement_token2, STATE(2487), 1, sym_text_interpolation, - [74169] = 4, + [73941] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4588), 1, sym_name, STATE(2488), 1, sym_text_interpolation, - [74182] = 4, + [73954] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4590), 1, anon_sym_LPAREN, STATE(2489), 1, sym_text_interpolation, - [74195] = 4, + [73967] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4592), 1, anon_sym_RPAREN, STATE(2490), 1, sym_text_interpolation, - [74208] = 4, + [73980] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4594), 1, anon_sym_EQ, STATE(2491), 1, sym_text_interpolation, - [74221] = 4, + [73993] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4596), 1, anon_sym_COLON_COLON, STATE(2492), 1, sym_text_interpolation, - [74234] = 4, + [74006] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3982), 1, anon_sym_RPAREN, STATE(2493), 1, sym_text_interpolation, - [74247] = 4, + [74019] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4598), 1, anon_sym_SEMI, STATE(2494), 1, sym_text_interpolation, - [74260] = 4, + [74032] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4600), 1, anon_sym_EQ_GT, STATE(2495), 1, sym_text_interpolation, - [74273] = 4, + [74045] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2333), 1, anon_sym_STAR_STAR, STATE(2496), 1, sym_text_interpolation, - [74286] = 4, + [74058] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3439), 1, sym_name, STATE(2497), 1, sym_text_interpolation, - [74299] = 4, + [74071] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2509), 1, anon_sym_RPAREN, STATE(2498), 1, sym_text_interpolation, - [74312] = 4, + [74084] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4602), 1, aux_sym_if_statement_token2, STATE(2499), 1, sym_text_interpolation, - [74325] = 4, + [74097] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4604), 1, aux_sym_if_statement_token2, STATE(2500), 1, sym_text_interpolation, - [74338] = 4, + [74110] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4606), 1, aux_sym_if_statement_token2, STATE(2501), 1, sym_text_interpolation, - [74351] = 4, + [74123] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4608), 1, anon_sym_EQ_GT, STATE(2502), 1, sym_text_interpolation, - [74364] = 4, + [74136] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4610), 1, anon_sym_EQ, STATE(2503), 1, sym_text_interpolation, - [74377] = 4, + [74149] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4612), 1, anon_sym_COLON_COLON, STATE(2504), 1, sym_text_interpolation, - [74390] = 4, + [74162] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4614), 1, anon_sym_RPAREN, STATE(2505), 1, sym_text_interpolation, - [74403] = 4, + [74175] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4616), 1, sym_name, STATE(2506), 1, sym_text_interpolation, - [74416] = 4, + [74188] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4618), 1, anon_sym_EQ, STATE(2507), 1, sym_text_interpolation, - [74429] = 4, + [74201] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4620), 1, anon_sym_LPAREN, STATE(2508), 1, sym_text_interpolation, - [74442] = 4, + [74214] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4622), 1, sym_name, STATE(2509), 1, sym_text_interpolation, - [74455] = 4, + [74227] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4624), 1, anon_sym_DQUOTE2, STATE(2510), 1, sym_text_interpolation, - [74468] = 4, + [74240] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4626), 1, anon_sym_SQUOTE2, STATE(2511), 1, sym_text_interpolation, - [74481] = 4, + [74253] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4628), 1, anon_sym_RPAREN, STATE(2512), 1, sym_text_interpolation, - [74494] = 4, + [74266] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4630), 1, anon_sym_RPAREN, STATE(2513), 1, sym_text_interpolation, - [74507] = 4, + [74279] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4632), 1, anon_sym_RPAREN, STATE(2514), 1, sym_text_interpolation, - [74520] = 4, + [74292] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4634), 1, aux_sym_while_statement_token2, STATE(2515), 1, sym_text_interpolation, - [74533] = 4, + [74305] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3972), 1, anon_sym_RPAREN, STATE(2516), 1, sym_text_interpolation, - [74546] = 4, + [74318] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4636), 1, anon_sym_RPAREN, STATE(2517), 1, sym_text_interpolation, - [74559] = 4, + [74331] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4638), 1, anon_sym_RBRACK, STATE(2518), 1, sym_text_interpolation, - [74572] = 4, + [74344] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4640), 1, sym_name, STATE(2519), 1, sym_text_interpolation, - [74585] = 4, + [74357] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4642), 1, anon_sym_BSLASH, STATE(2520), 1, sym_text_interpolation, - [74598] = 4, + [74370] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4644), 1, anon_sym_RPAREN, STATE(2521), 1, sym_text_interpolation, - [74611] = 4, + [74383] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4646), 1, anon_sym_BSLASH, STATE(2522), 1, sym_text_interpolation, - [74624] = 4, + [74396] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4648), 1, sym_name, STATE(2523), 1, sym_text_interpolation, - [74637] = 4, + [74409] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4650), 1, sym_name, STATE(2524), 1, sym_text_interpolation, - [74650] = 4, + [74422] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4652), 1, anon_sym_BSLASH, STATE(2525), 1, sym_text_interpolation, - [74663] = 4, + [74435] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4654), 1, sym_name, STATE(2526), 1, sym_text_interpolation, - [74676] = 4, + [74448] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3960), 1, anon_sym_RPAREN, STATE(2527), 1, sym_text_interpolation, - [74689] = 4, + [74461] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2201), 1, anon_sym_STAR_STAR, STATE(2528), 1, sym_text_interpolation, - [74702] = 4, + [74474] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4656), 1, anon_sym_COLON_COLON, STATE(2529), 1, sym_text_interpolation, - [74715] = 4, + [74487] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4658), 1, aux_sym__arrow_function_header_token1, STATE(2530), 1, sym_text_interpolation, - [74728] = 4, + [74500] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3952), 1, aux_sym_class_declaration_token1, STATE(2531), 1, sym_text_interpolation, - [74741] = 4, + [74513] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4660), 1, aux_sym_class_declaration_token1, STATE(2532), 1, sym_text_interpolation, - [74754] = 4, + [74526] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4662), 1, sym_name, STATE(2533), 1, sym_text_interpolation, - [74767] = 4, + [74539] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4664), 1, sym_name, STATE(2534), 1, sym_text_interpolation, - [74780] = 4, + [74552] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4666), 1, anon_sym_EQ_GT, STATE(2535), 1, sym_text_interpolation, - [74793] = 4, + [74565] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4668), 1, aux_sym_class_declaration_token1, STATE(2536), 1, sym_text_interpolation, - [74806] = 4, + [74578] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4670), 1, sym_name, STATE(2537), 1, sym_text_interpolation, - [74819] = 4, + [74591] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3964), 1, sym_name, STATE(2538), 1, sym_text_interpolation, - [74832] = 4, + [74604] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4672), 1, sym_name, STATE(2539), 1, sym_text_interpolation, - [74845] = 4, + [74617] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4674), 1, anon_sym_RPAREN, STATE(2540), 1, sym_text_interpolation, - [74858] = 4, + [74630] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4676), 1, anon_sym_SEMI, STATE(2541), 1, sym_text_interpolation, - [74871] = 4, + [74643] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4678), 1, sym_heredoc_start, STATE(2542), 1, sym_text_interpolation, - [74884] = 4, + [74656] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4680), 1, sym_name, STATE(2543), 1, sym_text_interpolation, - [74897] = 4, + [74669] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4682), 1, sym_name, STATE(2544), 1, sym_text_interpolation, - [74910] = 4, + [74682] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4684), 1, anon_sym_SQUOTE, STATE(2545), 1, sym_text_interpolation, - [74923] = 4, + [74695] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3932), 1, aux_sym_class_declaration_token1, STATE(2546), 1, sym_text_interpolation, - [74936] = 4, + [74708] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4686), 1, aux_sym_namespace_use_declaration_token3, STATE(2547), 1, sym_text_interpolation, - [74949] = 4, + [74721] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4688), 1, anon_sym_BSLASH, STATE(2548), 1, sym_text_interpolation, - [74962] = 4, + [74734] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4690), 1, anon_sym_SQUOTE, STATE(2549), 1, sym_text_interpolation, - [74975] = 4, + [74747] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4692), 1, sym_name, STATE(2550), 1, sym_text_interpolation, - [74988] = 4, + [74760] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4694), 1, anon_sym_EQ_GT, STATE(2551), 1, sym_text_interpolation, - [75001] = 4, + [74773] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4696), 1, aux_sym_while_statement_token1, STATE(2552), 1, sym_text_interpolation, - [75014] = 4, + [74786] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4698), 1, sym_heredoc_start, STATE(2553), 1, sym_text_interpolation, - [75027] = 4, + [74799] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4700), 1, sym_heredoc_start, STATE(2554), 1, sym_text_interpolation, - [75040] = 4, + [74812] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4702), 1, aux_sym_class_declaration_token1, STATE(2555), 1, sym_text_interpolation, - [75053] = 4, + [74825] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4704), 1, sym_name, STATE(2556), 1, sym_text_interpolation, - [75066] = 4, + [74838] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4355), 1, anon_sym_LPAREN, STATE(2557), 1, sym_text_interpolation, - [75079] = 4, + [74851] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3926), 1, aux_sym_class_declaration_token1, STATE(2558), 1, sym_text_interpolation, - [75092] = 4, + [74864] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4706), 1, anon_sym_BSLASH, STATE(2559), 1, sym_text_interpolation, - [75105] = 4, + [74877] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4708), 1, anon_sym_BSLASH, STATE(2560), 1, sym_text_interpolation, - [75118] = 4, + [74890] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4710), 1, anon_sym_RPAREN, STATE(2561), 1, sym_text_interpolation, - [75131] = 4, + [74903] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4712), 1, sym_name, STATE(2562), 1, sym_text_interpolation, - [75144] = 4, + [74916] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4714), 1, anon_sym_COLON_COLON, STATE(2563), 1, sym_text_interpolation, - [75157] = 4, + [74929] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3950), 1, anon_sym_RBRACK, STATE(2564), 1, sym_text_interpolation, - [75170] = 4, + [74942] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4716), 1, aux_sym_class_declaration_token1, STATE(2565), 1, sym_text_interpolation, - [75183] = 4, + [74955] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4718), 1, anon_sym_BSLASH, STATE(2566), 1, sym_text_interpolation, - [75196] = 4, + [74968] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3916), 1, anon_sym_RPAREN, STATE(2567), 1, sym_text_interpolation, - [75209] = 4, + [74981] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4720), 1, aux_sym_class_declaration_token1, STATE(2568), 1, sym_text_interpolation, - [75222] = 4, + [74994] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(855), 1, anon_sym_SEMI, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2569), 1, sym_text_interpolation, - [75235] = 4, + [75007] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4722), 1, sym_name, STATE(2570), 1, sym_text_interpolation, - [75248] = 4, + [75020] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4724), 1, sym_name, STATE(2571), 1, sym_text_interpolation, - [75261] = 4, + [75033] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4726), 1, aux_sym_while_statement_token1, STATE(2572), 1, sym_text_interpolation, - [75274] = 4, + [75046] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3910), 1, anon_sym_RPAREN, STATE(2573), 1, sym_text_interpolation, - [75287] = 4, + [75059] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(843), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2574), 1, sym_text_interpolation, - [75300] = 4, + [75072] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4728), 1, sym_name, STATE(2575), 1, sym_text_interpolation, - [75313] = 4, + [75085] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4730), 1, anon_sym_SEMI, STATE(2576), 1, sym_text_interpolation, - [75326] = 4, + [75098] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2515), 1, anon_sym_RPAREN, STATE(2577), 1, sym_text_interpolation, - [75339] = 4, + [75111] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4732), 1, sym_name, STATE(2578), 1, sym_text_interpolation, - [75352] = 4, + [75124] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4734), 1, anon_sym_EQ_GT, STATE(2579), 1, sym_text_interpolation, - [75365] = 4, + [75137] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(869), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2580), 1, sym_text_interpolation, - [75378] = 4, + [75150] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4736), 1, anon_sym_RPAREN, STATE(2581), 1, sym_text_interpolation, - [75391] = 4, + [75163] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4738), 1, anon_sym_RPAREN, STATE(2582), 1, sym_text_interpolation, - [75404] = 4, + [75176] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4740), 1, anon_sym_RPAREN, STATE(2583), 1, sym_text_interpolation, - [75417] = 4, + [75189] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4357), 1, anon_sym_RPAREN, STATE(2584), 1, sym_text_interpolation, - [75430] = 4, + [75202] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4742), 1, sym_name, STATE(2585), 1, sym_text_interpolation, - [75443] = 4, + [75215] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4744), 1, anon_sym_COLON_COLON, STATE(2586), 1, sym_text_interpolation, - [75456] = 4, + [75228] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4746), 1, ts_builtin_sym_end, STATE(2587), 1, sym_text_interpolation, - [75469] = 4, + [75241] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4195), 1, anon_sym_RPAREN, STATE(2588), 1, sym_text_interpolation, - [75482] = 4, + [75254] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3477), 1, anon_sym_BSLASH, STATE(2589), 1, sym_text_interpolation, - [75495] = 4, + [75267] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4748), 1, anon_sym_EQ, STATE(2590), 1, sym_text_interpolation, - [75508] = 4, + [75280] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4750), 1, anon_sym_RBRACK, STATE(2591), 1, sym_text_interpolation, - [75521] = 4, + [75293] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4752), 1, anon_sym_BSLASH, STATE(2592), 1, sym_text_interpolation, - [75534] = 4, + [75306] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4754), 1, anon_sym_COLON_COLON, STATE(2593), 1, sym_text_interpolation, - [75547] = 4, + [75319] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4756), 1, anon_sym_COLON_COLON, STATE(2594), 1, sym_text_interpolation, - [75560] = 4, + [75332] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4211), 1, anon_sym_RPAREN, STATE(2595), 1, sym_text_interpolation, - [75573] = 4, + [75345] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4758), 1, aux_sym_namespace_use_declaration_token3, STATE(2596), 1, sym_text_interpolation, - [75586] = 4, + [75358] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3453), 1, sym_name, STATE(2597), 1, sym_text_interpolation, - [75599] = 4, + [75371] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4760), 1, anon_sym_LPAREN, STATE(2598), 1, sym_text_interpolation, - [75612] = 4, + [75384] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3411), 1, anon_sym_COLON_COLON, STATE(2599), 1, sym_text_interpolation, - [75625] = 4, + [75397] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4762), 1, anon_sym_COLON_COLON, STATE(2600), 1, sym_text_interpolation, - [75638] = 4, + [75410] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(861), 1, anon_sym_SEMI, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2601), 1, sym_text_interpolation, - [75651] = 4, + [75423] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4764), 1, anon_sym_COLON_COLON, STATE(2602), 1, sym_text_interpolation, - [75664] = 4, + [75436] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4766), 1, anon_sym_EQ, STATE(2603), 1, sym_text_interpolation, - [75677] = 4, + [75449] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4768), 1, anon_sym_EQ_GT, STATE(2604), 1, sym_text_interpolation, - [75690] = 4, + [75462] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4770), 1, anon_sym_SEMI, STATE(2605), 1, sym_text_interpolation, - [75703] = 4, + [75475] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4772), 1, anon_sym_RPAREN, STATE(2606), 1, sym_text_interpolation, - [75716] = 4, + [75488] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4774), 1, aux_sym_namespace_use_declaration_token3, STATE(2607), 1, sym_text_interpolation, - [75729] = 4, + [75501] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4776), 1, aux_sym__arrow_function_header_token1, STATE(2608), 1, sym_text_interpolation, - [75742] = 4, + [75514] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(3893), 1, aux_sym_class_declaration_token1, STATE(2609), 1, sym_text_interpolation, - [75755] = 4, + [75527] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(845), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2610), 1, sym_text_interpolation, - [75768] = 4, + [75540] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4778), 1, anon_sym_BSLASH, STATE(2611), 1, sym_text_interpolation, - [75781] = 4, + [75553] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4780), 1, sym_name, STATE(2612), 1, sym_text_interpolation, - [75794] = 4, + [75566] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4231), 1, anon_sym_RPAREN, STATE(2613), 1, sym_text_interpolation, - [75807] = 4, + [75579] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4782), 1, anon_sym_COLON_COLON, STATE(2614), 1, sym_text_interpolation, - [75820] = 4, + [75592] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4784), 1, anon_sym_LPAREN, STATE(2615), 1, sym_text_interpolation, - [75833] = 4, + [75605] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4242), 1, anon_sym_RPAREN, STATE(2616), 1, sym_text_interpolation, - [75846] = 4, + [75618] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4786), 1, sym_name, STATE(2617), 1, sym_text_interpolation, - [75859] = 4, + [75631] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(2641), 1, anon_sym_RPAREN, STATE(2618), 1, sym_text_interpolation, - [75872] = 4, + [75644] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4788), 1, anon_sym_LPAREN, STATE(2619), 1, sym_text_interpolation, - [75885] = 4, + [75657] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4790), 1, anon_sym_LPAREN, STATE(2620), 1, sym_text_interpolation, - [75898] = 4, + [75670] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4263), 1, anon_sym_RPAREN, STATE(2621), 1, sym_text_interpolation, - [75911] = 4, + [75683] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4792), 1, anon_sym_LPAREN, STATE(2622), 1, sym_text_interpolation, - [75924] = 4, + [75696] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4794), 1, anon_sym_LPAREN, STATE(2623), 1, sym_text_interpolation, - [75937] = 4, + [75709] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4796), 1, sym_name, STATE(2624), 1, sym_text_interpolation, - [75950] = 4, + [75722] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4798), 1, sym_heredoc_end, STATE(2625), 1, sym_text_interpolation, - [75963] = 4, + [75735] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4800), 1, sym_heredoc_end, STATE(2626), 1, sym_text_interpolation, - [75976] = 4, + [75748] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4802), 1, anon_sym_LPAREN, STATE(2627), 1, sym_text_interpolation, - [75989] = 4, + [75761] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4804), 1, anon_sym_COLON_COLON, STATE(2628), 1, sym_text_interpolation, - [76002] = 4, + [75774] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4806), 1, anon_sym_LPAREN, STATE(2629), 1, sym_text_interpolation, - [76015] = 4, + [75787] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4808), 1, anon_sym_LPAREN, STATE(2630), 1, sym_text_interpolation, - [76028] = 4, + [75800] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4810), 1, sym_heredoc_start, STATE(2631), 1, sym_text_interpolation, - [76041] = 4, + [75813] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4812), 1, anon_sym_LPAREN, STATE(2632), 1, sym_text_interpolation, - [76054] = 4, + [75826] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(879), 1, anon_sym_SEMI, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, STATE(2633), 1, sym_text_interpolation, - [76067] = 4, + [75839] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4814), 1, sym_name, STATE(2634), 1, sym_text_interpolation, - [76080] = 4, + [75852] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4816), 1, sym_name, STATE(2635), 1, sym_text_interpolation, - [76093] = 4, + [75865] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4818), 1, anon_sym_SEMI, STATE(2636), 1, sym_text_interpolation, - [76106] = 4, + [75878] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4820), 1, anon_sym_LPAREN, STATE(2637), 1, sym_text_interpolation, - [76119] = 4, + [75891] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4822), 1, sym_name, STATE(2638), 1, sym_text_interpolation, - [76132] = 4, + [75904] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4824), 1, anon_sym_SEMI, STATE(2639), 1, sym_text_interpolation, - [76145] = 4, + [75917] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4826), 1, sym_name, STATE(2640), 1, sym_text_interpolation, - [76158] = 4, + [75930] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4828), 1, anon_sym_LPAREN, STATE(2641), 1, sym_text_interpolation, - [76171] = 4, + [75943] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4830), 1, anon_sym_LPAREN, STATE(2642), 1, sym_text_interpolation, - [76184] = 4, + [75956] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4832), 1, anon_sym_EQ_GT, STATE(2643), 1, sym_text_interpolation, - [76197] = 4, + [75969] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4276), 1, anon_sym_RPAREN, STATE(2644), 1, sym_text_interpolation, - [76210] = 4, + [75982] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4834), 1, anon_sym_SEMI, STATE(2645), 1, sym_text_interpolation, - [76223] = 4, + [75995] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4836), 1, anon_sym_RPAREN, STATE(2646), 1, sym_text_interpolation, - [76236] = 4, + [76008] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4838), 1, anon_sym_LPAREN, STATE(2647), 1, sym_text_interpolation, - [76249] = 4, + [76021] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4840), 1, anon_sym_LPAREN, STATE(2648), 1, sym_text_interpolation, - [76262] = 4, + [76034] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4842), 1, anon_sym_LPAREN, STATE(2649), 1, sym_text_interpolation, - [76275] = 4, + [76047] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4844), 1, anon_sym_LPAREN, STATE(2650), 1, sym_text_interpolation, - [76288] = 4, + [76060] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1683), 1, sym_comment, ACTIONS(4846), 1, aux_sym_foreach_statement_token2, STATE(2651), 1, sym_text_interpolation, - [76301] = 1, + [76073] = 1, ACTIONS(4848), 1, ts_builtin_sym_end, - [76305] = 1, + [76077] = 1, ACTIONS(4850), 1, ts_builtin_sym_end, }; @@ -137184,1485 +137113,1485 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1172)] = 38554, [SMALL_STATE(1173)] = 38637, [SMALL_STATE(1174)] = 38720, - [SMALL_STATE(1175)] = 38801, - [SMALL_STATE(1176)] = 38892, - [SMALL_STATE(1177)] = 38983, - [SMALL_STATE(1178)] = 39072, - [SMALL_STATE(1179)] = 39155, - [SMALL_STATE(1180)] = 39246, - [SMALL_STATE(1181)] = 39331, - [SMALL_STATE(1182)] = 39412, - [SMALL_STATE(1183)] = 39495, - [SMALL_STATE(1184)] = 39568, - [SMALL_STATE(1185)] = 39641, - [SMALL_STATE(1186)] = 39724, - [SMALL_STATE(1187)] = 39805, - [SMALL_STATE(1188)] = 39896, - [SMALL_STATE(1189)] = 39979, - [SMALL_STATE(1190)] = 40070, - [SMALL_STATE(1191)] = 40153, - [SMALL_STATE(1192)] = 40244, - [SMALL_STATE(1193)] = 40335, - [SMALL_STATE(1194)] = 40426, - [SMALL_STATE(1195)] = 40506, - [SMALL_STATE(1196)] = 40588, - [SMALL_STATE(1197)] = 40668, - [SMALL_STATE(1198)] = 40750, - [SMALL_STATE(1199)] = 40830, - [SMALL_STATE(1200)] = 40910, - [SMALL_STATE(1201)] = 40990, - [SMALL_STATE(1202)] = 41040, - [SMALL_STATE(1203)] = 41122, - [SMALL_STATE(1204)] = 41202, - [SMALL_STATE(1205)] = 41284, - [SMALL_STATE(1206)] = 41364, - [SMALL_STATE(1207)] = 41444, - [SMALL_STATE(1208)] = 41524, - [SMALL_STATE(1209)] = 41604, - [SMALL_STATE(1210)] = 41684, - [SMALL_STATE(1211)] = 41764, - [SMALL_STATE(1212)] = 41844, - [SMALL_STATE(1213)] = 41924, - [SMALL_STATE(1214)] = 42004, - [SMALL_STATE(1215)] = 42084, - [SMALL_STATE(1216)] = 42166, - [SMALL_STATE(1217)] = 42246, - [SMALL_STATE(1218)] = 42326, - [SMALL_STATE(1219)] = 42408, - [SMALL_STATE(1220)] = 42488, - [SMALL_STATE(1221)] = 42568, - [SMALL_STATE(1222)] = 42648, - [SMALL_STATE(1223)] = 42728, - [SMALL_STATE(1224)] = 42808, - [SMALL_STATE(1225)] = 42888, - [SMALL_STATE(1226)] = 42968, - [SMALL_STATE(1227)] = 43048, - [SMALL_STATE(1228)] = 43128, - [SMALL_STATE(1229)] = 43208, - [SMALL_STATE(1230)] = 43290, - [SMALL_STATE(1231)] = 43340, - [SMALL_STATE(1232)] = 43420, - [SMALL_STATE(1233)] = 43500, - [SMALL_STATE(1234)] = 43580, - [SMALL_STATE(1235)] = 43660, - [SMALL_STATE(1236)] = 43742, - [SMALL_STATE(1237)] = 43821, - [SMALL_STATE(1238)] = 43900, - [SMALL_STATE(1239)] = 43967, - [SMALL_STATE(1240)] = 44046, - [SMALL_STATE(1241)] = 44125, - [SMALL_STATE(1242)] = 44204, - [SMALL_STATE(1243)] = 44283, - [SMALL_STATE(1244)] = 44362, - [SMALL_STATE(1245)] = 44441, - [SMALL_STATE(1246)] = 44520, - [SMALL_STATE(1247)] = 44599, - [SMALL_STATE(1248)] = 44680, - [SMALL_STATE(1249)] = 44759, - [SMALL_STATE(1250)] = 44838, - [SMALL_STATE(1251)] = 44917, - [SMALL_STATE(1252)] = 44996, - [SMALL_STATE(1253)] = 45075, - [SMALL_STATE(1254)] = 45154, - [SMALL_STATE(1255)] = 45233, - [SMALL_STATE(1256)] = 45312, - [SMALL_STATE(1257)] = 45391, - [SMALL_STATE(1258)] = 45470, - [SMALL_STATE(1259)] = 45549, - [SMALL_STATE(1260)] = 45628, - [SMALL_STATE(1261)] = 45707, - [SMALL_STATE(1262)] = 45786, - [SMALL_STATE(1263)] = 45865, - [SMALL_STATE(1264)] = 45944, - [SMALL_STATE(1265)] = 46023, - [SMALL_STATE(1266)] = 46102, - [SMALL_STATE(1267)] = 46181, - [SMALL_STATE(1268)] = 46260, - [SMALL_STATE(1269)] = 46339, - [SMALL_STATE(1270)] = 46406, - [SMALL_STATE(1271)] = 46485, - [SMALL_STATE(1272)] = 46564, - [SMALL_STATE(1273)] = 46643, - [SMALL_STATE(1274)] = 46722, - [SMALL_STATE(1275)] = 46765, - [SMALL_STATE(1276)] = 46844, - [SMALL_STATE(1277)] = 46923, - [SMALL_STATE(1278)] = 47004, - [SMALL_STATE(1279)] = 47083, - [SMALL_STATE(1280)] = 47162, - [SMALL_STATE(1281)] = 47241, - [SMALL_STATE(1282)] = 47320, - [SMALL_STATE(1283)] = 47399, - [SMALL_STATE(1284)] = 47478, - [SMALL_STATE(1285)] = 47557, - [SMALL_STATE(1286)] = 47636, - [SMALL_STATE(1287)] = 47715, - [SMALL_STATE(1288)] = 47794, - [SMALL_STATE(1289)] = 47873, - [SMALL_STATE(1290)] = 47952, - [SMALL_STATE(1291)] = 48031, - [SMALL_STATE(1292)] = 48110, - [SMALL_STATE(1293)] = 48189, - [SMALL_STATE(1294)] = 48268, - [SMALL_STATE(1295)] = 48347, - [SMALL_STATE(1296)] = 48426, - [SMALL_STATE(1297)] = 48505, - [SMALL_STATE(1298)] = 48584, - [SMALL_STATE(1299)] = 48663, - [SMALL_STATE(1300)] = 48742, - [SMALL_STATE(1301)] = 48821, - [SMALL_STATE(1302)] = 48900, - [SMALL_STATE(1303)] = 48979, - [SMALL_STATE(1304)] = 49058, - [SMALL_STATE(1305)] = 49137, - [SMALL_STATE(1306)] = 49218, - [SMALL_STATE(1307)] = 49299, - [SMALL_STATE(1308)] = 49378, - [SMALL_STATE(1309)] = 49457, - [SMALL_STATE(1310)] = 49499, - [SMALL_STATE(1311)] = 49563, - [SMALL_STATE(1312)] = 49627, - [SMALL_STATE(1313)] = 49669, - [SMALL_STATE(1314)] = 49713, - [SMALL_STATE(1315)] = 49754, - [SMALL_STATE(1316)] = 49795, - [SMALL_STATE(1317)] = 49836, - [SMALL_STATE(1318)] = 49877, - [SMALL_STATE(1319)] = 49921, - [SMALL_STATE(1320)] = 49967, - [SMALL_STATE(1321)] = 50021, - [SMALL_STATE(1322)] = 50075, - [SMALL_STATE(1323)] = 50129, - [SMALL_STATE(1324)] = 50183, - [SMALL_STATE(1325)] = 50221, - [SMALL_STATE(1326)] = 50259, - [SMALL_STATE(1327)] = 50297, - [SMALL_STATE(1328)] = 50351, - [SMALL_STATE(1329)] = 50405, - [SMALL_STATE(1330)] = 50443, - [SMALL_STATE(1331)] = 50490, - [SMALL_STATE(1332)] = 50537, - [SMALL_STATE(1333)] = 50584, - [SMALL_STATE(1334)] = 50618, - [SMALL_STATE(1335)] = 50677, - [SMALL_STATE(1336)] = 50710, - [SMALL_STATE(1337)] = 50762, - [SMALL_STATE(1338)] = 50816, - [SMALL_STATE(1339)] = 50868, - [SMALL_STATE(1340)] = 50901, - [SMALL_STATE(1341)] = 50950, - [SMALL_STATE(1342)] = 50999, - [SMALL_STATE(1343)] = 51034, - [SMALL_STATE(1344)] = 51085, - [SMALL_STATE(1345)] = 51136, - [SMALL_STATE(1346)] = 51187, - [SMALL_STATE(1347)] = 51236, - [SMALL_STATE(1348)] = 51280, - [SMALL_STATE(1349)] = 51310, - [SMALL_STATE(1350)] = 51337, - [SMALL_STATE(1351)] = 51364, - [SMALL_STATE(1352)] = 51409, - [SMALL_STATE(1353)] = 51436, - [SMALL_STATE(1354)] = 51463, - [SMALL_STATE(1355)] = 51489, - [SMALL_STATE(1356)] = 51527, - [SMALL_STATE(1357)] = 51553, - [SMALL_STATE(1358)] = 51579, - [SMALL_STATE(1359)] = 51623, - [SMALL_STATE(1360)] = 51649, - [SMALL_STATE(1361)] = 51675, - [SMALL_STATE(1362)] = 51701, - [SMALL_STATE(1363)] = 51727, - [SMALL_STATE(1364)] = 51753, - [SMALL_STATE(1365)] = 51779, - [SMALL_STATE(1366)] = 51825, - [SMALL_STATE(1367)] = 51871, - [SMALL_STATE(1368)] = 51897, - [SMALL_STATE(1369)] = 51923, - [SMALL_STATE(1370)] = 51949, - [SMALL_STATE(1371)] = 51975, - [SMALL_STATE(1372)] = 52001, - [SMALL_STATE(1373)] = 52027, - [SMALL_STATE(1374)] = 52053, - [SMALL_STATE(1375)] = 52079, - [SMALL_STATE(1376)] = 52125, - [SMALL_STATE(1377)] = 52151, - [SMALL_STATE(1378)] = 52197, - [SMALL_STATE(1379)] = 52244, - [SMALL_STATE(1380)] = 52271, - [SMALL_STATE(1381)] = 52296, - [SMALL_STATE(1382)] = 52337, - [SMALL_STATE(1383)] = 52362, - [SMALL_STATE(1384)] = 52395, - [SMALL_STATE(1385)] = 52420, - [SMALL_STATE(1386)] = 52445, - [SMALL_STATE(1387)] = 52470, - [SMALL_STATE(1388)] = 52495, - [SMALL_STATE(1389)] = 52520, - [SMALL_STATE(1390)] = 52545, - [SMALL_STATE(1391)] = 52570, - [SMALL_STATE(1392)] = 52611, - [SMALL_STATE(1393)] = 52636, - [SMALL_STATE(1394)] = 52661, - [SMALL_STATE(1395)] = 52704, - [SMALL_STATE(1396)] = 52729, - [SMALL_STATE(1397)] = 52754, - [SMALL_STATE(1398)] = 52779, - [SMALL_STATE(1399)] = 52822, - [SMALL_STATE(1400)] = 52847, - [SMALL_STATE(1401)] = 52872, - [SMALL_STATE(1402)] = 52897, - [SMALL_STATE(1403)] = 52944, - [SMALL_STATE(1404)] = 52969, - [SMALL_STATE(1405)] = 52994, - [SMALL_STATE(1406)] = 53035, - [SMALL_STATE(1407)] = 53078, - [SMALL_STATE(1408)] = 53103, - [SMALL_STATE(1409)] = 53128, - [SMALL_STATE(1410)] = 53171, - [SMALL_STATE(1411)] = 53196, - [SMALL_STATE(1412)] = 53221, - [SMALL_STATE(1413)] = 53246, - [SMALL_STATE(1414)] = 53286, - [SMALL_STATE(1415)] = 53326, - [SMALL_STATE(1416)] = 53366, - [SMALL_STATE(1417)] = 53406, - [SMALL_STATE(1418)] = 53443, - [SMALL_STATE(1419)] = 53480, - [SMALL_STATE(1420)] = 53517, - [SMALL_STATE(1421)] = 53554, - [SMALL_STATE(1422)] = 53589, - [SMALL_STATE(1423)] = 53626, - [SMALL_STATE(1424)] = 53663, - [SMALL_STATE(1425)] = 53698, - [SMALL_STATE(1426)] = 53733, - [SMALL_STATE(1427)] = 53757, - [SMALL_STATE(1428)] = 53781, - [SMALL_STATE(1429)] = 53805, - [SMALL_STATE(1430)] = 53829, - [SMALL_STATE(1431)] = 53853, - [SMALL_STATE(1432)] = 53887, - [SMALL_STATE(1433)] = 53911, - [SMALL_STATE(1434)] = 53935, - [SMALL_STATE(1435)] = 53969, - [SMALL_STATE(1436)] = 54003, - [SMALL_STATE(1437)] = 54031, - [SMALL_STATE(1438)] = 54063, - [SMALL_STATE(1439)] = 54095, - [SMALL_STATE(1440)] = 54119, - [SMALL_STATE(1441)] = 54149, - [SMALL_STATE(1442)] = 54183, - [SMALL_STATE(1443)] = 54207, - [SMALL_STATE(1444)] = 54231, - [SMALL_STATE(1445)] = 54263, - [SMALL_STATE(1446)] = 54291, - [SMALL_STATE(1447)] = 54319, - [SMALL_STATE(1448)] = 54353, - [SMALL_STATE(1449)] = 54377, - [SMALL_STATE(1450)] = 54401, - [SMALL_STATE(1451)] = 54430, - [SMALL_STATE(1452)] = 54451, - [SMALL_STATE(1453)] = 54472, - [SMALL_STATE(1454)] = 54497, - [SMALL_STATE(1455)] = 54526, - [SMALL_STATE(1456)] = 54555, - [SMALL_STATE(1457)] = 54582, - [SMALL_STATE(1458)] = 54611, - [SMALL_STATE(1459)] = 54642, - [SMALL_STATE(1460)] = 54671, - [SMALL_STATE(1461)] = 54692, - [SMALL_STATE(1462)] = 54723, - [SMALL_STATE(1463)] = 54752, - [SMALL_STATE(1464)] = 54781, - [SMALL_STATE(1465)] = 54810, - [SMALL_STATE(1466)] = 54839, - [SMALL_STATE(1467)] = 54868, - [SMALL_STATE(1468)] = 54897, - [SMALL_STATE(1469)] = 54928, - [SMALL_STATE(1470)] = 54949, - [SMALL_STATE(1471)] = 54978, - [SMALL_STATE(1472)] = 55009, - [SMALL_STATE(1473)] = 55040, - [SMALL_STATE(1474)] = 55067, - [SMALL_STATE(1475)] = 55094, - [SMALL_STATE(1476)] = 55123, - [SMALL_STATE(1477)] = 55154, - [SMALL_STATE(1478)] = 55183, - [SMALL_STATE(1479)] = 55204, - [SMALL_STATE(1480)] = 55233, - [SMALL_STATE(1481)] = 55254, - [SMALL_STATE(1482)] = 55287, - [SMALL_STATE(1483)] = 55316, - [SMALL_STATE(1484)] = 55345, - [SMALL_STATE(1485)] = 55366, - [SMALL_STATE(1486)] = 55397, - [SMALL_STATE(1487)] = 55426, - [SMALL_STATE(1488)] = 55457, - [SMALL_STATE(1489)] = 55488, - [SMALL_STATE(1490)] = 55517, - [SMALL_STATE(1491)] = 55548, - [SMALL_STATE(1492)] = 55575, - [SMALL_STATE(1493)] = 55602, - [SMALL_STATE(1494)] = 55633, - [SMALL_STATE(1495)] = 55660, - [SMALL_STATE(1496)] = 55691, - [SMALL_STATE(1497)] = 55720, - [SMALL_STATE(1498)] = 55749, - [SMALL_STATE(1499)] = 55776, - [SMALL_STATE(1500)] = 55805, - [SMALL_STATE(1501)] = 55834, - [SMALL_STATE(1502)] = 55863, - [SMALL_STATE(1503)] = 55892, - [SMALL_STATE(1504)] = 55923, - [SMALL_STATE(1505)] = 55956, - [SMALL_STATE(1506)] = 55979, - [SMALL_STATE(1507)] = 56008, - [SMALL_STATE(1508)] = 56037, - [SMALL_STATE(1509)] = 56066, - [SMALL_STATE(1510)] = 56100, - [SMALL_STATE(1511)] = 56134, - [SMALL_STATE(1512)] = 56160, - [SMALL_STATE(1513)] = 56194, - [SMALL_STATE(1514)] = 56228, - [SMALL_STATE(1515)] = 56256, - [SMALL_STATE(1516)] = 56288, - [SMALL_STATE(1517)] = 56314, - [SMALL_STATE(1518)] = 56348, - [SMALL_STATE(1519)] = 56378, - [SMALL_STATE(1520)] = 56412, - [SMALL_STATE(1521)] = 56438, - [SMALL_STATE(1522)] = 56464, - [SMALL_STATE(1523)] = 56487, - [SMALL_STATE(1524)] = 56508, - [SMALL_STATE(1525)] = 56529, - [SMALL_STATE(1526)] = 56550, - [SMALL_STATE(1527)] = 56571, - [SMALL_STATE(1528)] = 56592, - [SMALL_STATE(1529)] = 56617, - [SMALL_STATE(1530)] = 56640, - [SMALL_STATE(1531)] = 56667, - [SMALL_STATE(1532)] = 56690, - [SMALL_STATE(1533)] = 56711, - [SMALL_STATE(1534)] = 56734, - [SMALL_STATE(1535)] = 56755, - [SMALL_STATE(1536)] = 56782, - [SMALL_STATE(1537)] = 56803, - [SMALL_STATE(1538)] = 56824, - [SMALL_STATE(1539)] = 56845, - [SMALL_STATE(1540)] = 56872, - [SMALL_STATE(1541)] = 56895, - [SMALL_STATE(1542)] = 56916, - [SMALL_STATE(1543)] = 56943, - [SMALL_STATE(1544)] = 56966, - [SMALL_STATE(1545)] = 56997, - [SMALL_STATE(1546)] = 57020, - [SMALL_STATE(1547)] = 57047, - [SMALL_STATE(1548)] = 57074, - [SMALL_STATE(1549)] = 57101, - [SMALL_STATE(1550)] = 57122, - [SMALL_STATE(1551)] = 57145, - [SMALL_STATE(1552)] = 57168, - [SMALL_STATE(1553)] = 57191, - [SMALL_STATE(1554)] = 57212, - [SMALL_STATE(1555)] = 57235, - [SMALL_STATE(1556)] = 57258, - [SMALL_STATE(1557)] = 57281, - [SMALL_STATE(1558)] = 57302, - [SMALL_STATE(1559)] = 57325, - [SMALL_STATE(1560)] = 57348, - [SMALL_STATE(1561)] = 57371, - [SMALL_STATE(1562)] = 57392, - [SMALL_STATE(1563)] = 57419, - [SMALL_STATE(1564)] = 57442, - [SMALL_STATE(1565)] = 57465, - [SMALL_STATE(1566)] = 57492, - [SMALL_STATE(1567)] = 57511, - [SMALL_STATE(1568)] = 57537, - [SMALL_STATE(1569)] = 57565, - [SMALL_STATE(1570)] = 57593, - [SMALL_STATE(1571)] = 57613, - [SMALL_STATE(1572)] = 57639, - [SMALL_STATE(1573)] = 57667, - [SMALL_STATE(1574)] = 57695, - [SMALL_STATE(1575)] = 57723, - [SMALL_STATE(1576)] = 57751, - [SMALL_STATE(1577)] = 57779, - [SMALL_STATE(1578)] = 57807, - [SMALL_STATE(1579)] = 57825, - [SMALL_STATE(1580)] = 57845, - [SMALL_STATE(1581)] = 57873, - [SMALL_STATE(1582)] = 57901, - [SMALL_STATE(1583)] = 57923, - [SMALL_STATE(1584)] = 57951, - [SMALL_STATE(1585)] = 57979, - [SMALL_STATE(1586)] = 58005, - [SMALL_STATE(1587)] = 58031, - [SMALL_STATE(1588)] = 58057, - [SMALL_STATE(1589)] = 58083, - [SMALL_STATE(1590)] = 58111, - [SMALL_STATE(1591)] = 58135, - [SMALL_STATE(1592)] = 58163, - [SMALL_STATE(1593)] = 58191, - [SMALL_STATE(1594)] = 58211, - [SMALL_STATE(1595)] = 58237, - [SMALL_STATE(1596)] = 58257, - [SMALL_STATE(1597)] = 58277, - [SMALL_STATE(1598)] = 58303, - [SMALL_STATE(1599)] = 58329, - [SMALL_STATE(1600)] = 58349, - [SMALL_STATE(1601)] = 58377, - [SMALL_STATE(1602)] = 58401, - [SMALL_STATE(1603)] = 58429, - [SMALL_STATE(1604)] = 58457, - [SMALL_STATE(1605)] = 58481, - [SMALL_STATE(1606)] = 58509, - [SMALL_STATE(1607)] = 58537, - [SMALL_STATE(1608)] = 58565, - [SMALL_STATE(1609)] = 58593, - [SMALL_STATE(1610)] = 58613, - [SMALL_STATE(1611)] = 58639, - [SMALL_STATE(1612)] = 58667, - [SMALL_STATE(1613)] = 58693, - [SMALL_STATE(1614)] = 58719, - [SMALL_STATE(1615)] = 58747, - [SMALL_STATE(1616)] = 58775, - [SMALL_STATE(1617)] = 58799, - [SMALL_STATE(1618)] = 58827, - [SMALL_STATE(1619)] = 58851, - [SMALL_STATE(1620)] = 58879, - [SMALL_STATE(1621)] = 58907, - [SMALL_STATE(1622)] = 58925, - [SMALL_STATE(1623)] = 58945, - [SMALL_STATE(1624)] = 58971, - [SMALL_STATE(1625)] = 58999, - [SMALL_STATE(1626)] = 59017, - [SMALL_STATE(1627)] = 59045, - [SMALL_STATE(1628)] = 59073, - [SMALL_STATE(1629)] = 59101, - [SMALL_STATE(1630)] = 59119, - [SMALL_STATE(1631)] = 59147, - [SMALL_STATE(1632)] = 59175, - [SMALL_STATE(1633)] = 59203, - [SMALL_STATE(1634)] = 59223, - [SMALL_STATE(1635)] = 59249, - [SMALL_STATE(1636)] = 59269, - [SMALL_STATE(1637)] = 59297, - [SMALL_STATE(1638)] = 59321, - [SMALL_STATE(1639)] = 59349, - [SMALL_STATE(1640)] = 59377, - [SMALL_STATE(1641)] = 59405, - [SMALL_STATE(1642)] = 59433, - [SMALL_STATE(1643)] = 59457, - [SMALL_STATE(1644)] = 59482, - [SMALL_STATE(1645)] = 59503, - [SMALL_STATE(1646)] = 59524, - [SMALL_STATE(1647)] = 59545, - [SMALL_STATE(1648)] = 59570, - [SMALL_STATE(1649)] = 59595, - [SMALL_STATE(1650)] = 59616, - [SMALL_STATE(1651)] = 59637, - [SMALL_STATE(1652)] = 59660, - [SMALL_STATE(1653)] = 59685, - [SMALL_STATE(1654)] = 59706, - [SMALL_STATE(1655)] = 59729, - [SMALL_STATE(1656)] = 59752, - [SMALL_STATE(1657)] = 59777, - [SMALL_STATE(1658)] = 59800, - [SMALL_STATE(1659)] = 59821, - [SMALL_STATE(1660)] = 59844, - [SMALL_STATE(1661)] = 59863, - [SMALL_STATE(1662)] = 59888, - [SMALL_STATE(1663)] = 59905, - [SMALL_STATE(1664)] = 59926, - [SMALL_STATE(1665)] = 59947, - [SMALL_STATE(1666)] = 59970, - [SMALL_STATE(1667)] = 59989, - [SMALL_STATE(1668)] = 60014, - [SMALL_STATE(1669)] = 60037, - [SMALL_STATE(1670)] = 60062, - [SMALL_STATE(1671)] = 60085, - [SMALL_STATE(1672)] = 60106, - [SMALL_STATE(1673)] = 60131, - [SMALL_STATE(1674)] = 60154, - [SMALL_STATE(1675)] = 60179, - [SMALL_STATE(1676)] = 60200, - [SMALL_STATE(1677)] = 60221, - [SMALL_STATE(1678)] = 60240, - [SMALL_STATE(1679)] = 60261, - [SMALL_STATE(1680)] = 60286, - [SMALL_STATE(1681)] = 60305, - [SMALL_STATE(1682)] = 60328, - [SMALL_STATE(1683)] = 60349, - [SMALL_STATE(1684)] = 60370, - [SMALL_STATE(1685)] = 60391, - [SMALL_STATE(1686)] = 60416, - [SMALL_STATE(1687)] = 60439, - [SMALL_STATE(1688)] = 60462, - [SMALL_STATE(1689)] = 60483, - [SMALL_STATE(1690)] = 60500, - [SMALL_STATE(1691)] = 60523, - [SMALL_STATE(1692)] = 60548, - [SMALL_STATE(1693)] = 60573, - [SMALL_STATE(1694)] = 60592, - [SMALL_STATE(1695)] = 60611, - [SMALL_STATE(1696)] = 60632, - [SMALL_STATE(1697)] = 60657, - [SMALL_STATE(1698)] = 60680, - [SMALL_STATE(1699)] = 60701, - [SMALL_STATE(1700)] = 60724, - [SMALL_STATE(1701)] = 60745, - [SMALL_STATE(1702)] = 60770, - [SMALL_STATE(1703)] = 60791, - [SMALL_STATE(1704)] = 60816, - [SMALL_STATE(1705)] = 60839, - [SMALL_STATE(1706)] = 60864, - [SMALL_STATE(1707)] = 60887, - [SMALL_STATE(1708)] = 60906, - [SMALL_STATE(1709)] = 60925, - [SMALL_STATE(1710)] = 60948, - [SMALL_STATE(1711)] = 60969, - [SMALL_STATE(1712)] = 60988, - [SMALL_STATE(1713)] = 61009, - [SMALL_STATE(1714)] = 61030, - [SMALL_STATE(1715)] = 61051, - [SMALL_STATE(1716)] = 61074, - [SMALL_STATE(1717)] = 61095, - [SMALL_STATE(1718)] = 61118, - [SMALL_STATE(1719)] = 61139, - [SMALL_STATE(1720)] = 61160, - [SMALL_STATE(1721)] = 61185, - [SMALL_STATE(1722)] = 61206, - [SMALL_STATE(1723)] = 61229, - [SMALL_STATE(1724)] = 61254, - [SMALL_STATE(1725)] = 61275, - [SMALL_STATE(1726)] = 61294, - [SMALL_STATE(1727)] = 61313, - [SMALL_STATE(1728)] = 61334, - [SMALL_STATE(1729)] = 61355, - [SMALL_STATE(1730)] = 61372, - [SMALL_STATE(1731)] = 61389, - [SMALL_STATE(1732)] = 61406, - [SMALL_STATE(1733)] = 61427, - [SMALL_STATE(1734)] = 61444, - [SMALL_STATE(1735)] = 61465, - [SMALL_STATE(1736)] = 61484, - [SMALL_STATE(1737)] = 61505, - [SMALL_STATE(1738)] = 61528, - [SMALL_STATE(1739)] = 61549, - [SMALL_STATE(1740)] = 61572, - [SMALL_STATE(1741)] = 61589, - [SMALL_STATE(1742)] = 61612, - [SMALL_STATE(1743)] = 61632, - [SMALL_STATE(1744)] = 61648, - [SMALL_STATE(1745)] = 61668, - [SMALL_STATE(1746)] = 61690, - [SMALL_STATE(1747)] = 61710, - [SMALL_STATE(1748)] = 61732, - [SMALL_STATE(1749)] = 61754, - [SMALL_STATE(1750)] = 61776, - [SMALL_STATE(1751)] = 61796, - [SMALL_STATE(1752)] = 61812, - [SMALL_STATE(1753)] = 61830, - [SMALL_STATE(1754)] = 61848, - [SMALL_STATE(1755)] = 61870, - [SMALL_STATE(1756)] = 61892, - [SMALL_STATE(1757)] = 61912, - [SMALL_STATE(1758)] = 61932, - [SMALL_STATE(1759)] = 61950, - [SMALL_STATE(1760)] = 61972, - [SMALL_STATE(1761)] = 61992, - [SMALL_STATE(1762)] = 62012, - [SMALL_STATE(1763)] = 62034, - [SMALL_STATE(1764)] = 62050, - [SMALL_STATE(1765)] = 62066, - [SMALL_STATE(1766)] = 62088, - [SMALL_STATE(1767)] = 62108, - [SMALL_STATE(1768)] = 62130, - [SMALL_STATE(1769)] = 62152, - [SMALL_STATE(1770)] = 62170, - [SMALL_STATE(1771)] = 62186, - [SMALL_STATE(1772)] = 62206, - [SMALL_STATE(1773)] = 62224, - [SMALL_STATE(1774)] = 62244, - [SMALL_STATE(1775)] = 62266, - [SMALL_STATE(1776)] = 62284, - [SMALL_STATE(1777)] = 62306, - [SMALL_STATE(1778)] = 62326, - [SMALL_STATE(1779)] = 62348, - [SMALL_STATE(1780)] = 62370, - [SMALL_STATE(1781)] = 62390, - [SMALL_STATE(1782)] = 62412, - [SMALL_STATE(1783)] = 62432, - [SMALL_STATE(1784)] = 62452, - [SMALL_STATE(1785)] = 62474, - [SMALL_STATE(1786)] = 62492, - [SMALL_STATE(1787)] = 62514, - [SMALL_STATE(1788)] = 62534, - [SMALL_STATE(1789)] = 62554, - [SMALL_STATE(1790)] = 62574, - [SMALL_STATE(1791)] = 62596, - [SMALL_STATE(1792)] = 62618, - [SMALL_STATE(1793)] = 62638, - [SMALL_STATE(1794)] = 62660, - [SMALL_STATE(1795)] = 62680, - [SMALL_STATE(1796)] = 62702, - [SMALL_STATE(1797)] = 62718, - [SMALL_STATE(1798)] = 62738, - [SMALL_STATE(1799)] = 62758, - [SMALL_STATE(1800)] = 62776, - [SMALL_STATE(1801)] = 62792, - [SMALL_STATE(1802)] = 62810, - [SMALL_STATE(1803)] = 62832, - [SMALL_STATE(1804)] = 62854, - [SMALL_STATE(1805)] = 62870, - [SMALL_STATE(1806)] = 62892, - [SMALL_STATE(1807)] = 62914, - [SMALL_STATE(1808)] = 62936, - [SMALL_STATE(1809)] = 62956, - [SMALL_STATE(1810)] = 62978, - [SMALL_STATE(1811)] = 63000, - [SMALL_STATE(1812)] = 63020, - [SMALL_STATE(1813)] = 63042, - [SMALL_STATE(1814)] = 63064, - [SMALL_STATE(1815)] = 63086, - [SMALL_STATE(1816)] = 63104, - [SMALL_STATE(1817)] = 63126, - [SMALL_STATE(1818)] = 63148, - [SMALL_STATE(1819)] = 63168, - [SMALL_STATE(1820)] = 63190, - [SMALL_STATE(1821)] = 63212, - [SMALL_STATE(1822)] = 63234, - [SMALL_STATE(1823)] = 63256, - [SMALL_STATE(1824)] = 63276, - [SMALL_STATE(1825)] = 63296, - [SMALL_STATE(1826)] = 63316, - [SMALL_STATE(1827)] = 63332, - [SMALL_STATE(1828)] = 63352, - [SMALL_STATE(1829)] = 63374, - [SMALL_STATE(1830)] = 63394, - [SMALL_STATE(1831)] = 63410, - [SMALL_STATE(1832)] = 63430, - [SMALL_STATE(1833)] = 63448, - [SMALL_STATE(1834)] = 63470, - [SMALL_STATE(1835)] = 63492, - [SMALL_STATE(1836)] = 63508, - [SMALL_STATE(1837)] = 63530, - [SMALL_STATE(1838)] = 63552, - [SMALL_STATE(1839)] = 63572, - [SMALL_STATE(1840)] = 63594, - [SMALL_STATE(1841)] = 63616, - [SMALL_STATE(1842)] = 63632, - [SMALL_STATE(1843)] = 63652, - [SMALL_STATE(1844)] = 63672, - [SMALL_STATE(1845)] = 63692, - [SMALL_STATE(1846)] = 63710, - [SMALL_STATE(1847)] = 63732, - [SMALL_STATE(1848)] = 63754, - [SMALL_STATE(1849)] = 63776, - [SMALL_STATE(1850)] = 63794, - [SMALL_STATE(1851)] = 63810, - [SMALL_STATE(1852)] = 63830, - [SMALL_STATE(1853)] = 63850, - [SMALL_STATE(1854)] = 63870, - [SMALL_STATE(1855)] = 63888, - [SMALL_STATE(1856)] = 63910, - [SMALL_STATE(1857)] = 63930, - [SMALL_STATE(1858)] = 63952, - [SMALL_STATE(1859)] = 63972, - [SMALL_STATE(1860)] = 63994, - [SMALL_STATE(1861)] = 64014, - [SMALL_STATE(1862)] = 64030, - [SMALL_STATE(1863)] = 64050, - [SMALL_STATE(1864)] = 64066, - [SMALL_STATE(1865)] = 64088, - [SMALL_STATE(1866)] = 64104, - [SMALL_STATE(1867)] = 64122, - [SMALL_STATE(1868)] = 64144, - [SMALL_STATE(1869)] = 64164, - [SMALL_STATE(1870)] = 64184, - [SMALL_STATE(1871)] = 64206, - [SMALL_STATE(1872)] = 64228, - [SMALL_STATE(1873)] = 64250, - [SMALL_STATE(1874)] = 64266, - [SMALL_STATE(1875)] = 64286, - [SMALL_STATE(1876)] = 64306, - [SMALL_STATE(1877)] = 64326, - [SMALL_STATE(1878)] = 64348, - [SMALL_STATE(1879)] = 64368, - [SMALL_STATE(1880)] = 64386, - [SMALL_STATE(1881)] = 64408, - [SMALL_STATE(1882)] = 64430, - [SMALL_STATE(1883)] = 64452, - [SMALL_STATE(1884)] = 64472, - [SMALL_STATE(1885)] = 64494, - [SMALL_STATE(1886)] = 64513, - [SMALL_STATE(1887)] = 64532, - [SMALL_STATE(1888)] = 64549, - [SMALL_STATE(1889)] = 64568, - [SMALL_STATE(1890)] = 64587, - [SMALL_STATE(1891)] = 64606, - [SMALL_STATE(1892)] = 64625, - [SMALL_STATE(1893)] = 64642, - [SMALL_STATE(1894)] = 64661, - [SMALL_STATE(1895)] = 64680, - [SMALL_STATE(1896)] = 64697, - [SMALL_STATE(1897)] = 64716, - [SMALL_STATE(1898)] = 64735, - [SMALL_STATE(1899)] = 64754, - [SMALL_STATE(1900)] = 64773, - [SMALL_STATE(1901)] = 64792, - [SMALL_STATE(1902)] = 64811, - [SMALL_STATE(1903)] = 64830, - [SMALL_STATE(1904)] = 64849, - [SMALL_STATE(1905)] = 64868, - [SMALL_STATE(1906)] = 64887, - [SMALL_STATE(1907)] = 64906, - [SMALL_STATE(1908)] = 64925, - [SMALL_STATE(1909)] = 64944, - [SMALL_STATE(1910)] = 64963, - [SMALL_STATE(1911)] = 64982, - [SMALL_STATE(1912)] = 65001, - [SMALL_STATE(1913)] = 65018, - [SMALL_STATE(1914)] = 65037, - [SMALL_STATE(1915)] = 65052, - [SMALL_STATE(1916)] = 65071, - [SMALL_STATE(1917)] = 65090, - [SMALL_STATE(1918)] = 65109, - [SMALL_STATE(1919)] = 65126, - [SMALL_STATE(1920)] = 65145, - [SMALL_STATE(1921)] = 65164, - [SMALL_STATE(1922)] = 65183, - [SMALL_STATE(1923)] = 65198, - [SMALL_STATE(1924)] = 65217, - [SMALL_STATE(1925)] = 65236, - [SMALL_STATE(1926)] = 65255, - [SMALL_STATE(1927)] = 65274, - [SMALL_STATE(1928)] = 65291, - [SMALL_STATE(1929)] = 65310, - [SMALL_STATE(1930)] = 65329, - [SMALL_STATE(1931)] = 65348, - [SMALL_STATE(1932)] = 65367, - [SMALL_STATE(1933)] = 65386, - [SMALL_STATE(1934)] = 65401, - [SMALL_STATE(1935)] = 65418, - [SMALL_STATE(1936)] = 65435, - [SMALL_STATE(1937)] = 65452, - [SMALL_STATE(1938)] = 65467, - [SMALL_STATE(1939)] = 65484, - [SMALL_STATE(1940)] = 65503, - [SMALL_STATE(1941)] = 65522, - [SMALL_STATE(1942)] = 65539, - [SMALL_STATE(1943)] = 65554, - [SMALL_STATE(1944)] = 65569, - [SMALL_STATE(1945)] = 65586, - [SMALL_STATE(1946)] = 65603, - [SMALL_STATE(1947)] = 65622, - [SMALL_STATE(1948)] = 65641, - [SMALL_STATE(1949)] = 65658, - [SMALL_STATE(1950)] = 65677, - [SMALL_STATE(1951)] = 65694, - [SMALL_STATE(1952)] = 65711, - [SMALL_STATE(1953)] = 65728, - [SMALL_STATE(1954)] = 65745, - [SMALL_STATE(1955)] = 65764, - [SMALL_STATE(1956)] = 65781, - [SMALL_STATE(1957)] = 65798, - [SMALL_STATE(1958)] = 65815, - [SMALL_STATE(1959)] = 65832, - [SMALL_STATE(1960)] = 65851, - [SMALL_STATE(1961)] = 65870, - [SMALL_STATE(1962)] = 65889, - [SMALL_STATE(1963)] = 65906, - [SMALL_STATE(1964)] = 65925, - [SMALL_STATE(1965)] = 65942, - [SMALL_STATE(1966)] = 65957, - [SMALL_STATE(1967)] = 65974, - [SMALL_STATE(1968)] = 65991, - [SMALL_STATE(1969)] = 66008, - [SMALL_STATE(1970)] = 66025, - [SMALL_STATE(1971)] = 66042, - [SMALL_STATE(1972)] = 66059, - [SMALL_STATE(1973)] = 66078, - [SMALL_STATE(1974)] = 66095, - [SMALL_STATE(1975)] = 66114, - [SMALL_STATE(1976)] = 66131, - [SMALL_STATE(1977)] = 66150, - [SMALL_STATE(1978)] = 66167, - [SMALL_STATE(1979)] = 66184, - [SMALL_STATE(1980)] = 66201, - [SMALL_STATE(1981)] = 66220, - [SMALL_STATE(1982)] = 66239, - [SMALL_STATE(1983)] = 66256, - [SMALL_STATE(1984)] = 66273, - [SMALL_STATE(1985)] = 66288, - [SMALL_STATE(1986)] = 66305, - [SMALL_STATE(1987)] = 66324, - [SMALL_STATE(1988)] = 66341, - [SMALL_STATE(1989)] = 66356, - [SMALL_STATE(1990)] = 66373, - [SMALL_STATE(1991)] = 66390, - [SMALL_STATE(1992)] = 66409, - [SMALL_STATE(1993)] = 66426, - [SMALL_STATE(1994)] = 66441, - [SMALL_STATE(1995)] = 66458, - [SMALL_STATE(1996)] = 66475, - [SMALL_STATE(1997)] = 66492, - [SMALL_STATE(1998)] = 66511, - [SMALL_STATE(1999)] = 66528, - [SMALL_STATE(2000)] = 66547, - [SMALL_STATE(2001)] = 66564, - [SMALL_STATE(2002)] = 66583, - [SMALL_STATE(2003)] = 66602, - [SMALL_STATE(2004)] = 66619, - [SMALL_STATE(2005)] = 66638, - [SMALL_STATE(2006)] = 66655, - [SMALL_STATE(2007)] = 66674, - [SMALL_STATE(2008)] = 66691, - [SMALL_STATE(2009)] = 66710, - [SMALL_STATE(2010)] = 66727, - [SMALL_STATE(2011)] = 66746, - [SMALL_STATE(2012)] = 66763, - [SMALL_STATE(2013)] = 66780, - [SMALL_STATE(2014)] = 66797, - [SMALL_STATE(2015)] = 66814, - [SMALL_STATE(2016)] = 66831, - [SMALL_STATE(2017)] = 66848, - [SMALL_STATE(2018)] = 66865, - [SMALL_STATE(2019)] = 66882, - [SMALL_STATE(2020)] = 66899, - [SMALL_STATE(2021)] = 66916, - [SMALL_STATE(2022)] = 66933, - [SMALL_STATE(2023)] = 66952, - [SMALL_STATE(2024)] = 66969, - [SMALL_STATE(2025)] = 66988, - [SMALL_STATE(2026)] = 67007, - [SMALL_STATE(2027)] = 67024, - [SMALL_STATE(2028)] = 67041, - [SMALL_STATE(2029)] = 67060, - [SMALL_STATE(2030)] = 67077, - [SMALL_STATE(2031)] = 67096, - [SMALL_STATE(2032)] = 67115, - [SMALL_STATE(2033)] = 67132, - [SMALL_STATE(2034)] = 67151, - [SMALL_STATE(2035)] = 67170, - [SMALL_STATE(2036)] = 67189, - [SMALL_STATE(2037)] = 67208, - [SMALL_STATE(2038)] = 67225, - [SMALL_STATE(2039)] = 67244, - [SMALL_STATE(2040)] = 67263, - [SMALL_STATE(2041)] = 67282, - [SMALL_STATE(2042)] = 67299, - [SMALL_STATE(2043)] = 67318, - [SMALL_STATE(2044)] = 67333, - [SMALL_STATE(2045)] = 67348, - [SMALL_STATE(2046)] = 67367, - [SMALL_STATE(2047)] = 67384, - [SMALL_STATE(2048)] = 67401, - [SMALL_STATE(2049)] = 67418, - [SMALL_STATE(2050)] = 67435, - [SMALL_STATE(2051)] = 67452, - [SMALL_STATE(2052)] = 67469, - [SMALL_STATE(2053)] = 67486, - [SMALL_STATE(2054)] = 67503, - [SMALL_STATE(2055)] = 67520, - [SMALL_STATE(2056)] = 67537, - [SMALL_STATE(2057)] = 67554, - [SMALL_STATE(2058)] = 67571, - [SMALL_STATE(2059)] = 67588, - [SMALL_STATE(2060)] = 67605, - [SMALL_STATE(2061)] = 67622, - [SMALL_STATE(2062)] = 67639, - [SMALL_STATE(2063)] = 67656, - [SMALL_STATE(2064)] = 67671, - [SMALL_STATE(2065)] = 67688, - [SMALL_STATE(2066)] = 67705, - [SMALL_STATE(2067)] = 67722, - [SMALL_STATE(2068)] = 67739, - [SMALL_STATE(2069)] = 67756, - [SMALL_STATE(2070)] = 67775, - [SMALL_STATE(2071)] = 67792, - [SMALL_STATE(2072)] = 67811, - [SMALL_STATE(2073)] = 67830, - [SMALL_STATE(2074)] = 67847, - [SMALL_STATE(2075)] = 67864, - [SMALL_STATE(2076)] = 67881, - [SMALL_STATE(2077)] = 67898, - [SMALL_STATE(2078)] = 67915, - [SMALL_STATE(2079)] = 67934, - [SMALL_STATE(2080)] = 67951, - [SMALL_STATE(2081)] = 67966, - [SMALL_STATE(2082)] = 67981, - [SMALL_STATE(2083)] = 67998, - [SMALL_STATE(2084)] = 68015, - [SMALL_STATE(2085)] = 68032, - [SMALL_STATE(2086)] = 68049, - [SMALL_STATE(2087)] = 68066, - [SMALL_STATE(2088)] = 68083, - [SMALL_STATE(2089)] = 68100, - [SMALL_STATE(2090)] = 68117, - [SMALL_STATE(2091)] = 68134, - [SMALL_STATE(2092)] = 68151, - [SMALL_STATE(2093)] = 68168, - [SMALL_STATE(2094)] = 68187, - [SMALL_STATE(2095)] = 68204, - [SMALL_STATE(2096)] = 68221, - [SMALL_STATE(2097)] = 68238, - [SMALL_STATE(2098)] = 68255, - [SMALL_STATE(2099)] = 68272, - [SMALL_STATE(2100)] = 68289, - [SMALL_STATE(2101)] = 68306, - [SMALL_STATE(2102)] = 68323, - [SMALL_STATE(2103)] = 68342, - [SMALL_STATE(2104)] = 68357, - [SMALL_STATE(2105)] = 68374, - [SMALL_STATE(2106)] = 68391, - [SMALL_STATE(2107)] = 68408, - [SMALL_STATE(2108)] = 68425, - [SMALL_STATE(2109)] = 68444, - [SMALL_STATE(2110)] = 68461, - [SMALL_STATE(2111)] = 68478, - [SMALL_STATE(2112)] = 68495, - [SMALL_STATE(2113)] = 68510, - [SMALL_STATE(2114)] = 68527, - [SMALL_STATE(2115)] = 68544, - [SMALL_STATE(2116)] = 68561, - [SMALL_STATE(2117)] = 68580, - [SMALL_STATE(2118)] = 68597, - [SMALL_STATE(2119)] = 68616, - [SMALL_STATE(2120)] = 68633, - [SMALL_STATE(2121)] = 68648, - [SMALL_STATE(2122)] = 68667, - [SMALL_STATE(2123)] = 68684, - [SMALL_STATE(2124)] = 68703, - [SMALL_STATE(2125)] = 68718, - [SMALL_STATE(2126)] = 68733, - [SMALL_STATE(2127)] = 68750, - [SMALL_STATE(2128)] = 68769, - [SMALL_STATE(2129)] = 68786, - [SMALL_STATE(2130)] = 68803, - [SMALL_STATE(2131)] = 68822, - [SMALL_STATE(2132)] = 68839, - [SMALL_STATE(2133)] = 68854, - [SMALL_STATE(2134)] = 68873, - [SMALL_STATE(2135)] = 68892, - [SMALL_STATE(2136)] = 68911, - [SMALL_STATE(2137)] = 68926, - [SMALL_STATE(2138)] = 68945, - [SMALL_STATE(2139)] = 68960, - [SMALL_STATE(2140)] = 68975, - [SMALL_STATE(2141)] = 68994, - [SMALL_STATE(2142)] = 69011, - [SMALL_STATE(2143)] = 69030, - [SMALL_STATE(2144)] = 69045, - [SMALL_STATE(2145)] = 69060, - [SMALL_STATE(2146)] = 69077, - [SMALL_STATE(2147)] = 69094, - [SMALL_STATE(2148)] = 69113, - [SMALL_STATE(2149)] = 69130, - [SMALL_STATE(2150)] = 69146, - [SMALL_STATE(2151)] = 69162, - [SMALL_STATE(2152)] = 69176, - [SMALL_STATE(2153)] = 69190, - [SMALL_STATE(2154)] = 69206, - [SMALL_STATE(2155)] = 69220, - [SMALL_STATE(2156)] = 69236, - [SMALL_STATE(2157)] = 69250, - [SMALL_STATE(2158)] = 69264, - [SMALL_STATE(2159)] = 69278, - [SMALL_STATE(2160)] = 69292, - [SMALL_STATE(2161)] = 69308, - [SMALL_STATE(2162)] = 69322, - [SMALL_STATE(2163)] = 69338, - [SMALL_STATE(2164)] = 69352, - [SMALL_STATE(2165)] = 69366, - [SMALL_STATE(2166)] = 69380, - [SMALL_STATE(2167)] = 69396, - [SMALL_STATE(2168)] = 69412, - [SMALL_STATE(2169)] = 69428, - [SMALL_STATE(2170)] = 69444, - [SMALL_STATE(2171)] = 69460, - [SMALL_STATE(2172)] = 69476, - [SMALL_STATE(2173)] = 69492, - [SMALL_STATE(2174)] = 69508, - [SMALL_STATE(2175)] = 69524, - [SMALL_STATE(2176)] = 69540, - [SMALL_STATE(2177)] = 69556, - [SMALL_STATE(2178)] = 69570, - [SMALL_STATE(2179)] = 69586, - [SMALL_STATE(2180)] = 69602, - [SMALL_STATE(2181)] = 69616, - [SMALL_STATE(2182)] = 69632, - [SMALL_STATE(2183)] = 69646, - [SMALL_STATE(2184)] = 69662, - [SMALL_STATE(2185)] = 69678, - [SMALL_STATE(2186)] = 69694, - [SMALL_STATE(2187)] = 69708, - [SMALL_STATE(2188)] = 69724, - [SMALL_STATE(2189)] = 69740, - [SMALL_STATE(2190)] = 69754, - [SMALL_STATE(2191)] = 69770, - [SMALL_STATE(2192)] = 69784, - [SMALL_STATE(2193)] = 69800, - [SMALL_STATE(2194)] = 69816, - [SMALL_STATE(2195)] = 69830, - [SMALL_STATE(2196)] = 69844, - [SMALL_STATE(2197)] = 69858, - [SMALL_STATE(2198)] = 69874, - [SMALL_STATE(2199)] = 69890, - [SMALL_STATE(2200)] = 69904, - [SMALL_STATE(2201)] = 69918, - [SMALL_STATE(2202)] = 69932, - [SMALL_STATE(2203)] = 69948, - [SMALL_STATE(2204)] = 69964, - [SMALL_STATE(2205)] = 69980, - [SMALL_STATE(2206)] = 69994, - [SMALL_STATE(2207)] = 70008, - [SMALL_STATE(2208)] = 70022, - [SMALL_STATE(2209)] = 70036, - [SMALL_STATE(2210)] = 70050, - [SMALL_STATE(2211)] = 70064, - [SMALL_STATE(2212)] = 70078, - [SMALL_STATE(2213)] = 70094, - [SMALL_STATE(2214)] = 70110, - [SMALL_STATE(2215)] = 70126, - [SMALL_STATE(2216)] = 70140, - [SMALL_STATE(2217)] = 70154, - [SMALL_STATE(2218)] = 70168, - [SMALL_STATE(2219)] = 70184, - [SMALL_STATE(2220)] = 70200, - [SMALL_STATE(2221)] = 70214, - [SMALL_STATE(2222)] = 70230, - [SMALL_STATE(2223)] = 70246, - [SMALL_STATE(2224)] = 70262, - [SMALL_STATE(2225)] = 70278, - [SMALL_STATE(2226)] = 70292, - [SMALL_STATE(2227)] = 70306, - [SMALL_STATE(2228)] = 70322, - [SMALL_STATE(2229)] = 70338, - [SMALL_STATE(2230)] = 70352, - [SMALL_STATE(2231)] = 70366, - [SMALL_STATE(2232)] = 70380, - [SMALL_STATE(2233)] = 70394, - [SMALL_STATE(2234)] = 70408, - [SMALL_STATE(2235)] = 70424, - [SMALL_STATE(2236)] = 70440, - [SMALL_STATE(2237)] = 70454, - [SMALL_STATE(2238)] = 70468, - [SMALL_STATE(2239)] = 70484, - [SMALL_STATE(2240)] = 70500, - [SMALL_STATE(2241)] = 70514, - [SMALL_STATE(2242)] = 70530, - [SMALL_STATE(2243)] = 70546, - [SMALL_STATE(2244)] = 70562, - [SMALL_STATE(2245)] = 70578, - [SMALL_STATE(2246)] = 70594, - [SMALL_STATE(2247)] = 70610, - [SMALL_STATE(2248)] = 70626, - [SMALL_STATE(2249)] = 70642, - [SMALL_STATE(2250)] = 70658, - [SMALL_STATE(2251)] = 70674, - [SMALL_STATE(2252)] = 70690, - [SMALL_STATE(2253)] = 70706, - [SMALL_STATE(2254)] = 70722, - [SMALL_STATE(2255)] = 70738, - [SMALL_STATE(2256)] = 70754, - [SMALL_STATE(2257)] = 70770, - [SMALL_STATE(2258)] = 70786, - [SMALL_STATE(2259)] = 70802, - [SMALL_STATE(2260)] = 70818, - [SMALL_STATE(2261)] = 70834, - [SMALL_STATE(2262)] = 70848, - [SMALL_STATE(2263)] = 70864, - [SMALL_STATE(2264)] = 70878, - [SMALL_STATE(2265)] = 70894, - [SMALL_STATE(2266)] = 70910, - [SMALL_STATE(2267)] = 70926, - [SMALL_STATE(2268)] = 70942, - [SMALL_STATE(2269)] = 70958, - [SMALL_STATE(2270)] = 70974, - [SMALL_STATE(2271)] = 70990, - [SMALL_STATE(2272)] = 71004, - [SMALL_STATE(2273)] = 71018, - [SMALL_STATE(2274)] = 71032, - [SMALL_STATE(2275)] = 71046, - [SMALL_STATE(2276)] = 71062, - [SMALL_STATE(2277)] = 71076, - [SMALL_STATE(2278)] = 71092, - [SMALL_STATE(2279)] = 71108, - [SMALL_STATE(2280)] = 71122, - [SMALL_STATE(2281)] = 71136, - [SMALL_STATE(2282)] = 71150, - [SMALL_STATE(2283)] = 71164, - [SMALL_STATE(2284)] = 71180, - [SMALL_STATE(2285)] = 71196, - [SMALL_STATE(2286)] = 71212, - [SMALL_STATE(2287)] = 71228, - [SMALL_STATE(2288)] = 71244, - [SMALL_STATE(2289)] = 71258, - [SMALL_STATE(2290)] = 71274, - [SMALL_STATE(2291)] = 71288, - [SMALL_STATE(2292)] = 71304, - [SMALL_STATE(2293)] = 71320, - [SMALL_STATE(2294)] = 71334, - [SMALL_STATE(2295)] = 71350, - [SMALL_STATE(2296)] = 71366, - [SMALL_STATE(2297)] = 71382, - [SMALL_STATE(2298)] = 71398, - [SMALL_STATE(2299)] = 71412, - [SMALL_STATE(2300)] = 71426, - [SMALL_STATE(2301)] = 71442, - [SMALL_STATE(2302)] = 71458, - [SMALL_STATE(2303)] = 71474, - [SMALL_STATE(2304)] = 71490, - [SMALL_STATE(2305)] = 71506, - [SMALL_STATE(2306)] = 71522, - [SMALL_STATE(2307)] = 71536, - [SMALL_STATE(2308)] = 71552, - [SMALL_STATE(2309)] = 71566, - [SMALL_STATE(2310)] = 71582, - [SMALL_STATE(2311)] = 71598, - [SMALL_STATE(2312)] = 71614, - [SMALL_STATE(2313)] = 71630, - [SMALL_STATE(2314)] = 71646, - [SMALL_STATE(2315)] = 71660, - [SMALL_STATE(2316)] = 71674, - [SMALL_STATE(2317)] = 71688, - [SMALL_STATE(2318)] = 71704, - [SMALL_STATE(2319)] = 71720, - [SMALL_STATE(2320)] = 71736, - [SMALL_STATE(2321)] = 71752, - [SMALL_STATE(2322)] = 71766, - [SMALL_STATE(2323)] = 71780, - [SMALL_STATE(2324)] = 71796, - [SMALL_STATE(2325)] = 71812, - [SMALL_STATE(2326)] = 71828, - [SMALL_STATE(2327)] = 71844, - [SMALL_STATE(2328)] = 71860, - [SMALL_STATE(2329)] = 71876, - [SMALL_STATE(2330)] = 71892, - [SMALL_STATE(2331)] = 71908, - [SMALL_STATE(2332)] = 71922, - [SMALL_STATE(2333)] = 71938, - [SMALL_STATE(2334)] = 71954, - [SMALL_STATE(2335)] = 71970, - [SMALL_STATE(2336)] = 71986, - [SMALL_STATE(2337)] = 72002, - [SMALL_STATE(2338)] = 72018, - [SMALL_STATE(2339)] = 72034, - [SMALL_STATE(2340)] = 72048, - [SMALL_STATE(2341)] = 72064, - [SMALL_STATE(2342)] = 72080, - [SMALL_STATE(2343)] = 72094, - [SMALL_STATE(2344)] = 72108, - [SMALL_STATE(2345)] = 72122, - [SMALL_STATE(2346)] = 72138, - [SMALL_STATE(2347)] = 72154, - [SMALL_STATE(2348)] = 72170, - [SMALL_STATE(2349)] = 72184, - [SMALL_STATE(2350)] = 72200, - [SMALL_STATE(2351)] = 72216, - [SMALL_STATE(2352)] = 72230, - [SMALL_STATE(2353)] = 72246, - [SMALL_STATE(2354)] = 72262, - [SMALL_STATE(2355)] = 72278, - [SMALL_STATE(2356)] = 72294, - [SMALL_STATE(2357)] = 72310, - [SMALL_STATE(2358)] = 72326, - [SMALL_STATE(2359)] = 72342, - [SMALL_STATE(2360)] = 72358, - [SMALL_STATE(2361)] = 72374, - [SMALL_STATE(2362)] = 72390, - [SMALL_STATE(2363)] = 72404, - [SMALL_STATE(2364)] = 72420, - [SMALL_STATE(2365)] = 72436, - [SMALL_STATE(2366)] = 72452, - [SMALL_STATE(2367)] = 72468, - [SMALL_STATE(2368)] = 72484, - [SMALL_STATE(2369)] = 72500, - [SMALL_STATE(2370)] = 72514, - [SMALL_STATE(2371)] = 72530, - [SMALL_STATE(2372)] = 72546, - [SMALL_STATE(2373)] = 72562, - [SMALL_STATE(2374)] = 72576, - [SMALL_STATE(2375)] = 72592, - [SMALL_STATE(2376)] = 72606, - [SMALL_STATE(2377)] = 72622, - [SMALL_STATE(2378)] = 72636, - [SMALL_STATE(2379)] = 72652, - [SMALL_STATE(2380)] = 72668, - [SMALL_STATE(2381)] = 72682, - [SMALL_STATE(2382)] = 72698, - [SMALL_STATE(2383)] = 72712, - [SMALL_STATE(2384)] = 72728, - [SMALL_STATE(2385)] = 72742, - [SMALL_STATE(2386)] = 72756, - [SMALL_STATE(2387)] = 72770, - [SMALL_STATE(2388)] = 72786, - [SMALL_STATE(2389)] = 72802, - [SMALL_STATE(2390)] = 72816, - [SMALL_STATE(2391)] = 72830, - [SMALL_STATE(2392)] = 72844, - [SMALL_STATE(2393)] = 72860, - [SMALL_STATE(2394)] = 72874, - [SMALL_STATE(2395)] = 72888, - [SMALL_STATE(2396)] = 72904, - [SMALL_STATE(2397)] = 72918, - [SMALL_STATE(2398)] = 72934, - [SMALL_STATE(2399)] = 72948, - [SMALL_STATE(2400)] = 72964, - [SMALL_STATE(2401)] = 72980, - [SMALL_STATE(2402)] = 72994, - [SMALL_STATE(2403)] = 73010, - [SMALL_STATE(2404)] = 73026, - [SMALL_STATE(2405)] = 73040, - [SMALL_STATE(2406)] = 73054, - [SMALL_STATE(2407)] = 73070, - [SMALL_STATE(2408)] = 73084, - [SMALL_STATE(2409)] = 73100, - [SMALL_STATE(2410)] = 73116, - [SMALL_STATE(2411)] = 73132, - [SMALL_STATE(2412)] = 73148, - [SMALL_STATE(2413)] = 73162, - [SMALL_STATE(2414)] = 73178, - [SMALL_STATE(2415)] = 73192, - [SMALL_STATE(2416)] = 73208, - [SMALL_STATE(2417)] = 73224, - [SMALL_STATE(2418)] = 73240, - [SMALL_STATE(2419)] = 73256, - [SMALL_STATE(2420)] = 73272, - [SMALL_STATE(2421)] = 73288, - [SMALL_STATE(2422)] = 73304, - [SMALL_STATE(2423)] = 73320, - [SMALL_STATE(2424)] = 73336, - [SMALL_STATE(2425)] = 73350, - [SMALL_STATE(2426)] = 73363, - [SMALL_STATE(2427)] = 73376, - [SMALL_STATE(2428)] = 73389, - [SMALL_STATE(2429)] = 73402, - [SMALL_STATE(2430)] = 73415, - [SMALL_STATE(2431)] = 73428, - [SMALL_STATE(2432)] = 73441, - [SMALL_STATE(2433)] = 73454, - [SMALL_STATE(2434)] = 73467, - [SMALL_STATE(2435)] = 73480, - [SMALL_STATE(2436)] = 73493, - [SMALL_STATE(2437)] = 73506, - [SMALL_STATE(2438)] = 73519, - [SMALL_STATE(2439)] = 73532, - [SMALL_STATE(2440)] = 73545, - [SMALL_STATE(2441)] = 73558, - [SMALL_STATE(2442)] = 73571, - [SMALL_STATE(2443)] = 73584, - [SMALL_STATE(2444)] = 73597, - [SMALL_STATE(2445)] = 73610, - [SMALL_STATE(2446)] = 73623, - [SMALL_STATE(2447)] = 73636, - [SMALL_STATE(2448)] = 73649, - [SMALL_STATE(2449)] = 73662, - [SMALL_STATE(2450)] = 73675, - [SMALL_STATE(2451)] = 73688, - [SMALL_STATE(2452)] = 73701, - [SMALL_STATE(2453)] = 73714, - [SMALL_STATE(2454)] = 73727, - [SMALL_STATE(2455)] = 73740, - [SMALL_STATE(2456)] = 73753, - [SMALL_STATE(2457)] = 73766, - [SMALL_STATE(2458)] = 73779, - [SMALL_STATE(2459)] = 73792, - [SMALL_STATE(2460)] = 73805, - [SMALL_STATE(2461)] = 73818, - [SMALL_STATE(2462)] = 73831, - [SMALL_STATE(2463)] = 73844, - [SMALL_STATE(2464)] = 73857, - [SMALL_STATE(2465)] = 73870, - [SMALL_STATE(2466)] = 73883, - [SMALL_STATE(2467)] = 73896, - [SMALL_STATE(2468)] = 73909, - [SMALL_STATE(2469)] = 73922, - [SMALL_STATE(2470)] = 73935, - [SMALL_STATE(2471)] = 73948, - [SMALL_STATE(2472)] = 73961, - [SMALL_STATE(2473)] = 73974, - [SMALL_STATE(2474)] = 73987, - [SMALL_STATE(2475)] = 74000, - [SMALL_STATE(2476)] = 74013, - [SMALL_STATE(2477)] = 74026, - [SMALL_STATE(2478)] = 74039, - [SMALL_STATE(2479)] = 74052, - [SMALL_STATE(2480)] = 74065, - [SMALL_STATE(2481)] = 74078, - [SMALL_STATE(2482)] = 74091, - [SMALL_STATE(2483)] = 74104, - [SMALL_STATE(2484)] = 74117, - [SMALL_STATE(2485)] = 74130, - [SMALL_STATE(2486)] = 74143, - [SMALL_STATE(2487)] = 74156, - [SMALL_STATE(2488)] = 74169, - [SMALL_STATE(2489)] = 74182, - [SMALL_STATE(2490)] = 74195, - [SMALL_STATE(2491)] = 74208, - [SMALL_STATE(2492)] = 74221, - [SMALL_STATE(2493)] = 74234, - [SMALL_STATE(2494)] = 74247, - [SMALL_STATE(2495)] = 74260, - [SMALL_STATE(2496)] = 74273, - [SMALL_STATE(2497)] = 74286, - [SMALL_STATE(2498)] = 74299, - [SMALL_STATE(2499)] = 74312, - [SMALL_STATE(2500)] = 74325, - [SMALL_STATE(2501)] = 74338, - [SMALL_STATE(2502)] = 74351, - [SMALL_STATE(2503)] = 74364, - [SMALL_STATE(2504)] = 74377, - [SMALL_STATE(2505)] = 74390, - [SMALL_STATE(2506)] = 74403, - [SMALL_STATE(2507)] = 74416, - [SMALL_STATE(2508)] = 74429, - [SMALL_STATE(2509)] = 74442, - [SMALL_STATE(2510)] = 74455, - [SMALL_STATE(2511)] = 74468, - [SMALL_STATE(2512)] = 74481, - [SMALL_STATE(2513)] = 74494, - [SMALL_STATE(2514)] = 74507, - [SMALL_STATE(2515)] = 74520, - [SMALL_STATE(2516)] = 74533, - [SMALL_STATE(2517)] = 74546, - [SMALL_STATE(2518)] = 74559, - [SMALL_STATE(2519)] = 74572, - [SMALL_STATE(2520)] = 74585, - [SMALL_STATE(2521)] = 74598, - [SMALL_STATE(2522)] = 74611, - [SMALL_STATE(2523)] = 74624, - [SMALL_STATE(2524)] = 74637, - [SMALL_STATE(2525)] = 74650, - [SMALL_STATE(2526)] = 74663, - [SMALL_STATE(2527)] = 74676, - [SMALL_STATE(2528)] = 74689, - [SMALL_STATE(2529)] = 74702, - [SMALL_STATE(2530)] = 74715, - [SMALL_STATE(2531)] = 74728, - [SMALL_STATE(2532)] = 74741, - [SMALL_STATE(2533)] = 74754, - [SMALL_STATE(2534)] = 74767, - [SMALL_STATE(2535)] = 74780, - [SMALL_STATE(2536)] = 74793, - [SMALL_STATE(2537)] = 74806, - [SMALL_STATE(2538)] = 74819, - [SMALL_STATE(2539)] = 74832, - [SMALL_STATE(2540)] = 74845, - [SMALL_STATE(2541)] = 74858, - [SMALL_STATE(2542)] = 74871, - [SMALL_STATE(2543)] = 74884, - [SMALL_STATE(2544)] = 74897, - [SMALL_STATE(2545)] = 74910, - [SMALL_STATE(2546)] = 74923, - [SMALL_STATE(2547)] = 74936, - [SMALL_STATE(2548)] = 74949, - [SMALL_STATE(2549)] = 74962, - [SMALL_STATE(2550)] = 74975, - [SMALL_STATE(2551)] = 74988, - [SMALL_STATE(2552)] = 75001, - [SMALL_STATE(2553)] = 75014, - [SMALL_STATE(2554)] = 75027, - [SMALL_STATE(2555)] = 75040, - [SMALL_STATE(2556)] = 75053, - [SMALL_STATE(2557)] = 75066, - [SMALL_STATE(2558)] = 75079, - [SMALL_STATE(2559)] = 75092, - [SMALL_STATE(2560)] = 75105, - [SMALL_STATE(2561)] = 75118, - [SMALL_STATE(2562)] = 75131, - [SMALL_STATE(2563)] = 75144, - [SMALL_STATE(2564)] = 75157, - [SMALL_STATE(2565)] = 75170, - [SMALL_STATE(2566)] = 75183, - [SMALL_STATE(2567)] = 75196, - [SMALL_STATE(2568)] = 75209, - [SMALL_STATE(2569)] = 75222, - [SMALL_STATE(2570)] = 75235, - [SMALL_STATE(2571)] = 75248, - [SMALL_STATE(2572)] = 75261, - [SMALL_STATE(2573)] = 75274, - [SMALL_STATE(2574)] = 75287, - [SMALL_STATE(2575)] = 75300, - [SMALL_STATE(2576)] = 75313, - [SMALL_STATE(2577)] = 75326, - [SMALL_STATE(2578)] = 75339, - [SMALL_STATE(2579)] = 75352, - [SMALL_STATE(2580)] = 75365, - [SMALL_STATE(2581)] = 75378, - [SMALL_STATE(2582)] = 75391, - [SMALL_STATE(2583)] = 75404, - [SMALL_STATE(2584)] = 75417, - [SMALL_STATE(2585)] = 75430, - [SMALL_STATE(2586)] = 75443, - [SMALL_STATE(2587)] = 75456, - [SMALL_STATE(2588)] = 75469, - [SMALL_STATE(2589)] = 75482, - [SMALL_STATE(2590)] = 75495, - [SMALL_STATE(2591)] = 75508, - [SMALL_STATE(2592)] = 75521, - [SMALL_STATE(2593)] = 75534, - [SMALL_STATE(2594)] = 75547, - [SMALL_STATE(2595)] = 75560, - [SMALL_STATE(2596)] = 75573, - [SMALL_STATE(2597)] = 75586, - [SMALL_STATE(2598)] = 75599, - [SMALL_STATE(2599)] = 75612, - [SMALL_STATE(2600)] = 75625, - [SMALL_STATE(2601)] = 75638, - [SMALL_STATE(2602)] = 75651, - [SMALL_STATE(2603)] = 75664, - [SMALL_STATE(2604)] = 75677, - [SMALL_STATE(2605)] = 75690, - [SMALL_STATE(2606)] = 75703, - [SMALL_STATE(2607)] = 75716, - [SMALL_STATE(2608)] = 75729, - [SMALL_STATE(2609)] = 75742, - [SMALL_STATE(2610)] = 75755, - [SMALL_STATE(2611)] = 75768, - [SMALL_STATE(2612)] = 75781, - [SMALL_STATE(2613)] = 75794, - [SMALL_STATE(2614)] = 75807, - [SMALL_STATE(2615)] = 75820, - [SMALL_STATE(2616)] = 75833, - [SMALL_STATE(2617)] = 75846, - [SMALL_STATE(2618)] = 75859, - [SMALL_STATE(2619)] = 75872, - [SMALL_STATE(2620)] = 75885, - [SMALL_STATE(2621)] = 75898, - [SMALL_STATE(2622)] = 75911, - [SMALL_STATE(2623)] = 75924, - [SMALL_STATE(2624)] = 75937, - [SMALL_STATE(2625)] = 75950, - [SMALL_STATE(2626)] = 75963, - [SMALL_STATE(2627)] = 75976, - [SMALL_STATE(2628)] = 75989, - [SMALL_STATE(2629)] = 76002, - [SMALL_STATE(2630)] = 76015, - [SMALL_STATE(2631)] = 76028, - [SMALL_STATE(2632)] = 76041, - [SMALL_STATE(2633)] = 76054, - [SMALL_STATE(2634)] = 76067, - [SMALL_STATE(2635)] = 76080, - [SMALL_STATE(2636)] = 76093, - [SMALL_STATE(2637)] = 76106, - [SMALL_STATE(2638)] = 76119, - [SMALL_STATE(2639)] = 76132, - [SMALL_STATE(2640)] = 76145, - [SMALL_STATE(2641)] = 76158, - [SMALL_STATE(2642)] = 76171, - [SMALL_STATE(2643)] = 76184, - [SMALL_STATE(2644)] = 76197, - [SMALL_STATE(2645)] = 76210, - [SMALL_STATE(2646)] = 76223, - [SMALL_STATE(2647)] = 76236, - [SMALL_STATE(2648)] = 76249, - [SMALL_STATE(2649)] = 76262, - [SMALL_STATE(2650)] = 76275, - [SMALL_STATE(2651)] = 76288, - [SMALL_STATE(2652)] = 76301, - [SMALL_STATE(2653)] = 76305, + [SMALL_STATE(1175)] = 38799, + [SMALL_STATE(1176)] = 38890, + [SMALL_STATE(1177)] = 38981, + [SMALL_STATE(1178)] = 39070, + [SMALL_STATE(1179)] = 39151, + [SMALL_STATE(1180)] = 39242, + [SMALL_STATE(1181)] = 39325, + [SMALL_STATE(1182)] = 39404, + [SMALL_STATE(1183)] = 39485, + [SMALL_STATE(1184)] = 39558, + [SMALL_STATE(1185)] = 39631, + [SMALL_STATE(1186)] = 39712, + [SMALL_STATE(1187)] = 39791, + [SMALL_STATE(1188)] = 39882, + [SMALL_STATE(1189)] = 39963, + [SMALL_STATE(1190)] = 40054, + [SMALL_STATE(1191)] = 40135, + [SMALL_STATE(1192)] = 40226, + [SMALL_STATE(1193)] = 40317, + [SMALL_STATE(1194)] = 40408, + [SMALL_STATE(1195)] = 40486, + [SMALL_STATE(1196)] = 40566, + [SMALL_STATE(1197)] = 40644, + [SMALL_STATE(1198)] = 40724, + [SMALL_STATE(1199)] = 40802, + [SMALL_STATE(1200)] = 40880, + [SMALL_STATE(1201)] = 40958, + [SMALL_STATE(1202)] = 41008, + [SMALL_STATE(1203)] = 41088, + [SMALL_STATE(1204)] = 41166, + [SMALL_STATE(1205)] = 41246, + [SMALL_STATE(1206)] = 41324, + [SMALL_STATE(1207)] = 41402, + [SMALL_STATE(1208)] = 41480, + [SMALL_STATE(1209)] = 41558, + [SMALL_STATE(1210)] = 41636, + [SMALL_STATE(1211)] = 41714, + [SMALL_STATE(1212)] = 41792, + [SMALL_STATE(1213)] = 41870, + [SMALL_STATE(1214)] = 41948, + [SMALL_STATE(1215)] = 42026, + [SMALL_STATE(1216)] = 42106, + [SMALL_STATE(1217)] = 42184, + [SMALL_STATE(1218)] = 42262, + [SMALL_STATE(1219)] = 42342, + [SMALL_STATE(1220)] = 42420, + [SMALL_STATE(1221)] = 42498, + [SMALL_STATE(1222)] = 42576, + [SMALL_STATE(1223)] = 42654, + [SMALL_STATE(1224)] = 42732, + [SMALL_STATE(1225)] = 42810, + [SMALL_STATE(1226)] = 42888, + [SMALL_STATE(1227)] = 42966, + [SMALL_STATE(1228)] = 43044, + [SMALL_STATE(1229)] = 43122, + [SMALL_STATE(1230)] = 43202, + [SMALL_STATE(1231)] = 43252, + [SMALL_STATE(1232)] = 43330, + [SMALL_STATE(1233)] = 43408, + [SMALL_STATE(1234)] = 43486, + [SMALL_STATE(1235)] = 43564, + [SMALL_STATE(1236)] = 43644, + [SMALL_STATE(1237)] = 43721, + [SMALL_STATE(1238)] = 43798, + [SMALL_STATE(1239)] = 43865, + [SMALL_STATE(1240)] = 43942, + [SMALL_STATE(1241)] = 44019, + [SMALL_STATE(1242)] = 44096, + [SMALL_STATE(1243)] = 44173, + [SMALL_STATE(1244)] = 44250, + [SMALL_STATE(1245)] = 44327, + [SMALL_STATE(1246)] = 44404, + [SMALL_STATE(1247)] = 44481, + [SMALL_STATE(1248)] = 44562, + [SMALL_STATE(1249)] = 44639, + [SMALL_STATE(1250)] = 44716, + [SMALL_STATE(1251)] = 44793, + [SMALL_STATE(1252)] = 44870, + [SMALL_STATE(1253)] = 44947, + [SMALL_STATE(1254)] = 45024, + [SMALL_STATE(1255)] = 45101, + [SMALL_STATE(1256)] = 45178, + [SMALL_STATE(1257)] = 45255, + [SMALL_STATE(1258)] = 45332, + [SMALL_STATE(1259)] = 45409, + [SMALL_STATE(1260)] = 45486, + [SMALL_STATE(1261)] = 45563, + [SMALL_STATE(1262)] = 45640, + [SMALL_STATE(1263)] = 45717, + [SMALL_STATE(1264)] = 45794, + [SMALL_STATE(1265)] = 45871, + [SMALL_STATE(1266)] = 45948, + [SMALL_STATE(1267)] = 46025, + [SMALL_STATE(1268)] = 46102, + [SMALL_STATE(1269)] = 46179, + [SMALL_STATE(1270)] = 46246, + [SMALL_STATE(1271)] = 46323, + [SMALL_STATE(1272)] = 46400, + [SMALL_STATE(1273)] = 46477, + [SMALL_STATE(1274)] = 46554, + [SMALL_STATE(1275)] = 46597, + [SMALL_STATE(1276)] = 46674, + [SMALL_STATE(1277)] = 46751, + [SMALL_STATE(1278)] = 46832, + [SMALL_STATE(1279)] = 46909, + [SMALL_STATE(1280)] = 46986, + [SMALL_STATE(1281)] = 47063, + [SMALL_STATE(1282)] = 47140, + [SMALL_STATE(1283)] = 47217, + [SMALL_STATE(1284)] = 47296, + [SMALL_STATE(1285)] = 47373, + [SMALL_STATE(1286)] = 47450, + [SMALL_STATE(1287)] = 47527, + [SMALL_STATE(1288)] = 47604, + [SMALL_STATE(1289)] = 47681, + [SMALL_STATE(1290)] = 47758, + [SMALL_STATE(1291)] = 47835, + [SMALL_STATE(1292)] = 47912, + [SMALL_STATE(1293)] = 47989, + [SMALL_STATE(1294)] = 48066, + [SMALL_STATE(1295)] = 48143, + [SMALL_STATE(1296)] = 48220, + [SMALL_STATE(1297)] = 48297, + [SMALL_STATE(1298)] = 48374, + [SMALL_STATE(1299)] = 48451, + [SMALL_STATE(1300)] = 48528, + [SMALL_STATE(1301)] = 48605, + [SMALL_STATE(1302)] = 48682, + [SMALL_STATE(1303)] = 48759, + [SMALL_STATE(1304)] = 48836, + [SMALL_STATE(1305)] = 48913, + [SMALL_STATE(1306)] = 48994, + [SMALL_STATE(1307)] = 49075, + [SMALL_STATE(1308)] = 49152, + [SMALL_STATE(1309)] = 49229, + [SMALL_STATE(1310)] = 49271, + [SMALL_STATE(1311)] = 49335, + [SMALL_STATE(1312)] = 49399, + [SMALL_STATE(1313)] = 49441, + [SMALL_STATE(1314)] = 49485, + [SMALL_STATE(1315)] = 49526, + [SMALL_STATE(1316)] = 49567, + [SMALL_STATE(1317)] = 49608, + [SMALL_STATE(1318)] = 49649, + [SMALL_STATE(1319)] = 49693, + [SMALL_STATE(1320)] = 49739, + [SMALL_STATE(1321)] = 49793, + [SMALL_STATE(1322)] = 49847, + [SMALL_STATE(1323)] = 49901, + [SMALL_STATE(1324)] = 49955, + [SMALL_STATE(1325)] = 49993, + [SMALL_STATE(1326)] = 50031, + [SMALL_STATE(1327)] = 50069, + [SMALL_STATE(1328)] = 50123, + [SMALL_STATE(1329)] = 50177, + [SMALL_STATE(1330)] = 50215, + [SMALL_STATE(1331)] = 50262, + [SMALL_STATE(1332)] = 50309, + [SMALL_STATE(1333)] = 50356, + [SMALL_STATE(1334)] = 50390, + [SMALL_STATE(1335)] = 50449, + [SMALL_STATE(1336)] = 50482, + [SMALL_STATE(1337)] = 50534, + [SMALL_STATE(1338)] = 50588, + [SMALL_STATE(1339)] = 50640, + [SMALL_STATE(1340)] = 50673, + [SMALL_STATE(1341)] = 50722, + [SMALL_STATE(1342)] = 50771, + [SMALL_STATE(1343)] = 50806, + [SMALL_STATE(1344)] = 50857, + [SMALL_STATE(1345)] = 50908, + [SMALL_STATE(1346)] = 50959, + [SMALL_STATE(1347)] = 51008, + [SMALL_STATE(1348)] = 51052, + [SMALL_STATE(1349)] = 51082, + [SMALL_STATE(1350)] = 51109, + [SMALL_STATE(1351)] = 51136, + [SMALL_STATE(1352)] = 51181, + [SMALL_STATE(1353)] = 51208, + [SMALL_STATE(1354)] = 51235, + [SMALL_STATE(1355)] = 51261, + [SMALL_STATE(1356)] = 51299, + [SMALL_STATE(1357)] = 51325, + [SMALL_STATE(1358)] = 51351, + [SMALL_STATE(1359)] = 51395, + [SMALL_STATE(1360)] = 51421, + [SMALL_STATE(1361)] = 51447, + [SMALL_STATE(1362)] = 51473, + [SMALL_STATE(1363)] = 51499, + [SMALL_STATE(1364)] = 51525, + [SMALL_STATE(1365)] = 51551, + [SMALL_STATE(1366)] = 51597, + [SMALL_STATE(1367)] = 51643, + [SMALL_STATE(1368)] = 51669, + [SMALL_STATE(1369)] = 51695, + [SMALL_STATE(1370)] = 51721, + [SMALL_STATE(1371)] = 51747, + [SMALL_STATE(1372)] = 51773, + [SMALL_STATE(1373)] = 51799, + [SMALL_STATE(1374)] = 51825, + [SMALL_STATE(1375)] = 51851, + [SMALL_STATE(1376)] = 51897, + [SMALL_STATE(1377)] = 51923, + [SMALL_STATE(1378)] = 51969, + [SMALL_STATE(1379)] = 52016, + [SMALL_STATE(1380)] = 52043, + [SMALL_STATE(1381)] = 52068, + [SMALL_STATE(1382)] = 52109, + [SMALL_STATE(1383)] = 52134, + [SMALL_STATE(1384)] = 52167, + [SMALL_STATE(1385)] = 52192, + [SMALL_STATE(1386)] = 52217, + [SMALL_STATE(1387)] = 52242, + [SMALL_STATE(1388)] = 52267, + [SMALL_STATE(1389)] = 52292, + [SMALL_STATE(1390)] = 52317, + [SMALL_STATE(1391)] = 52342, + [SMALL_STATE(1392)] = 52383, + [SMALL_STATE(1393)] = 52408, + [SMALL_STATE(1394)] = 52433, + [SMALL_STATE(1395)] = 52476, + [SMALL_STATE(1396)] = 52501, + [SMALL_STATE(1397)] = 52526, + [SMALL_STATE(1398)] = 52551, + [SMALL_STATE(1399)] = 52594, + [SMALL_STATE(1400)] = 52619, + [SMALL_STATE(1401)] = 52644, + [SMALL_STATE(1402)] = 52669, + [SMALL_STATE(1403)] = 52716, + [SMALL_STATE(1404)] = 52741, + [SMALL_STATE(1405)] = 52766, + [SMALL_STATE(1406)] = 52807, + [SMALL_STATE(1407)] = 52850, + [SMALL_STATE(1408)] = 52875, + [SMALL_STATE(1409)] = 52900, + [SMALL_STATE(1410)] = 52943, + [SMALL_STATE(1411)] = 52968, + [SMALL_STATE(1412)] = 52993, + [SMALL_STATE(1413)] = 53018, + [SMALL_STATE(1414)] = 53058, + [SMALL_STATE(1415)] = 53098, + [SMALL_STATE(1416)] = 53138, + [SMALL_STATE(1417)] = 53178, + [SMALL_STATE(1418)] = 53215, + [SMALL_STATE(1419)] = 53252, + [SMALL_STATE(1420)] = 53289, + [SMALL_STATE(1421)] = 53326, + [SMALL_STATE(1422)] = 53361, + [SMALL_STATE(1423)] = 53398, + [SMALL_STATE(1424)] = 53435, + [SMALL_STATE(1425)] = 53470, + [SMALL_STATE(1426)] = 53505, + [SMALL_STATE(1427)] = 53529, + [SMALL_STATE(1428)] = 53553, + [SMALL_STATE(1429)] = 53577, + [SMALL_STATE(1430)] = 53601, + [SMALL_STATE(1431)] = 53625, + [SMALL_STATE(1432)] = 53659, + [SMALL_STATE(1433)] = 53683, + [SMALL_STATE(1434)] = 53707, + [SMALL_STATE(1435)] = 53741, + [SMALL_STATE(1436)] = 53775, + [SMALL_STATE(1437)] = 53803, + [SMALL_STATE(1438)] = 53835, + [SMALL_STATE(1439)] = 53867, + [SMALL_STATE(1440)] = 53891, + [SMALL_STATE(1441)] = 53921, + [SMALL_STATE(1442)] = 53955, + [SMALL_STATE(1443)] = 53979, + [SMALL_STATE(1444)] = 54003, + [SMALL_STATE(1445)] = 54035, + [SMALL_STATE(1446)] = 54063, + [SMALL_STATE(1447)] = 54091, + [SMALL_STATE(1448)] = 54125, + [SMALL_STATE(1449)] = 54149, + [SMALL_STATE(1450)] = 54173, + [SMALL_STATE(1451)] = 54202, + [SMALL_STATE(1452)] = 54223, + [SMALL_STATE(1453)] = 54244, + [SMALL_STATE(1454)] = 54269, + [SMALL_STATE(1455)] = 54298, + [SMALL_STATE(1456)] = 54327, + [SMALL_STATE(1457)] = 54354, + [SMALL_STATE(1458)] = 54383, + [SMALL_STATE(1459)] = 54414, + [SMALL_STATE(1460)] = 54443, + [SMALL_STATE(1461)] = 54464, + [SMALL_STATE(1462)] = 54495, + [SMALL_STATE(1463)] = 54524, + [SMALL_STATE(1464)] = 54553, + [SMALL_STATE(1465)] = 54582, + [SMALL_STATE(1466)] = 54611, + [SMALL_STATE(1467)] = 54640, + [SMALL_STATE(1468)] = 54669, + [SMALL_STATE(1469)] = 54700, + [SMALL_STATE(1470)] = 54721, + [SMALL_STATE(1471)] = 54750, + [SMALL_STATE(1472)] = 54781, + [SMALL_STATE(1473)] = 54812, + [SMALL_STATE(1474)] = 54839, + [SMALL_STATE(1475)] = 54866, + [SMALL_STATE(1476)] = 54895, + [SMALL_STATE(1477)] = 54926, + [SMALL_STATE(1478)] = 54955, + [SMALL_STATE(1479)] = 54976, + [SMALL_STATE(1480)] = 55005, + [SMALL_STATE(1481)] = 55026, + [SMALL_STATE(1482)] = 55059, + [SMALL_STATE(1483)] = 55088, + [SMALL_STATE(1484)] = 55117, + [SMALL_STATE(1485)] = 55138, + [SMALL_STATE(1486)] = 55169, + [SMALL_STATE(1487)] = 55198, + [SMALL_STATE(1488)] = 55229, + [SMALL_STATE(1489)] = 55260, + [SMALL_STATE(1490)] = 55289, + [SMALL_STATE(1491)] = 55320, + [SMALL_STATE(1492)] = 55347, + [SMALL_STATE(1493)] = 55374, + [SMALL_STATE(1494)] = 55405, + [SMALL_STATE(1495)] = 55432, + [SMALL_STATE(1496)] = 55463, + [SMALL_STATE(1497)] = 55492, + [SMALL_STATE(1498)] = 55521, + [SMALL_STATE(1499)] = 55548, + [SMALL_STATE(1500)] = 55577, + [SMALL_STATE(1501)] = 55606, + [SMALL_STATE(1502)] = 55635, + [SMALL_STATE(1503)] = 55664, + [SMALL_STATE(1504)] = 55695, + [SMALL_STATE(1505)] = 55728, + [SMALL_STATE(1506)] = 55751, + [SMALL_STATE(1507)] = 55780, + [SMALL_STATE(1508)] = 55809, + [SMALL_STATE(1509)] = 55838, + [SMALL_STATE(1510)] = 55872, + [SMALL_STATE(1511)] = 55906, + [SMALL_STATE(1512)] = 55932, + [SMALL_STATE(1513)] = 55966, + [SMALL_STATE(1514)] = 56000, + [SMALL_STATE(1515)] = 56028, + [SMALL_STATE(1516)] = 56060, + [SMALL_STATE(1517)] = 56086, + [SMALL_STATE(1518)] = 56120, + [SMALL_STATE(1519)] = 56150, + [SMALL_STATE(1520)] = 56184, + [SMALL_STATE(1521)] = 56210, + [SMALL_STATE(1522)] = 56236, + [SMALL_STATE(1523)] = 56259, + [SMALL_STATE(1524)] = 56280, + [SMALL_STATE(1525)] = 56301, + [SMALL_STATE(1526)] = 56322, + [SMALL_STATE(1527)] = 56343, + [SMALL_STATE(1528)] = 56364, + [SMALL_STATE(1529)] = 56389, + [SMALL_STATE(1530)] = 56412, + [SMALL_STATE(1531)] = 56439, + [SMALL_STATE(1532)] = 56462, + [SMALL_STATE(1533)] = 56483, + [SMALL_STATE(1534)] = 56506, + [SMALL_STATE(1535)] = 56527, + [SMALL_STATE(1536)] = 56554, + [SMALL_STATE(1537)] = 56575, + [SMALL_STATE(1538)] = 56596, + [SMALL_STATE(1539)] = 56617, + [SMALL_STATE(1540)] = 56644, + [SMALL_STATE(1541)] = 56667, + [SMALL_STATE(1542)] = 56688, + [SMALL_STATE(1543)] = 56715, + [SMALL_STATE(1544)] = 56738, + [SMALL_STATE(1545)] = 56769, + [SMALL_STATE(1546)] = 56792, + [SMALL_STATE(1547)] = 56819, + [SMALL_STATE(1548)] = 56846, + [SMALL_STATE(1549)] = 56873, + [SMALL_STATE(1550)] = 56894, + [SMALL_STATE(1551)] = 56917, + [SMALL_STATE(1552)] = 56940, + [SMALL_STATE(1553)] = 56963, + [SMALL_STATE(1554)] = 56984, + [SMALL_STATE(1555)] = 57007, + [SMALL_STATE(1556)] = 57030, + [SMALL_STATE(1557)] = 57053, + [SMALL_STATE(1558)] = 57074, + [SMALL_STATE(1559)] = 57097, + [SMALL_STATE(1560)] = 57120, + [SMALL_STATE(1561)] = 57143, + [SMALL_STATE(1562)] = 57164, + [SMALL_STATE(1563)] = 57191, + [SMALL_STATE(1564)] = 57214, + [SMALL_STATE(1565)] = 57237, + [SMALL_STATE(1566)] = 57264, + [SMALL_STATE(1567)] = 57283, + [SMALL_STATE(1568)] = 57309, + [SMALL_STATE(1569)] = 57337, + [SMALL_STATE(1570)] = 57365, + [SMALL_STATE(1571)] = 57385, + [SMALL_STATE(1572)] = 57411, + [SMALL_STATE(1573)] = 57439, + [SMALL_STATE(1574)] = 57467, + [SMALL_STATE(1575)] = 57495, + [SMALL_STATE(1576)] = 57523, + [SMALL_STATE(1577)] = 57551, + [SMALL_STATE(1578)] = 57579, + [SMALL_STATE(1579)] = 57597, + [SMALL_STATE(1580)] = 57617, + [SMALL_STATE(1581)] = 57645, + [SMALL_STATE(1582)] = 57673, + [SMALL_STATE(1583)] = 57695, + [SMALL_STATE(1584)] = 57723, + [SMALL_STATE(1585)] = 57751, + [SMALL_STATE(1586)] = 57777, + [SMALL_STATE(1587)] = 57803, + [SMALL_STATE(1588)] = 57829, + [SMALL_STATE(1589)] = 57855, + [SMALL_STATE(1590)] = 57883, + [SMALL_STATE(1591)] = 57907, + [SMALL_STATE(1592)] = 57935, + [SMALL_STATE(1593)] = 57963, + [SMALL_STATE(1594)] = 57983, + [SMALL_STATE(1595)] = 58009, + [SMALL_STATE(1596)] = 58029, + [SMALL_STATE(1597)] = 58049, + [SMALL_STATE(1598)] = 58075, + [SMALL_STATE(1599)] = 58101, + [SMALL_STATE(1600)] = 58121, + [SMALL_STATE(1601)] = 58149, + [SMALL_STATE(1602)] = 58173, + [SMALL_STATE(1603)] = 58201, + [SMALL_STATE(1604)] = 58229, + [SMALL_STATE(1605)] = 58253, + [SMALL_STATE(1606)] = 58281, + [SMALL_STATE(1607)] = 58309, + [SMALL_STATE(1608)] = 58337, + [SMALL_STATE(1609)] = 58365, + [SMALL_STATE(1610)] = 58385, + [SMALL_STATE(1611)] = 58411, + [SMALL_STATE(1612)] = 58439, + [SMALL_STATE(1613)] = 58465, + [SMALL_STATE(1614)] = 58491, + [SMALL_STATE(1615)] = 58519, + [SMALL_STATE(1616)] = 58547, + [SMALL_STATE(1617)] = 58571, + [SMALL_STATE(1618)] = 58599, + [SMALL_STATE(1619)] = 58623, + [SMALL_STATE(1620)] = 58651, + [SMALL_STATE(1621)] = 58679, + [SMALL_STATE(1622)] = 58697, + [SMALL_STATE(1623)] = 58717, + [SMALL_STATE(1624)] = 58743, + [SMALL_STATE(1625)] = 58771, + [SMALL_STATE(1626)] = 58789, + [SMALL_STATE(1627)] = 58817, + [SMALL_STATE(1628)] = 58845, + [SMALL_STATE(1629)] = 58873, + [SMALL_STATE(1630)] = 58891, + [SMALL_STATE(1631)] = 58919, + [SMALL_STATE(1632)] = 58947, + [SMALL_STATE(1633)] = 58975, + [SMALL_STATE(1634)] = 58995, + [SMALL_STATE(1635)] = 59021, + [SMALL_STATE(1636)] = 59041, + [SMALL_STATE(1637)] = 59069, + [SMALL_STATE(1638)] = 59093, + [SMALL_STATE(1639)] = 59121, + [SMALL_STATE(1640)] = 59149, + [SMALL_STATE(1641)] = 59177, + [SMALL_STATE(1642)] = 59205, + [SMALL_STATE(1643)] = 59229, + [SMALL_STATE(1644)] = 59254, + [SMALL_STATE(1645)] = 59275, + [SMALL_STATE(1646)] = 59296, + [SMALL_STATE(1647)] = 59317, + [SMALL_STATE(1648)] = 59342, + [SMALL_STATE(1649)] = 59367, + [SMALL_STATE(1650)] = 59388, + [SMALL_STATE(1651)] = 59409, + [SMALL_STATE(1652)] = 59432, + [SMALL_STATE(1653)] = 59457, + [SMALL_STATE(1654)] = 59478, + [SMALL_STATE(1655)] = 59501, + [SMALL_STATE(1656)] = 59524, + [SMALL_STATE(1657)] = 59549, + [SMALL_STATE(1658)] = 59572, + [SMALL_STATE(1659)] = 59593, + [SMALL_STATE(1660)] = 59616, + [SMALL_STATE(1661)] = 59635, + [SMALL_STATE(1662)] = 59660, + [SMALL_STATE(1663)] = 59677, + [SMALL_STATE(1664)] = 59698, + [SMALL_STATE(1665)] = 59719, + [SMALL_STATE(1666)] = 59742, + [SMALL_STATE(1667)] = 59761, + [SMALL_STATE(1668)] = 59786, + [SMALL_STATE(1669)] = 59809, + [SMALL_STATE(1670)] = 59834, + [SMALL_STATE(1671)] = 59857, + [SMALL_STATE(1672)] = 59878, + [SMALL_STATE(1673)] = 59903, + [SMALL_STATE(1674)] = 59926, + [SMALL_STATE(1675)] = 59951, + [SMALL_STATE(1676)] = 59972, + [SMALL_STATE(1677)] = 59993, + [SMALL_STATE(1678)] = 60012, + [SMALL_STATE(1679)] = 60033, + [SMALL_STATE(1680)] = 60058, + [SMALL_STATE(1681)] = 60077, + [SMALL_STATE(1682)] = 60100, + [SMALL_STATE(1683)] = 60121, + [SMALL_STATE(1684)] = 60142, + [SMALL_STATE(1685)] = 60163, + [SMALL_STATE(1686)] = 60188, + [SMALL_STATE(1687)] = 60211, + [SMALL_STATE(1688)] = 60234, + [SMALL_STATE(1689)] = 60255, + [SMALL_STATE(1690)] = 60272, + [SMALL_STATE(1691)] = 60295, + [SMALL_STATE(1692)] = 60320, + [SMALL_STATE(1693)] = 60345, + [SMALL_STATE(1694)] = 60364, + [SMALL_STATE(1695)] = 60383, + [SMALL_STATE(1696)] = 60404, + [SMALL_STATE(1697)] = 60429, + [SMALL_STATE(1698)] = 60452, + [SMALL_STATE(1699)] = 60473, + [SMALL_STATE(1700)] = 60496, + [SMALL_STATE(1701)] = 60517, + [SMALL_STATE(1702)] = 60542, + [SMALL_STATE(1703)] = 60563, + [SMALL_STATE(1704)] = 60588, + [SMALL_STATE(1705)] = 60611, + [SMALL_STATE(1706)] = 60636, + [SMALL_STATE(1707)] = 60659, + [SMALL_STATE(1708)] = 60678, + [SMALL_STATE(1709)] = 60697, + [SMALL_STATE(1710)] = 60720, + [SMALL_STATE(1711)] = 60741, + [SMALL_STATE(1712)] = 60760, + [SMALL_STATE(1713)] = 60781, + [SMALL_STATE(1714)] = 60802, + [SMALL_STATE(1715)] = 60823, + [SMALL_STATE(1716)] = 60846, + [SMALL_STATE(1717)] = 60867, + [SMALL_STATE(1718)] = 60890, + [SMALL_STATE(1719)] = 60911, + [SMALL_STATE(1720)] = 60932, + [SMALL_STATE(1721)] = 60957, + [SMALL_STATE(1722)] = 60978, + [SMALL_STATE(1723)] = 61001, + [SMALL_STATE(1724)] = 61026, + [SMALL_STATE(1725)] = 61047, + [SMALL_STATE(1726)] = 61066, + [SMALL_STATE(1727)] = 61085, + [SMALL_STATE(1728)] = 61106, + [SMALL_STATE(1729)] = 61127, + [SMALL_STATE(1730)] = 61144, + [SMALL_STATE(1731)] = 61161, + [SMALL_STATE(1732)] = 61178, + [SMALL_STATE(1733)] = 61199, + [SMALL_STATE(1734)] = 61216, + [SMALL_STATE(1735)] = 61237, + [SMALL_STATE(1736)] = 61256, + [SMALL_STATE(1737)] = 61277, + [SMALL_STATE(1738)] = 61300, + [SMALL_STATE(1739)] = 61321, + [SMALL_STATE(1740)] = 61344, + [SMALL_STATE(1741)] = 61361, + [SMALL_STATE(1742)] = 61384, + [SMALL_STATE(1743)] = 61404, + [SMALL_STATE(1744)] = 61420, + [SMALL_STATE(1745)] = 61440, + [SMALL_STATE(1746)] = 61462, + [SMALL_STATE(1747)] = 61482, + [SMALL_STATE(1748)] = 61504, + [SMALL_STATE(1749)] = 61526, + [SMALL_STATE(1750)] = 61548, + [SMALL_STATE(1751)] = 61568, + [SMALL_STATE(1752)] = 61584, + [SMALL_STATE(1753)] = 61602, + [SMALL_STATE(1754)] = 61620, + [SMALL_STATE(1755)] = 61642, + [SMALL_STATE(1756)] = 61664, + [SMALL_STATE(1757)] = 61684, + [SMALL_STATE(1758)] = 61704, + [SMALL_STATE(1759)] = 61722, + [SMALL_STATE(1760)] = 61744, + [SMALL_STATE(1761)] = 61764, + [SMALL_STATE(1762)] = 61784, + [SMALL_STATE(1763)] = 61806, + [SMALL_STATE(1764)] = 61822, + [SMALL_STATE(1765)] = 61838, + [SMALL_STATE(1766)] = 61860, + [SMALL_STATE(1767)] = 61880, + [SMALL_STATE(1768)] = 61902, + [SMALL_STATE(1769)] = 61924, + [SMALL_STATE(1770)] = 61942, + [SMALL_STATE(1771)] = 61958, + [SMALL_STATE(1772)] = 61978, + [SMALL_STATE(1773)] = 61996, + [SMALL_STATE(1774)] = 62016, + [SMALL_STATE(1775)] = 62038, + [SMALL_STATE(1776)] = 62056, + [SMALL_STATE(1777)] = 62078, + [SMALL_STATE(1778)] = 62098, + [SMALL_STATE(1779)] = 62120, + [SMALL_STATE(1780)] = 62142, + [SMALL_STATE(1781)] = 62162, + [SMALL_STATE(1782)] = 62184, + [SMALL_STATE(1783)] = 62204, + [SMALL_STATE(1784)] = 62224, + [SMALL_STATE(1785)] = 62246, + [SMALL_STATE(1786)] = 62264, + [SMALL_STATE(1787)] = 62286, + [SMALL_STATE(1788)] = 62306, + [SMALL_STATE(1789)] = 62326, + [SMALL_STATE(1790)] = 62346, + [SMALL_STATE(1791)] = 62368, + [SMALL_STATE(1792)] = 62390, + [SMALL_STATE(1793)] = 62410, + [SMALL_STATE(1794)] = 62432, + [SMALL_STATE(1795)] = 62452, + [SMALL_STATE(1796)] = 62474, + [SMALL_STATE(1797)] = 62490, + [SMALL_STATE(1798)] = 62510, + [SMALL_STATE(1799)] = 62530, + [SMALL_STATE(1800)] = 62548, + [SMALL_STATE(1801)] = 62564, + [SMALL_STATE(1802)] = 62582, + [SMALL_STATE(1803)] = 62604, + [SMALL_STATE(1804)] = 62626, + [SMALL_STATE(1805)] = 62642, + [SMALL_STATE(1806)] = 62664, + [SMALL_STATE(1807)] = 62686, + [SMALL_STATE(1808)] = 62708, + [SMALL_STATE(1809)] = 62728, + [SMALL_STATE(1810)] = 62750, + [SMALL_STATE(1811)] = 62772, + [SMALL_STATE(1812)] = 62792, + [SMALL_STATE(1813)] = 62814, + [SMALL_STATE(1814)] = 62836, + [SMALL_STATE(1815)] = 62858, + [SMALL_STATE(1816)] = 62876, + [SMALL_STATE(1817)] = 62898, + [SMALL_STATE(1818)] = 62920, + [SMALL_STATE(1819)] = 62940, + [SMALL_STATE(1820)] = 62962, + [SMALL_STATE(1821)] = 62984, + [SMALL_STATE(1822)] = 63006, + [SMALL_STATE(1823)] = 63028, + [SMALL_STATE(1824)] = 63048, + [SMALL_STATE(1825)] = 63068, + [SMALL_STATE(1826)] = 63088, + [SMALL_STATE(1827)] = 63104, + [SMALL_STATE(1828)] = 63124, + [SMALL_STATE(1829)] = 63146, + [SMALL_STATE(1830)] = 63166, + [SMALL_STATE(1831)] = 63182, + [SMALL_STATE(1832)] = 63202, + [SMALL_STATE(1833)] = 63220, + [SMALL_STATE(1834)] = 63242, + [SMALL_STATE(1835)] = 63264, + [SMALL_STATE(1836)] = 63280, + [SMALL_STATE(1837)] = 63302, + [SMALL_STATE(1838)] = 63324, + [SMALL_STATE(1839)] = 63344, + [SMALL_STATE(1840)] = 63366, + [SMALL_STATE(1841)] = 63388, + [SMALL_STATE(1842)] = 63404, + [SMALL_STATE(1843)] = 63424, + [SMALL_STATE(1844)] = 63444, + [SMALL_STATE(1845)] = 63464, + [SMALL_STATE(1846)] = 63482, + [SMALL_STATE(1847)] = 63504, + [SMALL_STATE(1848)] = 63526, + [SMALL_STATE(1849)] = 63548, + [SMALL_STATE(1850)] = 63566, + [SMALL_STATE(1851)] = 63582, + [SMALL_STATE(1852)] = 63602, + [SMALL_STATE(1853)] = 63622, + [SMALL_STATE(1854)] = 63642, + [SMALL_STATE(1855)] = 63660, + [SMALL_STATE(1856)] = 63682, + [SMALL_STATE(1857)] = 63702, + [SMALL_STATE(1858)] = 63724, + [SMALL_STATE(1859)] = 63744, + [SMALL_STATE(1860)] = 63766, + [SMALL_STATE(1861)] = 63786, + [SMALL_STATE(1862)] = 63802, + [SMALL_STATE(1863)] = 63822, + [SMALL_STATE(1864)] = 63838, + [SMALL_STATE(1865)] = 63860, + [SMALL_STATE(1866)] = 63876, + [SMALL_STATE(1867)] = 63894, + [SMALL_STATE(1868)] = 63916, + [SMALL_STATE(1869)] = 63936, + [SMALL_STATE(1870)] = 63956, + [SMALL_STATE(1871)] = 63978, + [SMALL_STATE(1872)] = 64000, + [SMALL_STATE(1873)] = 64022, + [SMALL_STATE(1874)] = 64038, + [SMALL_STATE(1875)] = 64058, + [SMALL_STATE(1876)] = 64078, + [SMALL_STATE(1877)] = 64098, + [SMALL_STATE(1878)] = 64120, + [SMALL_STATE(1879)] = 64140, + [SMALL_STATE(1880)] = 64158, + [SMALL_STATE(1881)] = 64180, + [SMALL_STATE(1882)] = 64202, + [SMALL_STATE(1883)] = 64224, + [SMALL_STATE(1884)] = 64244, + [SMALL_STATE(1885)] = 64266, + [SMALL_STATE(1886)] = 64285, + [SMALL_STATE(1887)] = 64304, + [SMALL_STATE(1888)] = 64321, + [SMALL_STATE(1889)] = 64340, + [SMALL_STATE(1890)] = 64359, + [SMALL_STATE(1891)] = 64378, + [SMALL_STATE(1892)] = 64397, + [SMALL_STATE(1893)] = 64414, + [SMALL_STATE(1894)] = 64433, + [SMALL_STATE(1895)] = 64452, + [SMALL_STATE(1896)] = 64469, + [SMALL_STATE(1897)] = 64488, + [SMALL_STATE(1898)] = 64507, + [SMALL_STATE(1899)] = 64526, + [SMALL_STATE(1900)] = 64545, + [SMALL_STATE(1901)] = 64564, + [SMALL_STATE(1902)] = 64583, + [SMALL_STATE(1903)] = 64602, + [SMALL_STATE(1904)] = 64621, + [SMALL_STATE(1905)] = 64640, + [SMALL_STATE(1906)] = 64659, + [SMALL_STATE(1907)] = 64678, + [SMALL_STATE(1908)] = 64697, + [SMALL_STATE(1909)] = 64716, + [SMALL_STATE(1910)] = 64735, + [SMALL_STATE(1911)] = 64754, + [SMALL_STATE(1912)] = 64773, + [SMALL_STATE(1913)] = 64790, + [SMALL_STATE(1914)] = 64809, + [SMALL_STATE(1915)] = 64824, + [SMALL_STATE(1916)] = 64843, + [SMALL_STATE(1917)] = 64862, + [SMALL_STATE(1918)] = 64881, + [SMALL_STATE(1919)] = 64898, + [SMALL_STATE(1920)] = 64917, + [SMALL_STATE(1921)] = 64936, + [SMALL_STATE(1922)] = 64955, + [SMALL_STATE(1923)] = 64970, + [SMALL_STATE(1924)] = 64989, + [SMALL_STATE(1925)] = 65008, + [SMALL_STATE(1926)] = 65027, + [SMALL_STATE(1927)] = 65046, + [SMALL_STATE(1928)] = 65063, + [SMALL_STATE(1929)] = 65082, + [SMALL_STATE(1930)] = 65101, + [SMALL_STATE(1931)] = 65120, + [SMALL_STATE(1932)] = 65139, + [SMALL_STATE(1933)] = 65158, + [SMALL_STATE(1934)] = 65173, + [SMALL_STATE(1935)] = 65190, + [SMALL_STATE(1936)] = 65207, + [SMALL_STATE(1937)] = 65224, + [SMALL_STATE(1938)] = 65239, + [SMALL_STATE(1939)] = 65256, + [SMALL_STATE(1940)] = 65275, + [SMALL_STATE(1941)] = 65294, + [SMALL_STATE(1942)] = 65311, + [SMALL_STATE(1943)] = 65326, + [SMALL_STATE(1944)] = 65341, + [SMALL_STATE(1945)] = 65358, + [SMALL_STATE(1946)] = 65375, + [SMALL_STATE(1947)] = 65394, + [SMALL_STATE(1948)] = 65413, + [SMALL_STATE(1949)] = 65430, + [SMALL_STATE(1950)] = 65449, + [SMALL_STATE(1951)] = 65466, + [SMALL_STATE(1952)] = 65483, + [SMALL_STATE(1953)] = 65500, + [SMALL_STATE(1954)] = 65517, + [SMALL_STATE(1955)] = 65536, + [SMALL_STATE(1956)] = 65553, + [SMALL_STATE(1957)] = 65570, + [SMALL_STATE(1958)] = 65587, + [SMALL_STATE(1959)] = 65604, + [SMALL_STATE(1960)] = 65623, + [SMALL_STATE(1961)] = 65642, + [SMALL_STATE(1962)] = 65661, + [SMALL_STATE(1963)] = 65678, + [SMALL_STATE(1964)] = 65697, + [SMALL_STATE(1965)] = 65714, + [SMALL_STATE(1966)] = 65729, + [SMALL_STATE(1967)] = 65746, + [SMALL_STATE(1968)] = 65763, + [SMALL_STATE(1969)] = 65780, + [SMALL_STATE(1970)] = 65797, + [SMALL_STATE(1971)] = 65814, + [SMALL_STATE(1972)] = 65831, + [SMALL_STATE(1973)] = 65850, + [SMALL_STATE(1974)] = 65867, + [SMALL_STATE(1975)] = 65886, + [SMALL_STATE(1976)] = 65903, + [SMALL_STATE(1977)] = 65922, + [SMALL_STATE(1978)] = 65939, + [SMALL_STATE(1979)] = 65956, + [SMALL_STATE(1980)] = 65973, + [SMALL_STATE(1981)] = 65992, + [SMALL_STATE(1982)] = 66011, + [SMALL_STATE(1983)] = 66028, + [SMALL_STATE(1984)] = 66045, + [SMALL_STATE(1985)] = 66060, + [SMALL_STATE(1986)] = 66077, + [SMALL_STATE(1987)] = 66096, + [SMALL_STATE(1988)] = 66113, + [SMALL_STATE(1989)] = 66128, + [SMALL_STATE(1990)] = 66145, + [SMALL_STATE(1991)] = 66162, + [SMALL_STATE(1992)] = 66181, + [SMALL_STATE(1993)] = 66198, + [SMALL_STATE(1994)] = 66213, + [SMALL_STATE(1995)] = 66230, + [SMALL_STATE(1996)] = 66247, + [SMALL_STATE(1997)] = 66264, + [SMALL_STATE(1998)] = 66283, + [SMALL_STATE(1999)] = 66300, + [SMALL_STATE(2000)] = 66319, + [SMALL_STATE(2001)] = 66336, + [SMALL_STATE(2002)] = 66355, + [SMALL_STATE(2003)] = 66374, + [SMALL_STATE(2004)] = 66391, + [SMALL_STATE(2005)] = 66410, + [SMALL_STATE(2006)] = 66427, + [SMALL_STATE(2007)] = 66446, + [SMALL_STATE(2008)] = 66463, + [SMALL_STATE(2009)] = 66482, + [SMALL_STATE(2010)] = 66499, + [SMALL_STATE(2011)] = 66518, + [SMALL_STATE(2012)] = 66535, + [SMALL_STATE(2013)] = 66552, + [SMALL_STATE(2014)] = 66569, + [SMALL_STATE(2015)] = 66586, + [SMALL_STATE(2016)] = 66603, + [SMALL_STATE(2017)] = 66620, + [SMALL_STATE(2018)] = 66637, + [SMALL_STATE(2019)] = 66654, + [SMALL_STATE(2020)] = 66671, + [SMALL_STATE(2021)] = 66688, + [SMALL_STATE(2022)] = 66705, + [SMALL_STATE(2023)] = 66724, + [SMALL_STATE(2024)] = 66741, + [SMALL_STATE(2025)] = 66760, + [SMALL_STATE(2026)] = 66779, + [SMALL_STATE(2027)] = 66796, + [SMALL_STATE(2028)] = 66813, + [SMALL_STATE(2029)] = 66832, + [SMALL_STATE(2030)] = 66849, + [SMALL_STATE(2031)] = 66868, + [SMALL_STATE(2032)] = 66887, + [SMALL_STATE(2033)] = 66904, + [SMALL_STATE(2034)] = 66923, + [SMALL_STATE(2035)] = 66942, + [SMALL_STATE(2036)] = 66961, + [SMALL_STATE(2037)] = 66980, + [SMALL_STATE(2038)] = 66997, + [SMALL_STATE(2039)] = 67016, + [SMALL_STATE(2040)] = 67035, + [SMALL_STATE(2041)] = 67054, + [SMALL_STATE(2042)] = 67071, + [SMALL_STATE(2043)] = 67090, + [SMALL_STATE(2044)] = 67105, + [SMALL_STATE(2045)] = 67120, + [SMALL_STATE(2046)] = 67139, + [SMALL_STATE(2047)] = 67156, + [SMALL_STATE(2048)] = 67173, + [SMALL_STATE(2049)] = 67190, + [SMALL_STATE(2050)] = 67207, + [SMALL_STATE(2051)] = 67224, + [SMALL_STATE(2052)] = 67241, + [SMALL_STATE(2053)] = 67258, + [SMALL_STATE(2054)] = 67275, + [SMALL_STATE(2055)] = 67292, + [SMALL_STATE(2056)] = 67309, + [SMALL_STATE(2057)] = 67326, + [SMALL_STATE(2058)] = 67343, + [SMALL_STATE(2059)] = 67360, + [SMALL_STATE(2060)] = 67377, + [SMALL_STATE(2061)] = 67394, + [SMALL_STATE(2062)] = 67411, + [SMALL_STATE(2063)] = 67428, + [SMALL_STATE(2064)] = 67443, + [SMALL_STATE(2065)] = 67460, + [SMALL_STATE(2066)] = 67477, + [SMALL_STATE(2067)] = 67494, + [SMALL_STATE(2068)] = 67511, + [SMALL_STATE(2069)] = 67528, + [SMALL_STATE(2070)] = 67547, + [SMALL_STATE(2071)] = 67564, + [SMALL_STATE(2072)] = 67583, + [SMALL_STATE(2073)] = 67602, + [SMALL_STATE(2074)] = 67619, + [SMALL_STATE(2075)] = 67636, + [SMALL_STATE(2076)] = 67653, + [SMALL_STATE(2077)] = 67670, + [SMALL_STATE(2078)] = 67687, + [SMALL_STATE(2079)] = 67706, + [SMALL_STATE(2080)] = 67723, + [SMALL_STATE(2081)] = 67738, + [SMALL_STATE(2082)] = 67753, + [SMALL_STATE(2083)] = 67770, + [SMALL_STATE(2084)] = 67787, + [SMALL_STATE(2085)] = 67804, + [SMALL_STATE(2086)] = 67821, + [SMALL_STATE(2087)] = 67838, + [SMALL_STATE(2088)] = 67855, + [SMALL_STATE(2089)] = 67872, + [SMALL_STATE(2090)] = 67889, + [SMALL_STATE(2091)] = 67906, + [SMALL_STATE(2092)] = 67923, + [SMALL_STATE(2093)] = 67940, + [SMALL_STATE(2094)] = 67959, + [SMALL_STATE(2095)] = 67976, + [SMALL_STATE(2096)] = 67993, + [SMALL_STATE(2097)] = 68010, + [SMALL_STATE(2098)] = 68027, + [SMALL_STATE(2099)] = 68044, + [SMALL_STATE(2100)] = 68061, + [SMALL_STATE(2101)] = 68078, + [SMALL_STATE(2102)] = 68095, + [SMALL_STATE(2103)] = 68114, + [SMALL_STATE(2104)] = 68129, + [SMALL_STATE(2105)] = 68146, + [SMALL_STATE(2106)] = 68163, + [SMALL_STATE(2107)] = 68180, + [SMALL_STATE(2108)] = 68197, + [SMALL_STATE(2109)] = 68216, + [SMALL_STATE(2110)] = 68233, + [SMALL_STATE(2111)] = 68250, + [SMALL_STATE(2112)] = 68267, + [SMALL_STATE(2113)] = 68282, + [SMALL_STATE(2114)] = 68299, + [SMALL_STATE(2115)] = 68316, + [SMALL_STATE(2116)] = 68333, + [SMALL_STATE(2117)] = 68352, + [SMALL_STATE(2118)] = 68369, + [SMALL_STATE(2119)] = 68388, + [SMALL_STATE(2120)] = 68405, + [SMALL_STATE(2121)] = 68420, + [SMALL_STATE(2122)] = 68439, + [SMALL_STATE(2123)] = 68456, + [SMALL_STATE(2124)] = 68475, + [SMALL_STATE(2125)] = 68490, + [SMALL_STATE(2126)] = 68505, + [SMALL_STATE(2127)] = 68522, + [SMALL_STATE(2128)] = 68541, + [SMALL_STATE(2129)] = 68558, + [SMALL_STATE(2130)] = 68575, + [SMALL_STATE(2131)] = 68594, + [SMALL_STATE(2132)] = 68611, + [SMALL_STATE(2133)] = 68626, + [SMALL_STATE(2134)] = 68645, + [SMALL_STATE(2135)] = 68664, + [SMALL_STATE(2136)] = 68683, + [SMALL_STATE(2137)] = 68698, + [SMALL_STATE(2138)] = 68717, + [SMALL_STATE(2139)] = 68732, + [SMALL_STATE(2140)] = 68747, + [SMALL_STATE(2141)] = 68766, + [SMALL_STATE(2142)] = 68783, + [SMALL_STATE(2143)] = 68802, + [SMALL_STATE(2144)] = 68817, + [SMALL_STATE(2145)] = 68832, + [SMALL_STATE(2146)] = 68849, + [SMALL_STATE(2147)] = 68866, + [SMALL_STATE(2148)] = 68885, + [SMALL_STATE(2149)] = 68902, + [SMALL_STATE(2150)] = 68918, + [SMALL_STATE(2151)] = 68934, + [SMALL_STATE(2152)] = 68948, + [SMALL_STATE(2153)] = 68962, + [SMALL_STATE(2154)] = 68978, + [SMALL_STATE(2155)] = 68992, + [SMALL_STATE(2156)] = 69008, + [SMALL_STATE(2157)] = 69022, + [SMALL_STATE(2158)] = 69036, + [SMALL_STATE(2159)] = 69050, + [SMALL_STATE(2160)] = 69064, + [SMALL_STATE(2161)] = 69080, + [SMALL_STATE(2162)] = 69094, + [SMALL_STATE(2163)] = 69110, + [SMALL_STATE(2164)] = 69124, + [SMALL_STATE(2165)] = 69138, + [SMALL_STATE(2166)] = 69152, + [SMALL_STATE(2167)] = 69168, + [SMALL_STATE(2168)] = 69184, + [SMALL_STATE(2169)] = 69200, + [SMALL_STATE(2170)] = 69216, + [SMALL_STATE(2171)] = 69232, + [SMALL_STATE(2172)] = 69248, + [SMALL_STATE(2173)] = 69264, + [SMALL_STATE(2174)] = 69280, + [SMALL_STATE(2175)] = 69296, + [SMALL_STATE(2176)] = 69312, + [SMALL_STATE(2177)] = 69328, + [SMALL_STATE(2178)] = 69342, + [SMALL_STATE(2179)] = 69358, + [SMALL_STATE(2180)] = 69374, + [SMALL_STATE(2181)] = 69388, + [SMALL_STATE(2182)] = 69404, + [SMALL_STATE(2183)] = 69418, + [SMALL_STATE(2184)] = 69434, + [SMALL_STATE(2185)] = 69450, + [SMALL_STATE(2186)] = 69466, + [SMALL_STATE(2187)] = 69480, + [SMALL_STATE(2188)] = 69496, + [SMALL_STATE(2189)] = 69512, + [SMALL_STATE(2190)] = 69526, + [SMALL_STATE(2191)] = 69542, + [SMALL_STATE(2192)] = 69556, + [SMALL_STATE(2193)] = 69572, + [SMALL_STATE(2194)] = 69588, + [SMALL_STATE(2195)] = 69602, + [SMALL_STATE(2196)] = 69616, + [SMALL_STATE(2197)] = 69630, + [SMALL_STATE(2198)] = 69646, + [SMALL_STATE(2199)] = 69662, + [SMALL_STATE(2200)] = 69676, + [SMALL_STATE(2201)] = 69690, + [SMALL_STATE(2202)] = 69704, + [SMALL_STATE(2203)] = 69720, + [SMALL_STATE(2204)] = 69736, + [SMALL_STATE(2205)] = 69752, + [SMALL_STATE(2206)] = 69766, + [SMALL_STATE(2207)] = 69780, + [SMALL_STATE(2208)] = 69794, + [SMALL_STATE(2209)] = 69808, + [SMALL_STATE(2210)] = 69822, + [SMALL_STATE(2211)] = 69836, + [SMALL_STATE(2212)] = 69850, + [SMALL_STATE(2213)] = 69866, + [SMALL_STATE(2214)] = 69882, + [SMALL_STATE(2215)] = 69898, + [SMALL_STATE(2216)] = 69912, + [SMALL_STATE(2217)] = 69926, + [SMALL_STATE(2218)] = 69940, + [SMALL_STATE(2219)] = 69956, + [SMALL_STATE(2220)] = 69972, + [SMALL_STATE(2221)] = 69986, + [SMALL_STATE(2222)] = 70002, + [SMALL_STATE(2223)] = 70018, + [SMALL_STATE(2224)] = 70034, + [SMALL_STATE(2225)] = 70050, + [SMALL_STATE(2226)] = 70064, + [SMALL_STATE(2227)] = 70078, + [SMALL_STATE(2228)] = 70094, + [SMALL_STATE(2229)] = 70110, + [SMALL_STATE(2230)] = 70124, + [SMALL_STATE(2231)] = 70138, + [SMALL_STATE(2232)] = 70152, + [SMALL_STATE(2233)] = 70166, + [SMALL_STATE(2234)] = 70180, + [SMALL_STATE(2235)] = 70196, + [SMALL_STATE(2236)] = 70212, + [SMALL_STATE(2237)] = 70226, + [SMALL_STATE(2238)] = 70240, + [SMALL_STATE(2239)] = 70256, + [SMALL_STATE(2240)] = 70272, + [SMALL_STATE(2241)] = 70286, + [SMALL_STATE(2242)] = 70302, + [SMALL_STATE(2243)] = 70318, + [SMALL_STATE(2244)] = 70334, + [SMALL_STATE(2245)] = 70350, + [SMALL_STATE(2246)] = 70366, + [SMALL_STATE(2247)] = 70382, + [SMALL_STATE(2248)] = 70398, + [SMALL_STATE(2249)] = 70414, + [SMALL_STATE(2250)] = 70430, + [SMALL_STATE(2251)] = 70446, + [SMALL_STATE(2252)] = 70462, + [SMALL_STATE(2253)] = 70478, + [SMALL_STATE(2254)] = 70494, + [SMALL_STATE(2255)] = 70510, + [SMALL_STATE(2256)] = 70526, + [SMALL_STATE(2257)] = 70542, + [SMALL_STATE(2258)] = 70558, + [SMALL_STATE(2259)] = 70574, + [SMALL_STATE(2260)] = 70590, + [SMALL_STATE(2261)] = 70606, + [SMALL_STATE(2262)] = 70620, + [SMALL_STATE(2263)] = 70636, + [SMALL_STATE(2264)] = 70650, + [SMALL_STATE(2265)] = 70666, + [SMALL_STATE(2266)] = 70682, + [SMALL_STATE(2267)] = 70698, + [SMALL_STATE(2268)] = 70714, + [SMALL_STATE(2269)] = 70730, + [SMALL_STATE(2270)] = 70746, + [SMALL_STATE(2271)] = 70762, + [SMALL_STATE(2272)] = 70776, + [SMALL_STATE(2273)] = 70790, + [SMALL_STATE(2274)] = 70804, + [SMALL_STATE(2275)] = 70818, + [SMALL_STATE(2276)] = 70834, + [SMALL_STATE(2277)] = 70848, + [SMALL_STATE(2278)] = 70864, + [SMALL_STATE(2279)] = 70880, + [SMALL_STATE(2280)] = 70894, + [SMALL_STATE(2281)] = 70908, + [SMALL_STATE(2282)] = 70922, + [SMALL_STATE(2283)] = 70936, + [SMALL_STATE(2284)] = 70952, + [SMALL_STATE(2285)] = 70968, + [SMALL_STATE(2286)] = 70984, + [SMALL_STATE(2287)] = 71000, + [SMALL_STATE(2288)] = 71016, + [SMALL_STATE(2289)] = 71030, + [SMALL_STATE(2290)] = 71046, + [SMALL_STATE(2291)] = 71060, + [SMALL_STATE(2292)] = 71076, + [SMALL_STATE(2293)] = 71092, + [SMALL_STATE(2294)] = 71106, + [SMALL_STATE(2295)] = 71122, + [SMALL_STATE(2296)] = 71138, + [SMALL_STATE(2297)] = 71154, + [SMALL_STATE(2298)] = 71170, + [SMALL_STATE(2299)] = 71184, + [SMALL_STATE(2300)] = 71198, + [SMALL_STATE(2301)] = 71214, + [SMALL_STATE(2302)] = 71230, + [SMALL_STATE(2303)] = 71246, + [SMALL_STATE(2304)] = 71262, + [SMALL_STATE(2305)] = 71278, + [SMALL_STATE(2306)] = 71294, + [SMALL_STATE(2307)] = 71308, + [SMALL_STATE(2308)] = 71324, + [SMALL_STATE(2309)] = 71338, + [SMALL_STATE(2310)] = 71354, + [SMALL_STATE(2311)] = 71370, + [SMALL_STATE(2312)] = 71386, + [SMALL_STATE(2313)] = 71402, + [SMALL_STATE(2314)] = 71418, + [SMALL_STATE(2315)] = 71432, + [SMALL_STATE(2316)] = 71446, + [SMALL_STATE(2317)] = 71460, + [SMALL_STATE(2318)] = 71476, + [SMALL_STATE(2319)] = 71492, + [SMALL_STATE(2320)] = 71508, + [SMALL_STATE(2321)] = 71524, + [SMALL_STATE(2322)] = 71538, + [SMALL_STATE(2323)] = 71552, + [SMALL_STATE(2324)] = 71568, + [SMALL_STATE(2325)] = 71584, + [SMALL_STATE(2326)] = 71600, + [SMALL_STATE(2327)] = 71616, + [SMALL_STATE(2328)] = 71632, + [SMALL_STATE(2329)] = 71648, + [SMALL_STATE(2330)] = 71664, + [SMALL_STATE(2331)] = 71680, + [SMALL_STATE(2332)] = 71694, + [SMALL_STATE(2333)] = 71710, + [SMALL_STATE(2334)] = 71726, + [SMALL_STATE(2335)] = 71742, + [SMALL_STATE(2336)] = 71758, + [SMALL_STATE(2337)] = 71774, + [SMALL_STATE(2338)] = 71790, + [SMALL_STATE(2339)] = 71806, + [SMALL_STATE(2340)] = 71820, + [SMALL_STATE(2341)] = 71836, + [SMALL_STATE(2342)] = 71852, + [SMALL_STATE(2343)] = 71866, + [SMALL_STATE(2344)] = 71880, + [SMALL_STATE(2345)] = 71894, + [SMALL_STATE(2346)] = 71910, + [SMALL_STATE(2347)] = 71926, + [SMALL_STATE(2348)] = 71942, + [SMALL_STATE(2349)] = 71956, + [SMALL_STATE(2350)] = 71972, + [SMALL_STATE(2351)] = 71988, + [SMALL_STATE(2352)] = 72002, + [SMALL_STATE(2353)] = 72018, + [SMALL_STATE(2354)] = 72034, + [SMALL_STATE(2355)] = 72050, + [SMALL_STATE(2356)] = 72066, + [SMALL_STATE(2357)] = 72082, + [SMALL_STATE(2358)] = 72098, + [SMALL_STATE(2359)] = 72114, + [SMALL_STATE(2360)] = 72130, + [SMALL_STATE(2361)] = 72146, + [SMALL_STATE(2362)] = 72162, + [SMALL_STATE(2363)] = 72176, + [SMALL_STATE(2364)] = 72192, + [SMALL_STATE(2365)] = 72208, + [SMALL_STATE(2366)] = 72224, + [SMALL_STATE(2367)] = 72240, + [SMALL_STATE(2368)] = 72256, + [SMALL_STATE(2369)] = 72272, + [SMALL_STATE(2370)] = 72286, + [SMALL_STATE(2371)] = 72302, + [SMALL_STATE(2372)] = 72318, + [SMALL_STATE(2373)] = 72334, + [SMALL_STATE(2374)] = 72348, + [SMALL_STATE(2375)] = 72364, + [SMALL_STATE(2376)] = 72378, + [SMALL_STATE(2377)] = 72394, + [SMALL_STATE(2378)] = 72408, + [SMALL_STATE(2379)] = 72424, + [SMALL_STATE(2380)] = 72440, + [SMALL_STATE(2381)] = 72454, + [SMALL_STATE(2382)] = 72470, + [SMALL_STATE(2383)] = 72484, + [SMALL_STATE(2384)] = 72500, + [SMALL_STATE(2385)] = 72514, + [SMALL_STATE(2386)] = 72528, + [SMALL_STATE(2387)] = 72542, + [SMALL_STATE(2388)] = 72558, + [SMALL_STATE(2389)] = 72574, + [SMALL_STATE(2390)] = 72588, + [SMALL_STATE(2391)] = 72602, + [SMALL_STATE(2392)] = 72616, + [SMALL_STATE(2393)] = 72632, + [SMALL_STATE(2394)] = 72646, + [SMALL_STATE(2395)] = 72660, + [SMALL_STATE(2396)] = 72676, + [SMALL_STATE(2397)] = 72690, + [SMALL_STATE(2398)] = 72706, + [SMALL_STATE(2399)] = 72720, + [SMALL_STATE(2400)] = 72736, + [SMALL_STATE(2401)] = 72752, + [SMALL_STATE(2402)] = 72766, + [SMALL_STATE(2403)] = 72782, + [SMALL_STATE(2404)] = 72798, + [SMALL_STATE(2405)] = 72812, + [SMALL_STATE(2406)] = 72826, + [SMALL_STATE(2407)] = 72842, + [SMALL_STATE(2408)] = 72856, + [SMALL_STATE(2409)] = 72872, + [SMALL_STATE(2410)] = 72888, + [SMALL_STATE(2411)] = 72904, + [SMALL_STATE(2412)] = 72920, + [SMALL_STATE(2413)] = 72934, + [SMALL_STATE(2414)] = 72950, + [SMALL_STATE(2415)] = 72964, + [SMALL_STATE(2416)] = 72980, + [SMALL_STATE(2417)] = 72996, + [SMALL_STATE(2418)] = 73012, + [SMALL_STATE(2419)] = 73028, + [SMALL_STATE(2420)] = 73044, + [SMALL_STATE(2421)] = 73060, + [SMALL_STATE(2422)] = 73076, + [SMALL_STATE(2423)] = 73092, + [SMALL_STATE(2424)] = 73108, + [SMALL_STATE(2425)] = 73122, + [SMALL_STATE(2426)] = 73135, + [SMALL_STATE(2427)] = 73148, + [SMALL_STATE(2428)] = 73161, + [SMALL_STATE(2429)] = 73174, + [SMALL_STATE(2430)] = 73187, + [SMALL_STATE(2431)] = 73200, + [SMALL_STATE(2432)] = 73213, + [SMALL_STATE(2433)] = 73226, + [SMALL_STATE(2434)] = 73239, + [SMALL_STATE(2435)] = 73252, + [SMALL_STATE(2436)] = 73265, + [SMALL_STATE(2437)] = 73278, + [SMALL_STATE(2438)] = 73291, + [SMALL_STATE(2439)] = 73304, + [SMALL_STATE(2440)] = 73317, + [SMALL_STATE(2441)] = 73330, + [SMALL_STATE(2442)] = 73343, + [SMALL_STATE(2443)] = 73356, + [SMALL_STATE(2444)] = 73369, + [SMALL_STATE(2445)] = 73382, + [SMALL_STATE(2446)] = 73395, + [SMALL_STATE(2447)] = 73408, + [SMALL_STATE(2448)] = 73421, + [SMALL_STATE(2449)] = 73434, + [SMALL_STATE(2450)] = 73447, + [SMALL_STATE(2451)] = 73460, + [SMALL_STATE(2452)] = 73473, + [SMALL_STATE(2453)] = 73486, + [SMALL_STATE(2454)] = 73499, + [SMALL_STATE(2455)] = 73512, + [SMALL_STATE(2456)] = 73525, + [SMALL_STATE(2457)] = 73538, + [SMALL_STATE(2458)] = 73551, + [SMALL_STATE(2459)] = 73564, + [SMALL_STATE(2460)] = 73577, + [SMALL_STATE(2461)] = 73590, + [SMALL_STATE(2462)] = 73603, + [SMALL_STATE(2463)] = 73616, + [SMALL_STATE(2464)] = 73629, + [SMALL_STATE(2465)] = 73642, + [SMALL_STATE(2466)] = 73655, + [SMALL_STATE(2467)] = 73668, + [SMALL_STATE(2468)] = 73681, + [SMALL_STATE(2469)] = 73694, + [SMALL_STATE(2470)] = 73707, + [SMALL_STATE(2471)] = 73720, + [SMALL_STATE(2472)] = 73733, + [SMALL_STATE(2473)] = 73746, + [SMALL_STATE(2474)] = 73759, + [SMALL_STATE(2475)] = 73772, + [SMALL_STATE(2476)] = 73785, + [SMALL_STATE(2477)] = 73798, + [SMALL_STATE(2478)] = 73811, + [SMALL_STATE(2479)] = 73824, + [SMALL_STATE(2480)] = 73837, + [SMALL_STATE(2481)] = 73850, + [SMALL_STATE(2482)] = 73863, + [SMALL_STATE(2483)] = 73876, + [SMALL_STATE(2484)] = 73889, + [SMALL_STATE(2485)] = 73902, + [SMALL_STATE(2486)] = 73915, + [SMALL_STATE(2487)] = 73928, + [SMALL_STATE(2488)] = 73941, + [SMALL_STATE(2489)] = 73954, + [SMALL_STATE(2490)] = 73967, + [SMALL_STATE(2491)] = 73980, + [SMALL_STATE(2492)] = 73993, + [SMALL_STATE(2493)] = 74006, + [SMALL_STATE(2494)] = 74019, + [SMALL_STATE(2495)] = 74032, + [SMALL_STATE(2496)] = 74045, + [SMALL_STATE(2497)] = 74058, + [SMALL_STATE(2498)] = 74071, + [SMALL_STATE(2499)] = 74084, + [SMALL_STATE(2500)] = 74097, + [SMALL_STATE(2501)] = 74110, + [SMALL_STATE(2502)] = 74123, + [SMALL_STATE(2503)] = 74136, + [SMALL_STATE(2504)] = 74149, + [SMALL_STATE(2505)] = 74162, + [SMALL_STATE(2506)] = 74175, + [SMALL_STATE(2507)] = 74188, + [SMALL_STATE(2508)] = 74201, + [SMALL_STATE(2509)] = 74214, + [SMALL_STATE(2510)] = 74227, + [SMALL_STATE(2511)] = 74240, + [SMALL_STATE(2512)] = 74253, + [SMALL_STATE(2513)] = 74266, + [SMALL_STATE(2514)] = 74279, + [SMALL_STATE(2515)] = 74292, + [SMALL_STATE(2516)] = 74305, + [SMALL_STATE(2517)] = 74318, + [SMALL_STATE(2518)] = 74331, + [SMALL_STATE(2519)] = 74344, + [SMALL_STATE(2520)] = 74357, + [SMALL_STATE(2521)] = 74370, + [SMALL_STATE(2522)] = 74383, + [SMALL_STATE(2523)] = 74396, + [SMALL_STATE(2524)] = 74409, + [SMALL_STATE(2525)] = 74422, + [SMALL_STATE(2526)] = 74435, + [SMALL_STATE(2527)] = 74448, + [SMALL_STATE(2528)] = 74461, + [SMALL_STATE(2529)] = 74474, + [SMALL_STATE(2530)] = 74487, + [SMALL_STATE(2531)] = 74500, + [SMALL_STATE(2532)] = 74513, + [SMALL_STATE(2533)] = 74526, + [SMALL_STATE(2534)] = 74539, + [SMALL_STATE(2535)] = 74552, + [SMALL_STATE(2536)] = 74565, + [SMALL_STATE(2537)] = 74578, + [SMALL_STATE(2538)] = 74591, + [SMALL_STATE(2539)] = 74604, + [SMALL_STATE(2540)] = 74617, + [SMALL_STATE(2541)] = 74630, + [SMALL_STATE(2542)] = 74643, + [SMALL_STATE(2543)] = 74656, + [SMALL_STATE(2544)] = 74669, + [SMALL_STATE(2545)] = 74682, + [SMALL_STATE(2546)] = 74695, + [SMALL_STATE(2547)] = 74708, + [SMALL_STATE(2548)] = 74721, + [SMALL_STATE(2549)] = 74734, + [SMALL_STATE(2550)] = 74747, + [SMALL_STATE(2551)] = 74760, + [SMALL_STATE(2552)] = 74773, + [SMALL_STATE(2553)] = 74786, + [SMALL_STATE(2554)] = 74799, + [SMALL_STATE(2555)] = 74812, + [SMALL_STATE(2556)] = 74825, + [SMALL_STATE(2557)] = 74838, + [SMALL_STATE(2558)] = 74851, + [SMALL_STATE(2559)] = 74864, + [SMALL_STATE(2560)] = 74877, + [SMALL_STATE(2561)] = 74890, + [SMALL_STATE(2562)] = 74903, + [SMALL_STATE(2563)] = 74916, + [SMALL_STATE(2564)] = 74929, + [SMALL_STATE(2565)] = 74942, + [SMALL_STATE(2566)] = 74955, + [SMALL_STATE(2567)] = 74968, + [SMALL_STATE(2568)] = 74981, + [SMALL_STATE(2569)] = 74994, + [SMALL_STATE(2570)] = 75007, + [SMALL_STATE(2571)] = 75020, + [SMALL_STATE(2572)] = 75033, + [SMALL_STATE(2573)] = 75046, + [SMALL_STATE(2574)] = 75059, + [SMALL_STATE(2575)] = 75072, + [SMALL_STATE(2576)] = 75085, + [SMALL_STATE(2577)] = 75098, + [SMALL_STATE(2578)] = 75111, + [SMALL_STATE(2579)] = 75124, + [SMALL_STATE(2580)] = 75137, + [SMALL_STATE(2581)] = 75150, + [SMALL_STATE(2582)] = 75163, + [SMALL_STATE(2583)] = 75176, + [SMALL_STATE(2584)] = 75189, + [SMALL_STATE(2585)] = 75202, + [SMALL_STATE(2586)] = 75215, + [SMALL_STATE(2587)] = 75228, + [SMALL_STATE(2588)] = 75241, + [SMALL_STATE(2589)] = 75254, + [SMALL_STATE(2590)] = 75267, + [SMALL_STATE(2591)] = 75280, + [SMALL_STATE(2592)] = 75293, + [SMALL_STATE(2593)] = 75306, + [SMALL_STATE(2594)] = 75319, + [SMALL_STATE(2595)] = 75332, + [SMALL_STATE(2596)] = 75345, + [SMALL_STATE(2597)] = 75358, + [SMALL_STATE(2598)] = 75371, + [SMALL_STATE(2599)] = 75384, + [SMALL_STATE(2600)] = 75397, + [SMALL_STATE(2601)] = 75410, + [SMALL_STATE(2602)] = 75423, + [SMALL_STATE(2603)] = 75436, + [SMALL_STATE(2604)] = 75449, + [SMALL_STATE(2605)] = 75462, + [SMALL_STATE(2606)] = 75475, + [SMALL_STATE(2607)] = 75488, + [SMALL_STATE(2608)] = 75501, + [SMALL_STATE(2609)] = 75514, + [SMALL_STATE(2610)] = 75527, + [SMALL_STATE(2611)] = 75540, + [SMALL_STATE(2612)] = 75553, + [SMALL_STATE(2613)] = 75566, + [SMALL_STATE(2614)] = 75579, + [SMALL_STATE(2615)] = 75592, + [SMALL_STATE(2616)] = 75605, + [SMALL_STATE(2617)] = 75618, + [SMALL_STATE(2618)] = 75631, + [SMALL_STATE(2619)] = 75644, + [SMALL_STATE(2620)] = 75657, + [SMALL_STATE(2621)] = 75670, + [SMALL_STATE(2622)] = 75683, + [SMALL_STATE(2623)] = 75696, + [SMALL_STATE(2624)] = 75709, + [SMALL_STATE(2625)] = 75722, + [SMALL_STATE(2626)] = 75735, + [SMALL_STATE(2627)] = 75748, + [SMALL_STATE(2628)] = 75761, + [SMALL_STATE(2629)] = 75774, + [SMALL_STATE(2630)] = 75787, + [SMALL_STATE(2631)] = 75800, + [SMALL_STATE(2632)] = 75813, + [SMALL_STATE(2633)] = 75826, + [SMALL_STATE(2634)] = 75839, + [SMALL_STATE(2635)] = 75852, + [SMALL_STATE(2636)] = 75865, + [SMALL_STATE(2637)] = 75878, + [SMALL_STATE(2638)] = 75891, + [SMALL_STATE(2639)] = 75904, + [SMALL_STATE(2640)] = 75917, + [SMALL_STATE(2641)] = 75930, + [SMALL_STATE(2642)] = 75943, + [SMALL_STATE(2643)] = 75956, + [SMALL_STATE(2644)] = 75969, + [SMALL_STATE(2645)] = 75982, + [SMALL_STATE(2646)] = 75995, + [SMALL_STATE(2647)] = 76008, + [SMALL_STATE(2648)] = 76021, + [SMALL_STATE(2649)] = 76034, + [SMALL_STATE(2650)] = 76047, + [SMALL_STATE(2651)] = 76060, + [SMALL_STATE(2652)] = 76073, + [SMALL_STATE(2653)] = 76077, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -139388,89 +139317,89 @@ static const TSParseActionEntry ts_parse_actions[] = { [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 41), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 41), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 23), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 23), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 23), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 23), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 94), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 94), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 22), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 22), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 94), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 94), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 135), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 135), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 135), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 135), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 55), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 55), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 56), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 56), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 56), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 56), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 7), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 7), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 134), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 134), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 1), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), - [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 3), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), - [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2640), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 41), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 41), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 23), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 23), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 23), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 23), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 94), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 94), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 22), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 22), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 94), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 94), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 135), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 135), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 135), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 135), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 55), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 55), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 56), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 56), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 56), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 56), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 7), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 7), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 134), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 134), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 1), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), + [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 3), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), + [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2640), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 21), [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 21), [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), @@ -140730,7 +140659,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 127), [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), @@ -140785,7 +140714,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 3), [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), diff --git a/php/test/corpus/interpolation.txt b/php/test/corpus/interpolation.txt index 0482c975..d31330f1 100644 --- a/php/test/corpus/interpolation.txt +++ b/php/test/corpus/interpolation.txt @@ -233,3 +233,17 @@ if ($post) : (text_interpolation) ) +=============================== +octothorpe right after interpolation +=============================== + +Intro + +--- + +(program + (text) + (php_tag) + (expression_statement + (variable_name (name))) + (text_interpolation (text)))