diff --git a/corpus/literals.txt b/corpus/literals.txt index 6d36c753..3db64319 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -92,7 +92,9 @@ Strings '"ok"' r'hi' ur"bye" +UR'bye' b'sup' +B"sup" `1` "\\" "/" @@ -110,6 +112,8 @@ string" (expression_statement (string)) (expression_statement (string)) (expression_statement (string)) + (expression_statement (string)) + (expression_statement (string)) (expression_statement (string))) ===================================== diff --git a/grammar.js b/grammar.js index 9003f596..a5be7d7b 100644 --- a/grammar.js +++ b/grammar.js @@ -705,7 +705,7 @@ module.exports = grammar({ ), string: $ => token(seq( - repeat(choice('u', 'r', 'b')), + repeat(choice(/[uU]/, /[rR]/, /[bB]/)), choice( seq('`', repeat(choice(/[^\\`\n]/, /\\./, /\\\n/)), '`'), seq('"', repeat(choice(/[^\\"\n]/, /\\./, /\\\n/)), '"'), diff --git a/src/grammar.json b/src/grammar.json index 127851a0..a5d58c90 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3393,16 +3393,16 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "u" + "type": "PATTERN", + "value": "[uU]" }, { - "type": "STRING", - "value": "r" + "type": "PATTERN", + "value": "[rR]" }, { - "type": "STRING", - "value": "b" + "type": "PATTERN", + "value": "[bB]" } ] } diff --git a/src/parser.c b/src/parser.c index a8505123..addc7b7c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 5 -#define STATE_COUNT 1888 +#define STATE_COUNT 1980 #define SYMBOL_COUNT 197 #define ALIAS_COUNT 2 #define TOKEN_COUNT 92 @@ -1275,28 +1275,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(73); if (lookahead == '@') ADVANCE(77); - if (lookahead == 'E') + if (lookahead == 'B') ADVANCE(78); + if (lookahead == 'E') + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); + if (lookahead == 'R') + ADVANCE(78); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(97); + SKIP(100); if (lookahead == ']') - ADVANCE(98); + ADVANCE(101); if (lookahead == '^') - ADVANCE(99); + ADVANCE(102); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') - ADVANCE(103); + ADVANCE(104); if (lookahead == 'b') - ADVANCE(118); + ADVANCE(119); if (lookahead == 'c') ADVANCE(124); if (lookahead == 'd') @@ -1321,8 +1325,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(205); if (lookahead == 't') ADVANCE(215); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == 'w') ADVANCE(218); if (lookahead == 'y') @@ -1335,6 +1337,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(234); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -1346,7 +1351,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); if (('A' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 1: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -1852,387 +1857,390 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 78: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '\'') + ADVANCE(17); + if (lookahead == '`') + ADVANCE(79); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(78); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(78); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(81); + END_STATE(); + case 79: + if (lookahead == '\\') + ADVANCE(80); + if (lookahead == '`') + ADVANCE(9); + if (lookahead != 0 && + lookahead != '\n') + ADVANCE(79); + END_STATE(); + case 80: + if (lookahead == '\n') + ADVANCE(79); + if (lookahead != 0) + ADVANCE(79); + END_STATE(); + case 81: + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(81); + END_STATE(); + case 82: ACCEPT_TOKEN(sym_identifier); if (lookahead == '+' || lookahead == '-') ADVANCE(62); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(79); + ADVANCE(83); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 79: + case 83: ACCEPT_TOKEN(sym_float); if (lookahead == '_') - ADVANCE(80); + ADVANCE(84); if (lookahead == 'J' || lookahead == 'j') - ADVANCE(81); + ADVANCE(85); if (lookahead == 'L' || lookahead == 'l') - ADVANCE(81); + ADVANCE(85); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(79); + ADVANCE(83); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 80: + case 84: ACCEPT_TOKEN(sym_float); if (lookahead == 'J' || lookahead == 'j') - ADVANCE(81); + ADVANCE(85); if (lookahead == 'L' || lookahead == 'l') - ADVANCE(81); + ADVANCE(85); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(79); + ADVANCE(83); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 81: + case 85: ACCEPT_TOKEN(sym_float); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); - END_STATE(); - case 82: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 83: + case 86: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') - ADVANCE(84); + ADVANCE(87); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 84: + case 87: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') - ADVANCE(85); + ADVANCE(88); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 85: + case 88: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') - ADVANCE(86); + ADVANCE(89); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 86: + case 89: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(87); + ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 87: + case 90: ACCEPT_TOKEN(sym_false); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 88: + case 91: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') - ADVANCE(89); + ADVANCE(92); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 89: + case 92: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(90); + ADVANCE(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 90: + case 93: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(91); + ADVANCE(94); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 91: + case 94: ACCEPT_TOKEN(sym_none); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 92: + case 95: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') - ADVANCE(93); + ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 93: + case 96: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') - ADVANCE(94); + ADVANCE(97); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 94: + case 97: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(95); + ADVANCE(98); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 95: + case 98: ACCEPT_TOKEN(sym_true); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 96: + case 99: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 97: + case 100: if (lookahead == '\n') SKIP(0); END_STATE(); - case 98: + case 101: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 99: + case 102: ACCEPT_TOKEN(anon_sym_CARET); if (lookahead == '=') - ADVANCE(100); + ADVANCE(103); END_STATE(); - case 100: + case 103: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 101: - if (lookahead == '\\') - ADVANCE(102); - if (lookahead == '`') - ADVANCE(9); - if (lookahead != 0 && - lookahead != '\n') - ADVANCE(101); - END_STATE(); - case 102: - if (lookahead == '\n') - ADVANCE(101); - if (lookahead != 0) - ADVANCE(101); - END_STATE(); - case 103: + case 104: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(104); + ADVANCE(105); if (lookahead == 's') - ADVANCE(106); + ADVANCE(107); if (lookahead == 'w') - ADVANCE(114); + ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 104: + case 105: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'd') - ADVANCE(105); + ADVANCE(106); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 105: + case 106: ACCEPT_TOKEN(anon_sym_and); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 106: + case 107: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') - ADVANCE(107); + ADVANCE(108); if (lookahead == 'y') - ADVANCE(111); + ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 107: + case 108: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(108); + ADVANCE(109); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 108: + case 109: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') - ADVANCE(109); + ADVANCE(110); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 109: + case 110: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(110); + ADVANCE(111); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 110: + case 111: ACCEPT_TOKEN(anon_sym_assert); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 111: + case 112: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(112); + ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 112: + case 113: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') - ADVANCE(113); + ADVANCE(114); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 113: + case 114: ACCEPT_TOKEN(anon_sym_async); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 114: + case 115: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') - ADVANCE(115); + ADVANCE(116); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 115: + case 116: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'i') - ADVANCE(116); + ADVANCE(117); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 116: + case 117: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') - ADVANCE(117); + ADVANCE(118); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 117: + case 118: ACCEPT_TOKEN(anon_sym_await); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); - END_STATE(); - case 118: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '\'') - ADVANCE(17); - if (lookahead == '`') - ADVANCE(101); - if (lookahead == 'b') - ADVANCE(119); - if (lookahead == 'r') - ADVANCE(120); - if (lookahead == 'u') - ADVANCE(119); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 119: ACCEPT_TOKEN(sym_identifier); @@ -2240,18 +2248,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(4); if (lookahead == '\'') ADVANCE(17); + if (lookahead == 'R') + ADVANCE(78); if (lookahead == '`') - ADVANCE(101); - if (lookahead == 'b') - ADVANCE(119); + ADVANCE(79); if (lookahead == 'r') - ADVANCE(119); - if (lookahead == 'u') - ADVANCE(119); + ADVANCE(120); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(78); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 120: ACCEPT_TOKEN(sym_identifier); @@ -2260,19 +2272,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(17); if (lookahead == '`') - ADVANCE(101); - if (lookahead == 'b') - ADVANCE(119); + ADVANCE(79); if (lookahead == 'e') ADVANCE(121); - if (lookahead == 'r') - ADVANCE(119); - if (lookahead == 'u') - ADVANCE(119); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(78); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(78); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 121: ACCEPT_TOKEN(sym_identifier); @@ -2282,7 +2297,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 122: ACCEPT_TOKEN(sym_identifier); @@ -2292,7 +2307,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 123: ACCEPT_TOKEN(sym_break_statement); @@ -2300,7 +2315,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 124: ACCEPT_TOKEN(sym_identifier); @@ -2312,7 +2327,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 125: ACCEPT_TOKEN(sym_identifier); @@ -2322,7 +2337,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 126: ACCEPT_TOKEN(sym_identifier); @@ -2332,7 +2347,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 127: ACCEPT_TOKEN(sym_identifier); @@ -2342,7 +2357,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 128: ACCEPT_TOKEN(anon_sym_class); @@ -2350,7 +2365,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 129: ACCEPT_TOKEN(sym_identifier); @@ -2360,7 +2375,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 130: ACCEPT_TOKEN(sym_identifier); @@ -2370,7 +2385,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 131: ACCEPT_TOKEN(sym_identifier); @@ -2380,7 +2395,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 132: ACCEPT_TOKEN(sym_identifier); @@ -2390,7 +2405,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 133: ACCEPT_TOKEN(sym_identifier); @@ -2400,7 +2415,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 134: ACCEPT_TOKEN(sym_identifier); @@ -2410,7 +2425,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 135: ACCEPT_TOKEN(sym_continue_statement); @@ -2418,7 +2433,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 136: ACCEPT_TOKEN(sym_identifier); @@ -2428,7 +2443,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 137: ACCEPT_TOKEN(sym_identifier); @@ -2440,7 +2455,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 138: ACCEPT_TOKEN(anon_sym_def); @@ -2448,7 +2463,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 139: ACCEPT_TOKEN(anon_sym_del); @@ -2456,7 +2471,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 140: ACCEPT_TOKEN(sym_identifier); @@ -2468,11 +2483,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '-') ADVANCE(62); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(79); + ADVANCE(83); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 141: ACCEPT_TOKEN(sym_identifier); @@ -2484,7 +2499,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 142: ACCEPT_TOKEN(sym_identifier); @@ -2494,7 +2509,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 143: ACCEPT_TOKEN(anon_sym_elif); @@ -2502,7 +2517,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 144: ACCEPT_TOKEN(sym_identifier); @@ -2512,7 +2527,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 145: ACCEPT_TOKEN(anon_sym_else); @@ -2520,7 +2535,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 146: ACCEPT_TOKEN(sym_identifier); @@ -2532,7 +2547,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 147: ACCEPT_TOKEN(sym_identifier); @@ -2542,7 +2557,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 148: ACCEPT_TOKEN(sym_identifier); @@ -2552,7 +2567,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 149: ACCEPT_TOKEN(sym_identifier); @@ -2562,7 +2577,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 150: ACCEPT_TOKEN(anon_sym_except); @@ -2570,7 +2585,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 151: ACCEPT_TOKEN(sym_identifier); @@ -2580,7 +2595,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 152: ACCEPT_TOKEN(anon_sym_exec); @@ -2588,7 +2603,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 153: ACCEPT_TOKEN(sym_identifier); @@ -2602,7 +2617,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 154: ACCEPT_TOKEN(sym_identifier); @@ -2612,7 +2627,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 155: ACCEPT_TOKEN(sym_identifier); @@ -2622,7 +2637,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 156: ACCEPT_TOKEN(sym_identifier); @@ -2632,7 +2647,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 157: ACCEPT_TOKEN(sym_identifier); @@ -2642,7 +2657,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 158: ACCEPT_TOKEN(sym_identifier); @@ -2652,7 +2667,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 159: ACCEPT_TOKEN(anon_sym_finally); @@ -2660,7 +2675,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 160: ACCEPT_TOKEN(sym_identifier); @@ -2670,7 +2685,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 161: ACCEPT_TOKEN(anon_sym_for); @@ -2678,7 +2693,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 162: ACCEPT_TOKEN(sym_identifier); @@ -2688,7 +2703,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 163: ACCEPT_TOKEN(sym_identifier); @@ -2698,7 +2713,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 164: ACCEPT_TOKEN(anon_sym_from); @@ -2706,7 +2721,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 165: ACCEPT_TOKEN(sym_identifier); @@ -2716,7 +2731,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 166: ACCEPT_TOKEN(sym_identifier); @@ -2726,7 +2741,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 167: ACCEPT_TOKEN(sym_identifier); @@ -2736,7 +2751,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 168: ACCEPT_TOKEN(sym_identifier); @@ -2746,7 +2761,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 169: ACCEPT_TOKEN(sym_identifier); @@ -2756,7 +2771,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 170: ACCEPT_TOKEN(anon_sym_global); @@ -2764,7 +2779,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 171: ACCEPT_TOKEN(sym_identifier); @@ -2780,7 +2795,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 172: ACCEPT_TOKEN(anon_sym_if); @@ -2788,7 +2803,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 173: ACCEPT_TOKEN(sym_identifier); @@ -2798,7 +2813,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 174: ACCEPT_TOKEN(sym_identifier); @@ -2808,7 +2823,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 175: ACCEPT_TOKEN(sym_identifier); @@ -2818,7 +2833,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 176: ACCEPT_TOKEN(sym_identifier); @@ -2828,7 +2843,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 177: ACCEPT_TOKEN(anon_sym_import); @@ -2836,7 +2851,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 178: ACCEPT_TOKEN(anon_sym_in); @@ -2844,7 +2859,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 179: ACCEPT_TOKEN(anon_sym_is); @@ -2852,7 +2867,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 180: ACCEPT_TOKEN(sym_identifier); @@ -2862,7 +2877,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 181: ACCEPT_TOKEN(sym_identifier); @@ -2872,7 +2887,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 182: ACCEPT_TOKEN(sym_identifier); @@ -2882,7 +2897,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 183: ACCEPT_TOKEN(sym_identifier); @@ -2892,7 +2907,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 184: ACCEPT_TOKEN(sym_identifier); @@ -2902,7 +2917,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 185: ACCEPT_TOKEN(anon_sym_lambda); @@ -2910,7 +2925,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 186: ACCEPT_TOKEN(sym_identifier); @@ -2920,7 +2935,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 187: ACCEPT_TOKEN(sym_identifier); @@ -2932,7 +2947,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 188: ACCEPT_TOKEN(sym_identifier); @@ -2942,7 +2957,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 189: ACCEPT_TOKEN(sym_identifier); @@ -2952,7 +2967,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 190: ACCEPT_TOKEN(sym_identifier); @@ -2962,7 +2977,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 191: ACCEPT_TOKEN(sym_identifier); @@ -2972,7 +2987,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 192: ACCEPT_TOKEN(sym_identifier); @@ -2982,7 +2997,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 193: ACCEPT_TOKEN(anon_sym_nonlocal); @@ -2990,7 +3005,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 194: ACCEPT_TOKEN(anon_sym_not); @@ -2998,7 +3013,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 195: ACCEPT_TOKEN(sym_identifier); @@ -3008,7 +3023,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 196: ACCEPT_TOKEN(anon_sym_or); @@ -3016,7 +3031,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 197: ACCEPT_TOKEN(sym_identifier); @@ -3028,7 +3043,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 198: ACCEPT_TOKEN(sym_identifier); @@ -3038,7 +3053,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 199: ACCEPT_TOKEN(sym_identifier); @@ -3048,7 +3063,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 200: ACCEPT_TOKEN(sym_pass_statement); @@ -3056,7 +3071,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 201: ACCEPT_TOKEN(sym_identifier); @@ -3066,7 +3081,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 202: ACCEPT_TOKEN(sym_identifier); @@ -3076,7 +3091,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 203: ACCEPT_TOKEN(sym_identifier); @@ -3086,7 +3101,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 204: ACCEPT_TOKEN(anon_sym_print); @@ -3094,7 +3109,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 205: ACCEPT_TOKEN(sym_identifier); @@ -3103,21 +3118,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(17); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') ADVANCE(206); - if (lookahead == 'b') - ADVANCE(119); if (lookahead == 'e') ADVANCE(210); - if (lookahead == 'r') - ADVANCE(119); - if (lookahead == 'u') - ADVANCE(119); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(78); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(78); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 206: ACCEPT_TOKEN(sym_identifier); @@ -3127,7 +3145,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 207: ACCEPT_TOKEN(sym_identifier); @@ -3137,7 +3155,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 208: ACCEPT_TOKEN(sym_identifier); @@ -3147,7 +3165,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 209: ACCEPT_TOKEN(anon_sym_raise); @@ -3155,7 +3173,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 210: ACCEPT_TOKEN(sym_identifier); @@ -3165,7 +3183,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 211: ACCEPT_TOKEN(sym_identifier); @@ -3175,7 +3193,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 212: ACCEPT_TOKEN(sym_identifier); @@ -3185,7 +3203,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 213: ACCEPT_TOKEN(sym_identifier); @@ -3195,7 +3213,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 214: ACCEPT_TOKEN(anon_sym_return); @@ -3203,7 +3221,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 215: ACCEPT_TOKEN(sym_identifier); @@ -3213,7 +3231,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 216: ACCEPT_TOKEN(sym_identifier); @@ -3223,7 +3241,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 217: ACCEPT_TOKEN(anon_sym_try); @@ -3231,7 +3249,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 218: ACCEPT_TOKEN(sym_identifier); @@ -3243,7 +3261,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 219: ACCEPT_TOKEN(sym_identifier); @@ -3253,7 +3271,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 220: ACCEPT_TOKEN(sym_identifier); @@ -3263,7 +3281,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 221: ACCEPT_TOKEN(sym_identifier); @@ -3273,7 +3291,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 222: ACCEPT_TOKEN(anon_sym_while); @@ -3281,7 +3299,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 223: ACCEPT_TOKEN(sym_identifier); @@ -3291,7 +3309,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 224: ACCEPT_TOKEN(sym_identifier); @@ -3301,7 +3319,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 225: ACCEPT_TOKEN(anon_sym_with); @@ -3309,7 +3327,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 226: ACCEPT_TOKEN(sym_identifier); @@ -3319,7 +3337,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 227: ACCEPT_TOKEN(sym_identifier); @@ -3329,7 +3347,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 228: ACCEPT_TOKEN(sym_identifier); @@ -3339,7 +3357,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 229: ACCEPT_TOKEN(sym_identifier); @@ -3349,7 +3367,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 230: ACCEPT_TOKEN(anon_sym_yield); @@ -3357,7 +3375,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 231: ACCEPT_TOKEN(anon_sym_LBRACE); @@ -3397,24 +3415,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(49); if (lookahead == '@') ADVANCE(77); - if (lookahead == 'E') + if (lookahead == 'B') ADVANCE(78); + if (lookahead == 'E') + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); + if (lookahead == 'R') + ADVANCE(78); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') SKIP(240); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') ADVANCE(241); if (lookahead == 'b') - ADVANCE(118); + ADVANCE(119); if (lookahead == 'c') ADVANCE(124); if (lookahead == 'd') @@ -3437,8 +3459,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(205); if (lookahead == 't') ADVANCE(215); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == 'w') ADVANCE(218); if (lookahead == 'y') @@ -3447,6 +3467,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(231); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3459,7 +3482,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 237: ACCEPT_TOKEN(anon_sym_PLUS); @@ -3493,14 +3516,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 241: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') - ADVANCE(106); + ADVANCE(107); if (lookahead == 'w') - ADVANCE(114); + ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 242: ACCEPT_TOKEN(sym_identifier); @@ -3510,11 +3533,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '-') ADVANCE(62); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(79); + ADVANCE(83); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 243: ACCEPT_TOKEN(sym_identifier); @@ -3524,7 +3547,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 244: ACCEPT_TOKEN(sym_identifier); @@ -3536,7 +3559,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 245: ACCEPT_TOKEN(sym_identifier); @@ -3548,7 +3571,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 246: if (lookahead == '#') @@ -3574,7 +3597,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 247: ACCEPT_TOKEN(anon_sym_STAR); @@ -3608,23 +3631,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(49); if (lookahead == 'E') - ADVANCE(78); + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') SKIP(251); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') ADVANCE(252); - if (lookahead == 'b') - ADVANCE(119); if (lookahead == 'e') ADVANCE(242); if (lookahead == 'l') @@ -3633,16 +3654,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(253); if (lookahead == 'p') ADVANCE(255); - if (lookahead == 'r') - ADVANCE(119); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == 'y') ADVANCE(226); if (lookahead == '{') ADVANCE(231); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(78); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(78); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3655,7 +3681,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 251: if (lookahead == '\n') @@ -3664,12 +3690,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 252: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'w') - ADVANCE(114); + ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 253: ACCEPT_TOKEN(sym_identifier); @@ -3679,7 +3705,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 254: ACCEPT_TOKEN(sym_identifier); @@ -3689,7 +3715,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 255: ACCEPT_TOKEN(sym_identifier); @@ -3699,7 +3725,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 256: if (lookahead == '!') @@ -3739,25 +3765,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(73); if (lookahead == 'E') - ADVANCE(78); + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') SKIP(258); if (lookahead == '^') - ADVANCE(99); + ADVANCE(102); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') ADVANCE(259); - if (lookahead == 'b') - ADVANCE(119); if (lookahead == 'e') ADVANCE(242); if (lookahead == 'i') @@ -3770,16 +3794,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(195); if (lookahead == 'p') ADVANCE(255); - if (lookahead == 'r') - ADVANCE(119); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == '{') ADVANCE(231); if (lookahead == '|') ADVANCE(232); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(78); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(78); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3792,7 +3821,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 257: ACCEPT_TOKEN(anon_sym_DASH); @@ -3806,14 +3835,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 259: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') - ADVANCE(104); + ADVANCE(105); if (lookahead == 'w') - ADVANCE(114); + ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 260: ACCEPT_TOKEN(sym_identifier); @@ -3827,7 +3856,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 261: if (lookahead == '\"') @@ -3849,23 +3878,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(65); if (lookahead == 'E') - ADVANCE(78); + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') SKIP(262); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') ADVANCE(252); - if (lookahead == 'b') - ADVANCE(119); if (lookahead == 'e') ADVANCE(242); if (lookahead == 'l') @@ -3874,14 +3901,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(253); if (lookahead == 'p') ADVANCE(255); - if (lookahead == 'r') - ADVANCE(119); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == '{') ADVANCE(231); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(78); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(78); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3894,7 +3926,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 262: if (lookahead == '\n') @@ -3920,23 +3952,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(65); if (lookahead == 'E') - ADVANCE(78); + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') SKIP(264); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') ADVANCE(252); - if (lookahead == 'b') - ADVANCE(119); if (lookahead == 'e') ADVANCE(242); if (lookahead == 'f') @@ -3947,14 +3977,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(253); if (lookahead == 'p') ADVANCE(255); - if (lookahead == 'r') - ADVANCE(119); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == '{') ADVANCE(231); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(78); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(78); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3967,7 +4002,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 264: if (lookahead == '\n') @@ -3981,7 +4016,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 266: if (lookahead == '#') @@ -4021,33 +4056,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(49); if (lookahead == 'E') - ADVANCE(78); + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') SKIP(269); if (lookahead == '`') - ADVANCE(101); - if (lookahead == 'b') - ADVANCE(119); + ADVANCE(79); if (lookahead == 'e') ADVANCE(242); if (lookahead == 'p') ADVANCE(255); - if (lookahead == 'r') - ADVANCE(119); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == '{') ADVANCE(231); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(78); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(78); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4060,7 +4098,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 269: if (lookahead == '\n') @@ -4102,29 +4140,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(73); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') SKIP(271); if (lookahead == '^') - ADVANCE(99); + ADVANCE(102); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') ADVANCE(272); - if (lookahead == 'b') - ADVANCE(275); if (lookahead == 'i') - ADVANCE(276); + ADVANCE(275); if (lookahead == 'n') - ADVANCE(280); + ADVANCE(279); if (lookahead == 'o') - ADVANCE(283); - if (lookahead == 'r') - ADVANCE(275); - if (lookahead == 'u') - ADVANCE(275); + ADVANCE(282); if (lookahead == '|') ADVANCE(232); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(284); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(284); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(284); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4150,53 +4191,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 275: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '\'') - ADVANCE(17); - if (lookahead == '`') - ADVANCE(101); - if (lookahead == 'b') - ADVANCE(275); - if (lookahead == 'r') - ADVANCE(275); - if (lookahead == 'u') - ADVANCE(275); - END_STATE(); - case 276: if (lookahead == 'f') - ADVANCE(277); + ADVANCE(276); if (lookahead == 'n') - ADVANCE(278); + ADVANCE(277); if (lookahead == 's') - ADVANCE(279); + ADVANCE(278); END_STATE(); - case 277: + case 276: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 278: + case 277: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 279: + case 278: ACCEPT_TOKEN(anon_sym_is); END_STATE(); - case 280: + case 279: if (lookahead == 'o') + ADVANCE(280); + END_STATE(); + case 280: + if (lookahead == 't') ADVANCE(281); END_STATE(); case 281: - if (lookahead == 't') - ADVANCE(282); + ACCEPT_TOKEN(anon_sym_not); END_STATE(); case 282: - ACCEPT_TOKEN(anon_sym_not); + if (lookahead == 'r') + ADVANCE(283); END_STATE(); case 283: - if (lookahead == 'r') - ADVANCE(284); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 284: - ACCEPT_TOKEN(anon_sym_or); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '\'') + ADVANCE(17); + if (lookahead == '`') + ADVANCE(79); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(284); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(284); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(284); END_STATE(); case 285: if (lookahead == '#') @@ -4226,7 +4270,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 286: if (lookahead == '\n') @@ -4240,7 +4284,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 288: if (lookahead == '\"') @@ -4268,25 +4312,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(64); if (lookahead == 'E') - ADVANCE(78); + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') SKIP(289); if (lookahead == ']') - ADVANCE(98); - if (lookahead == '`') ADVANCE(101); + if (lookahead == '`') + ADVANCE(79); if (lookahead == 'a') ADVANCE(252); - if (lookahead == 'b') - ADVANCE(119); if (lookahead == 'e') ADVANCE(242); if (lookahead == 'l') @@ -4295,16 +4337,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(253); if (lookahead == 'p') ADVANCE(255); - if (lookahead == 'r') - ADVANCE(119); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == '{') ADVANCE(231); if (lookahead == '}') ADVANCE(234); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(78); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(78); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4317,7 +4364,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); case 289: if (lookahead == '\n') @@ -4355,19 +4402,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(73); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') SKIP(291); if (lookahead == '^') - ADVANCE(99); + ADVANCE(102); if (lookahead == 'a') ADVANCE(272); if (lookahead == 'i') - ADVANCE(276); + ADVANCE(275); if (lookahead == 'n') - ADVANCE(280); + ADVANCE(279); if (lookahead == 'o') - ADVANCE(283); + ADVANCE(282); if (lookahead == '|') ADVANCE(232); if (lookahead == '\t' || @@ -4417,7 +4464,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(308); if (lookahead == 'o') - ADVANCE(283); + ADVANCE(282); if (lookahead == '|') ADVANCE(309); if (lookahead == '\t' || @@ -4490,11 +4537,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 307: if (lookahead == '=') - ADVANCE(100); + ADVANCE(103); END_STATE(); case 308: if (lookahead == 'f') - ADVANCE(277); + ADVANCE(276); END_STATE(); case 309: if (lookahead == '=') @@ -4503,42 +4550,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 310: if (lookahead == '#') ADVANCE(12); - if (lookahead == '%') - ADVANCE(293); - if (lookahead == '&') - ADVANCE(294); - if (lookahead == '*') - ADVANCE(295); - if (lookahead == '+') - ADVANCE(297); if (lookahead == ',') ADVANCE(32); - if (lookahead == '-') - ADVANCE(298); - if (lookahead == '/') - ADVANCE(299); + if (lookahead == '.') + ADVANCE(248); if (lookahead == ';') ADVANCE(65); - if (lookahead == '<') - ADVANCE(301); - if (lookahead == '=') - ADVANCE(303); - if (lookahead == '>') - ADVANCE(304); if (lookahead == '\\') SKIP(311); - if (lookahead == '^') - ADVANCE(307); if (lookahead == 'a') - ADVANCE(272); - if (lookahead == 'f') ADVANCE(312); - if (lookahead == 'i') - ADVANCE(308); - if (lookahead == 'o') - ADVANCE(283); - if (lookahead == '|') - ADVANCE(309); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4553,54 +4574,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(310); END_STATE(); case 312: - if (lookahead == 'r') + if (lookahead == 's') ADVANCE(313); END_STATE(); case 313: - if (lookahead == 'o') - ADVANCE(314); - END_STATE(); - case 314: - if (lookahead == 'm') - ADVANCE(315); - END_STATE(); - case 315: - ACCEPT_TOKEN(anon_sym_from); - END_STATE(); - case 316: - if (lookahead == '#') - ADVANCE(12); - if (lookahead == ',') - ADVANCE(32); - if (lookahead == '.') - ADVANCE(248); - if (lookahead == ';') - ADVANCE(65); - if (lookahead == '\\') - SKIP(317); - if (lookahead == 'a') - ADVANCE(318); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) - SKIP(316); - END_STATE(); - case 317: - if (lookahead == '\n') - SKIP(316); - END_STATE(); - case 318: - if (lookahead == 's') - ADVANCE(319); - END_STATE(); - case 319: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 320: + case 314: if (lookahead == '#') ADVANCE(12); if (lookahead == ',') @@ -4608,7 +4588,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(65); if (lookahead == '\\') - SKIP(321); + SKIP(315); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4616,13 +4596,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(320); + SKIP(314); END_STATE(); - case 321: + case 315: if (lookahead == '\n') - SKIP(320); + SKIP(314); END_STATE(); - case 322: + case 316: if (lookahead == '#') ADVANCE(12); if (lookahead == ',') @@ -4630,9 +4610,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(65); if (lookahead == '\\') - SKIP(323); + SKIP(317); if (lookahead == 'a') - ADVANCE(318); + ADVANCE(312); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4640,21 +4620,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(322); + SKIP(316); END_STATE(); - case 323: + case 317: if (lookahead == '\n') - SKIP(322); + SKIP(316); END_STATE(); - case 324: + case 318: if (lookahead == '#') ADVANCE(12); if (lookahead == '.') ADVANCE(248); if (lookahead == '\\') - SKIP(325); + SKIP(319); if (lookahead == 'i') - ADVANCE(326); + ADVANCE(320); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4662,17 +4642,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(324); + SKIP(318); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 325: + case 319: if (lookahead == '\n') - SKIP(324); + SKIP(318); END_STATE(); - case 326: + case 320: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'm') ADVANCE(173); @@ -4680,9 +4660,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 327: + case 321: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -4690,9 +4670,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(12); if (lookahead == '%') - ADVANCE(328); + ADVANCE(322); if (lookahead == '&') - ADVANCE(329); + ADVANCE(323); if (lookahead == '\'') ADVANCE(17); if (lookahead == '(') @@ -4700,7 +4680,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(25); if (lookahead == '*') - ADVANCE(330); + ADVANCE(324); if (lookahead == '+') ADVANCE(237); if (lookahead == ',') @@ -4710,47 +4690,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(248); if (lookahead == '/') - ADVANCE(332); + ADVANCE(326); if (lookahead == ':') ADVANCE(64); if (lookahead == '<') - ADVANCE(334); + ADVANCE(328); if (lookahead == '=') ADVANCE(71); if (lookahead == '>') - ADVANCE(336); + ADVANCE(330); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(338); + SKIP(332); if (lookahead == ']') - ADVANCE(98); + ADVANCE(101); if (lookahead == '^') - ADVANCE(339); + ADVANCE(333); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') - ADVANCE(340); - if (lookahead == 'b') - ADVANCE(275); + ADVANCE(334); if (lookahead == 'e') - ADVANCE(341); + ADVANCE(335); if (lookahead == 'f') - ADVANCE(345); + ADVANCE(339); if (lookahead == 'i') - ADVANCE(348); + ADVANCE(342); if (lookahead == 'n') - ADVANCE(280); + ADVANCE(279); if (lookahead == 'o') - ADVANCE(283); - if (lookahead == 'r') - ADVANCE(275); - if (lookahead == 'u') - ADVANCE(275); + ADVANCE(282); if (lookahead == '|') - ADVANCE(354); + ADVANCE(348); if (lookahead == '}') ADVANCE(234); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(284); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(284); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(284); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4758,124 +4741,124 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(327); + SKIP(321); END_STATE(); - case 328: + case 322: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 329: + case 323: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 330: + case 324: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '*') - ADVANCE(331); + ADVANCE(325); END_STATE(); - case 331: + case 325: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 332: + case 326: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '/') - ADVANCE(333); + ADVANCE(327); END_STATE(); - case 333: + case 327: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 334: + case 328: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') - ADVANCE(335); + ADVANCE(329); if (lookahead == '=') ADVANCE(69); if (lookahead == '>') ADVANCE(70); END_STATE(); - case 335: + case 329: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 336: + case 330: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') ADVANCE(74); if (lookahead == '>') - ADVANCE(337); + ADVANCE(331); END_STATE(); - case 337: + case 331: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 338: + case 332: if (lookahead == '\n') - SKIP(327); + SKIP(321); END_STATE(); - case 339: + case 333: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 340: + case 334: if (lookahead == 'n') ADVANCE(273); if (lookahead == 's') - ADVANCE(319); + ADVANCE(313); END_STATE(); - case 341: + case 335: if (lookahead == 'l') - ADVANCE(342); + ADVANCE(336); END_STATE(); - case 342: + case 336: if (lookahead == 's') - ADVANCE(343); + ADVANCE(337); END_STATE(); - case 343: + case 337: if (lookahead == 'e') - ADVANCE(344); + ADVANCE(338); END_STATE(); - case 344: + case 338: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 345: + case 339: if (lookahead == 'o') - ADVANCE(346); + ADVANCE(340); END_STATE(); - case 346: + case 340: if (lookahead == 'r') - ADVANCE(347); + ADVANCE(341); END_STATE(); - case 347: + case 341: ACCEPT_TOKEN(anon_sym_for); END_STATE(); - case 348: + case 342: if (lookahead == 'f') - ADVANCE(277); + ADVANCE(276); if (lookahead == 'm') - ADVANCE(349); + ADVANCE(343); if (lookahead == 'n') - ADVANCE(278); + ADVANCE(277); if (lookahead == 's') - ADVANCE(279); + ADVANCE(278); END_STATE(); - case 349: + case 343: if (lookahead == 'p') - ADVANCE(350); + ADVANCE(344); END_STATE(); - case 350: + case 344: if (lookahead == 'o') - ADVANCE(351); + ADVANCE(345); END_STATE(); - case 351: + case 345: if (lookahead == 'r') - ADVANCE(352); + ADVANCE(346); END_STATE(); - case 352: + case 346: if (lookahead == 't') - ADVANCE(353); + ADVANCE(347); END_STATE(); - case 353: + case 347: ACCEPT_TOKEN(anon_sym_import); END_STATE(); - case 354: + case 348: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 355: + case 349: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -4897,23 +4880,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(49); if (lookahead == 'E') - ADVANCE(78); + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(356); + SKIP(350); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') ADVANCE(252); - if (lookahead == 'b') - ADVANCE(119); if (lookahead == 'e') ADVANCE(242); if (lookahead == 'f') @@ -4924,14 +4905,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(253); if (lookahead == 'p') ADVANCE(255); - if (lookahead == 'r') - ADVANCE(119); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == '{') ADVANCE(231); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(78); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(78); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4939,30 +4925,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(355); + SKIP(349); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 356: + case 350: if (lookahead == '\n') - SKIP(355); + SKIP(349); END_STATE(); - case 357: + case 351: if (lookahead == '!') ADVANCE(2); if (lookahead == '#') ADVANCE(12); if (lookahead == '%') - ADVANCE(328); + ADVANCE(322); if (lookahead == '&') - ADVANCE(329); + ADVANCE(323); if (lookahead == '(') ADVANCE(24); if (lookahead == '*') - ADVANCE(330); + ADVANCE(324); if (lookahead == '+') ADVANCE(237); if (lookahead == ',') @@ -4972,33 +4958,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(248); if (lookahead == '/') - ADVANCE(332); + ADVANCE(326); if (lookahead == ';') ADVANCE(65); if (lookahead == '<') - ADVANCE(334); + ADVANCE(328); if (lookahead == '=') - ADVANCE(358); + ADVANCE(352); if (lookahead == '>') - ADVANCE(336); + ADVANCE(330); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(359); + SKIP(353); if (lookahead == '^') - ADVANCE(339); + ADVANCE(333); if (lookahead == 'a') ADVANCE(272); - if (lookahead == 'f') - ADVANCE(312); if (lookahead == 'i') - ADVANCE(276); + ADVANCE(275); if (lookahead == 'n') - ADVANCE(280); + ADVANCE(279); if (lookahead == 'o') - ADVANCE(283); + ADVANCE(282); if (lookahead == '|') - ADVANCE(354); + ADVANCE(348); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5006,17 +4990,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(357); + SKIP(351); END_STATE(); - case 358: + case 352: if (lookahead == '=') ADVANCE(72); END_STATE(); - case 359: + case 353: if (lookahead == '\n') - SKIP(357); + SKIP(351); END_STATE(); - case 360: + case 354: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -5024,15 +5008,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(12); if (lookahead == '%') - ADVANCE(328); + ADVANCE(322); if (lookahead == '&') - ADVANCE(329); + ADVANCE(323); if (lookahead == '\'') ADVANCE(17); if (lookahead == '(') ADVANCE(24); if (lookahead == '*') - ADVANCE(330); + ADVANCE(324); if (lookahead == '+') ADVANCE(237); if (lookahead == ',') @@ -5042,39 +5026,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(248); if (lookahead == '/') - ADVANCE(332); + ADVANCE(326); if (lookahead == ';') ADVANCE(65); if (lookahead == '<') - ADVANCE(334); + ADVANCE(328); if (lookahead == '=') - ADVANCE(358); + ADVANCE(352); if (lookahead == '>') - ADVANCE(336); + ADVANCE(330); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(361); + SKIP(355); if (lookahead == '^') - ADVANCE(339); + ADVANCE(333); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') ADVANCE(272); - if (lookahead == 'b') - ADVANCE(275); if (lookahead == 'i') - ADVANCE(276); + ADVANCE(275); if (lookahead == 'n') - ADVANCE(280); + ADVANCE(279); if (lookahead == 'o') - ADVANCE(283); - if (lookahead == 'r') - ADVANCE(275); - if (lookahead == 'u') - ADVANCE(275); + ADVANCE(282); if (lookahead == '|') - ADVANCE(354); + ADVANCE(348); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(284); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(284); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(284); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5082,13 +5069,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(360); + SKIP(354); END_STATE(); - case 361: + case 355: if (lookahead == '\n') - SKIP(360); + SKIP(354); END_STATE(); - case 362: + case 356: if (lookahead == '#') ADVANCE(12); if (lookahead == ',') @@ -5096,13 +5083,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(65); if (lookahead == '\\') - SKIP(363); + SKIP(357); if (lookahead == 'a') ADVANCE(272); if (lookahead == 'i') ADVANCE(308); if (lookahead == 'o') - ADVANCE(283); + ADVANCE(282); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5110,25 +5097,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(362); + SKIP(356); END_STATE(); - case 363: + case 357: if (lookahead == '\n') - SKIP(362); + SKIP(356); END_STATE(); - case 364: + case 358: if (lookahead == '!') ADVANCE(2); if (lookahead == '#') ADVANCE(12); if (lookahead == '%') - ADVANCE(328); + ADVANCE(322); if (lookahead == '&') - ADVANCE(329); + ADVANCE(323); if (lookahead == '(') ADVANCE(24); if (lookahead == '*') - ADVANCE(330); + ADVANCE(324); if (lookahead == '+') ADVANCE(237); if (lookahead == ',') @@ -5138,31 +5125,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(248); if (lookahead == '/') - ADVANCE(332); + ADVANCE(326); if (lookahead == ';') ADVANCE(65); if (lookahead == '<') - ADVANCE(334); + ADVANCE(328); if (lookahead == '=') - ADVANCE(358); + ADVANCE(352); if (lookahead == '>') - ADVANCE(336); + ADVANCE(330); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(365); + SKIP(359); if (lookahead == '^') - ADVANCE(339); + ADVANCE(333); if (lookahead == 'a') ADVANCE(272); + if (lookahead == 'f') + ADVANCE(360); if (lookahead == 'i') - ADVANCE(276); + ADVANCE(275); if (lookahead == 'n') - ADVANCE(280); + ADVANCE(279); if (lookahead == 'o') - ADVANCE(283); + ADVANCE(282); if (lookahead == '|') - ADVANCE(354); + ADVANCE(348); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5170,13 +5159,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(364); + SKIP(358); END_STATE(); - case 365: + case 359: if (lookahead == '\n') - SKIP(364); + SKIP(358); END_STATE(); - case 366: + case 360: + if (lookahead == 'r') + ADVANCE(361); + END_STATE(); + case 361: + if (lookahead == 'o') + ADVANCE(362); + END_STATE(); + case 362: + if (lookahead == 'm') + ADVANCE(363); + END_STATE(); + case 363: + ACCEPT_TOKEN(anon_sym_from); + END_STATE(); + case 364: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -5184,15 +5188,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(12); if (lookahead == '%') - ADVANCE(328); + ADVANCE(322); if (lookahead == '&') - ADVANCE(329); + ADVANCE(323); if (lookahead == '\'') ADVANCE(17); if (lookahead == '(') ADVANCE(24); if (lookahead == '*') - ADVANCE(330); + ADVANCE(324); if (lookahead == '+') ADVANCE(237); if (lookahead == ',') @@ -5202,41 +5206,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(248); if (lookahead == '/') - ADVANCE(332); + ADVANCE(326); if (lookahead == ';') ADVANCE(65); if (lookahead == '<') - ADVANCE(334); + ADVANCE(328); if (lookahead == '=') - ADVANCE(358); + ADVANCE(352); if (lookahead == '>') - ADVANCE(336); + ADVANCE(330); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(367); + SKIP(365); if (lookahead == '^') - ADVANCE(339); + ADVANCE(333); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') ADVANCE(272); - if (lookahead == 'b') - ADVANCE(275); if (lookahead == 'f') - ADVANCE(312); + ADVANCE(360); if (lookahead == 'i') - ADVANCE(276); + ADVANCE(275); if (lookahead == 'n') - ADVANCE(280); + ADVANCE(279); if (lookahead == 'o') - ADVANCE(283); - if (lookahead == 'r') - ADVANCE(275); - if (lookahead == 'u') - ADVANCE(275); + ADVANCE(282); if (lookahead == '|') - ADVANCE(354); + ADVANCE(348); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(284); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(284); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(284); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5244,21 +5251,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(366); + SKIP(364); END_STATE(); - case 367: + case 365: if (lookahead == '\n') - SKIP(366); + SKIP(364); END_STATE(); - case 368: + case 366: if (lookahead == '#') ADVANCE(12); if (lookahead == ';') ADVANCE(65); if (lookahead == '\\') - SKIP(369); + SKIP(367); if (lookahead == 'f') - ADVANCE(312); + ADVANCE(360); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5266,13 +5273,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(368); + SKIP(366); END_STATE(); - case 369: + case 367: if (lookahead == '\n') - SKIP(368); + SKIP(366); END_STATE(); - case 370: + case 368: if (lookahead == '#') ADVANCE(12); if (lookahead == ',') @@ -5280,15 +5287,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(65); if (lookahead == '\\') - SKIP(371); + SKIP(369); if (lookahead == 'a') ADVANCE(272); if (lookahead == 'f') - ADVANCE(312); + ADVANCE(360); if (lookahead == 'i') ADVANCE(308); if (lookahead == 'o') - ADVANCE(283); + ADVANCE(282); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5296,13 +5303,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(370); + SKIP(368); END_STATE(); - case 371: + case 369: if (lookahead == '\n') - SKIP(370); + SKIP(368); END_STATE(); - case 372: + case 370: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -5319,28 +5326,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(239); if (lookahead == '0') ADVANCE(49); - if (lookahead == 'E') + if (lookahead == 'B') ADVANCE(78); + if (lookahead == 'E') + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); + if (lookahead == 'R') + ADVANCE(78); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(373); + SKIP(371); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') - ADVANCE(374); + ADVANCE(372); if (lookahead == 'b') - ADVANCE(118); + ADVANCE(119); if (lookahead == 'c') - ADVANCE(376); + ADVANCE(374); if (lookahead == 'd') - ADVANCE(377); + ADVANCE(375); if (lookahead == 'e') ADVANCE(242); if (lookahead == 'f') @@ -5348,7 +5359,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'g') ADVANCE(165); if (lookahead == 'i') - ADVANCE(326); + ADVANCE(320); if (lookahead == 'l') ADVANCE(180); if (lookahead == 'n') @@ -5357,14 +5368,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(197); if (lookahead == 'r') ADVANCE(205); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == 'y') ADVANCE(226); if (lookahead == '{') ADVANCE(231); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5372,40 +5384,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(372); + SKIP(370); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 373: + case 371: if (lookahead == '\n') - SKIP(372); + SKIP(370); END_STATE(); - case 374: + case 372: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') - ADVANCE(375); + ADVANCE(373); if (lookahead == 'w') - ADVANCE(114); + ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 375: + case 373: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') - ADVANCE(107); + ADVANCE(108); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 376: + case 374: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') ADVANCE(129); @@ -5413,19 +5425,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 377: + case 375: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') - ADVANCE(378); + ADVANCE(376); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 378: + case 376: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(139); @@ -5433,17 +5445,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 379: + case 377: if (lookahead == '#') ADVANCE(12); if (lookahead == ';') ADVANCE(65); if (lookahead == '\\') - SKIP(380); + SKIP(378); if (lookahead == 'i') - ADVANCE(381); + ADVANCE(379); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5451,17 +5463,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(379); + SKIP(377); END_STATE(); - case 380: + case 378: if (lookahead == '\n') - SKIP(379); + SKIP(377); END_STATE(); - case 381: + case 379: if (lookahead == 'n') - ADVANCE(278); + ADVANCE(277); END_STATE(); - case 382: + case 380: if (lookahead == '#') ADVANCE(12); if (lookahead == '(') @@ -5469,7 +5481,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(248); if (lookahead == '\\') - SKIP(383); + SKIP(381); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5477,19 +5489,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(382); + SKIP(380); END_STATE(); - case 383: + case 381: if (lookahead == '\n') - SKIP(382); + SKIP(380); END_STATE(); - case 384: + case 382: if (lookahead == '#') ADVANCE(12); if (lookahead == '(') ADVANCE(24); if (lookahead == '\\') - SKIP(385); + SKIP(383); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5497,13 +5509,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(384); + SKIP(382); END_STATE(); - case 385: + case 383: if (lookahead == '\n') - SKIP(384); + SKIP(382); END_STATE(); - case 386: + case 384: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -5537,25 +5549,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(304); if (lookahead == 'E') - ADVANCE(78); + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(387); + SKIP(385); if (lookahead == '^') ADVANCE(307); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') ADVANCE(252); - if (lookahead == 'b') - ADVANCE(119); if (lookahead == 'e') ADVANCE(242); if (lookahead == 'l') @@ -5564,16 +5574,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(253); if (lookahead == 'p') ADVANCE(255); - if (lookahead == 'r') - ADVANCE(119); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == '{') ADVANCE(231); if (lookahead == '|') ADVANCE(309); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(78); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(78); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5581,18 +5596,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(386); + SKIP(384); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 387: + case 385: if (lookahead == '\n') - SKIP(386); + SKIP(384); END_STATE(); - case 388: + case 386: if (lookahead == '#') ADVANCE(12); if (lookahead == '%') @@ -5618,7 +5633,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(304); if (lookahead == '\\') - SKIP(389); + SKIP(387); if (lookahead == '^') ADVANCE(307); if (lookahead == '|') @@ -5630,13 +5645,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(388); + SKIP(386); END_STATE(); - case 389: + case 387: if (lookahead == '\n') - SKIP(388); + SKIP(386); END_STATE(); - case 390: + case 388: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -5654,35 +5669,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(49); if (lookahead == 'E') - ADVANCE(78); + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(391); + SKIP(389); if (lookahead == '`') - ADVANCE(101); - if (lookahead == 'b') - ADVANCE(119); + ADVANCE(79); if (lookahead == 'e') ADVANCE(242); if (lookahead == 'n') ADVANCE(253); if (lookahead == 'p') ADVANCE(255); - if (lookahead == 'r') - ADVANCE(119); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == '{') ADVANCE(231); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(78); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(78); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5690,18 +5708,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(390); + SKIP(388); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 391: + case 389: if (lookahead == '\n') - SKIP(390); + SKIP(388); END_STATE(); - case 392: + case 390: if (lookahead == '!') ADVANCE(2); if (lookahead == '#') @@ -5723,23 +5741,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(65); if (lookahead == '<') - ADVANCE(393); + ADVANCE(391); if (lookahead == '=') ADVANCE(71); if (lookahead == '>') - ADVANCE(394); + ADVANCE(392); if (lookahead == '\\') - SKIP(395); + SKIP(393); if (lookahead == '^') ADVANCE(307); if (lookahead == 'a') ADVANCE(272); if (lookahead == 'i') - ADVANCE(276); + ADVANCE(275); if (lookahead == 'n') - ADVANCE(280); + ADVANCE(279); if (lookahead == 'o') - ADVANCE(283); + ADVANCE(282); if (lookahead == '|') ADVANCE(309); if (lookahead == '\t' || @@ -5749,9 +5767,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(392); + SKIP(390); END_STATE(); - case 393: + case 391: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') ADVANCE(302); @@ -5760,24 +5778,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(70); END_STATE(); - case 394: + case 392: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') ADVANCE(74); if (lookahead == '>') ADVANCE(305); END_STATE(); - case 395: + case 393: if (lookahead == '\n') - SKIP(392); + SKIP(390); END_STATE(); - case 396: + case 394: if (lookahead == '#') ADVANCE(12); if (lookahead == ';') ADVANCE(65); if (lookahead == '\\') - SKIP(397); + SKIP(395); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5785,17 +5803,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(396); + SKIP(394); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 397: + case 395: if (lookahead == '\n') - SKIP(396); + SKIP(394); END_STATE(); - case 398: + case 396: if (lookahead == '!') ADVANCE(2); if (lookahead == '#') @@ -5805,21 +5823,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(65); if (lookahead == '<') - ADVANCE(399); + ADVANCE(397); if (lookahead == '=') - ADVANCE(358); + ADVANCE(352); if (lookahead == '>') - ADVANCE(400); + ADVANCE(398); if (lookahead == '\\') - SKIP(401); + SKIP(399); if (lookahead == 'a') ADVANCE(272); if (lookahead == 'i') - ADVANCE(276); + ADVANCE(275); if (lookahead == 'n') - ADVANCE(280); + ADVANCE(279); if (lookahead == 'o') - ADVANCE(283); + ADVANCE(282); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5827,25 +5845,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(398); + SKIP(396); END_STATE(); - case 399: + case 397: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '=') ADVANCE(69); if (lookahead == '>') ADVANCE(70); END_STATE(); - case 400: + case 398: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') ADVANCE(74); END_STATE(); - case 401: + case 399: if (lookahead == '\n') - SKIP(398); + SKIP(396); END_STATE(); - case 402: + case 400: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -5853,15 +5871,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(12); if (lookahead == '%') - ADVANCE(328); + ADVANCE(322); if (lookahead == '&') - ADVANCE(329); + ADVANCE(323); if (lookahead == '\'') ADVANCE(17); if (lookahead == '(') ADVANCE(24); if (lookahead == '*') - ADVANCE(330); + ADVANCE(324); if (lookahead == '+') ADVANCE(237); if (lookahead == '-') @@ -5869,39 +5887,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(248); if (lookahead == '/') - ADVANCE(332); + ADVANCE(326); if (lookahead == ';') ADVANCE(65); if (lookahead == '<') - ADVANCE(334); + ADVANCE(328); if (lookahead == '=') - ADVANCE(358); + ADVANCE(352); if (lookahead == '>') - ADVANCE(336); + ADVANCE(330); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(403); + SKIP(401); if (lookahead == '^') - ADVANCE(339); + ADVANCE(333); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') ADVANCE(272); - if (lookahead == 'b') - ADVANCE(275); if (lookahead == 'i') - ADVANCE(276); + ADVANCE(275); if (lookahead == 'n') - ADVANCE(280); + ADVANCE(279); if (lookahead == 'o') - ADVANCE(283); - if (lookahead == 'r') - ADVANCE(275); - if (lookahead == 'u') - ADVANCE(275); + ADVANCE(282); if (lookahead == '|') - ADVANCE(354); + ADVANCE(348); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(284); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(284); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(284); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5909,25 +5930,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(402); + SKIP(400); END_STATE(); - case 403: + case 401: if (lookahead == '\n') - SKIP(402); + SKIP(400); END_STATE(); - case 404: + case 402: if (lookahead == '#') ADVANCE(12); if (lookahead == ';') ADVANCE(65); if (lookahead == '\\') - SKIP(405); + SKIP(403); if (lookahead == 'a') ADVANCE(272); if (lookahead == 'i') ADVANCE(308); if (lookahead == 'o') - ADVANCE(283); + ADVANCE(282); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5935,25 +5956,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(404); + SKIP(402); END_STATE(); - case 405: + case 403: if (lookahead == '\n') - SKIP(404); + SKIP(402); END_STATE(); - case 406: + case 404: if (lookahead == '!') ADVANCE(2); if (lookahead == '#') ADVANCE(12); if (lookahead == '%') - ADVANCE(328); + ADVANCE(322); if (lookahead == '&') - ADVANCE(329); + ADVANCE(323); if (lookahead == '(') ADVANCE(24); if (lookahead == '*') - ADVANCE(330); + ADVANCE(324); if (lookahead == '+') ADVANCE(237); if (lookahead == '-') @@ -5961,31 +5982,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(248); if (lookahead == '/') - ADVANCE(332); + ADVANCE(326); if (lookahead == ';') ADVANCE(65); if (lookahead == '<') - ADVANCE(334); + ADVANCE(328); if (lookahead == '=') - ADVANCE(358); + ADVANCE(352); if (lookahead == '>') - ADVANCE(336); + ADVANCE(330); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(407); + SKIP(405); if (lookahead == '^') - ADVANCE(339); + ADVANCE(333); if (lookahead == 'a') ADVANCE(272); if (lookahead == 'i') - ADVANCE(276); + ADVANCE(275); if (lookahead == 'n') - ADVANCE(280); + ADVANCE(279); if (lookahead == 'o') - ADVANCE(283); + ADVANCE(282); if (lookahead == '|') - ADVANCE(354); + ADVANCE(348); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5993,13 +6014,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(406); + SKIP(404); END_STATE(); - case 407: + case 405: if (lookahead == '\n') - SKIP(406); + SKIP(404); END_STATE(); - case 408: + case 406: if (lookahead == '#') ADVANCE(12); if (lookahead == ',') @@ -6007,9 +6028,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(65); if (lookahead == '\\') - SKIP(409); + SKIP(407); if (lookahead == 'f') - ADVANCE(312); + ADVANCE(360); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6017,13 +6038,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(408); + SKIP(406); END_STATE(); - case 409: + case 407: if (lookahead == '\n') - SKIP(408); + SKIP(406); END_STATE(); - case 410: + case 408: if (lookahead == '!') ADVANCE(2); if (lookahead == '#') @@ -6033,23 +6054,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(65); if (lookahead == '<') - ADVANCE(399); + ADVANCE(397); if (lookahead == '=') - ADVANCE(358); + ADVANCE(352); if (lookahead == '>') - ADVANCE(400); + ADVANCE(398); if (lookahead == '\\') - SKIP(411); + SKIP(409); if (lookahead == 'a') ADVANCE(272); if (lookahead == 'f') - ADVANCE(312); + ADVANCE(360); if (lookahead == 'i') - ADVANCE(276); + ADVANCE(275); if (lookahead == 'n') - ADVANCE(280); + ADVANCE(279); if (lookahead == 'o') - ADVANCE(283); + ADVANCE(282); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6057,13 +6078,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(410); + SKIP(408); END_STATE(); - case 411: + case 409: if (lookahead == '\n') - SKIP(410); + SKIP(408); END_STATE(); - case 412: + case 410: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -6081,35 +6102,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(49); if (lookahead == 'E') - ADVANCE(78); + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(413); + SKIP(411); if (lookahead == '`') - ADVANCE(101); - if (lookahead == 'b') - ADVANCE(119); + ADVANCE(79); if (lookahead == 'e') ADVANCE(242); if (lookahead == 'i') - ADVANCE(414); + ADVANCE(412); if (lookahead == 'p') ADVANCE(255); - if (lookahead == 'r') - ADVANCE(119); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == '{') ADVANCE(231); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(78); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(78); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6117,18 +6141,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(412); + SKIP(410); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 413: + case 411: if (lookahead == '\n') - SKIP(412); + SKIP(410); END_STATE(); - case 414: + case 412: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') ADVANCE(178); @@ -6136,9 +6160,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 415: + case 413: if (lookahead == 0) ADVANCE(1); if (lookahead == '\"') @@ -6159,30 +6183,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(49); if (lookahead == '@') ADVANCE(77); - if (lookahead == 'E') + if (lookahead == 'B') ADVANCE(78); + if (lookahead == 'E') + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); + if (lookahead == 'R') + ADVANCE(78); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(416); + SKIP(414); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') ADVANCE(241); if (lookahead == 'b') - ADVANCE(118); + ADVANCE(119); if (lookahead == 'c') ADVANCE(124); if (lookahead == 'd') ADVANCE(136); if (lookahead == 'e') - ADVANCE(417); + ADVANCE(415); if (lookahead == 'f') ADVANCE(153); if (lookahead == 'g') @@ -6199,8 +6227,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(205); if (lookahead == 't') ADVANCE(215); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == 'w') ADVANCE(218); if (lookahead == 'y') @@ -6209,6 +6235,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(231); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6216,34 +6245,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(415); + SKIP(413); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 416: + case 414: if (lookahead == '\n') - SKIP(415); + SKIP(413); END_STATE(); - case 417: + case 415: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') - ADVANCE(418); + ADVANCE(416); if (lookahead == 'x') ADVANCE(146); if (lookahead == '+' || lookahead == '-') ADVANCE(62); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(79); + ADVANCE(83); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 418: + case 416: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') ADVANCE(144); @@ -6251,17 +6280,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 419: + case 417: if (lookahead == '#') ADVANCE(12); if (lookahead == '-') - ADVANCE(420); + ADVANCE(418); if (lookahead == ':') ADVANCE(64); if (lookahead == '\\') - SKIP(421); + SKIP(419); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6269,21 +6298,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(419); + SKIP(417); END_STATE(); - case 420: + case 418: if (lookahead == '>') ADVANCE(35); END_STATE(); - case 421: + case 419: if (lookahead == '\n') - SKIP(419); + SKIP(417); END_STATE(); - case 422: + case 420: if (lookahead == '#') ADVANCE(12); if (lookahead == '\\') - SKIP(423); + SKIP(421); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6291,13 +6320,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(422); + SKIP(420); END_STATE(); - case 423: + case 421: if (lookahead == '\n') - SKIP(422); + SKIP(420); END_STATE(); - case 424: + case 422: if (lookahead == '#') ADVANCE(12); if (lookahead == '%') @@ -6321,7 +6350,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(304); if (lookahead == '\\') - SKIP(425); + SKIP(423); if (lookahead == '^') ADVANCE(307); if (lookahead == '|') @@ -6333,41 +6362,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(424); - END_STATE(); - case 425: - if (lookahead == '\n') - SKIP(424); - END_STATE(); - case 426: - if (lookahead == '#') - ADVANCE(12); - if (lookahead == '(') - ADVANCE(24); - if (lookahead == ',') - ADVANCE(32); - if (lookahead == '.') - ADVANCE(248); - if (lookahead == ';') - ADVANCE(65); - if (lookahead == '\\') - SKIP(427); - if (lookahead == 'a') - ADVANCE(318); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) - SKIP(426); + SKIP(422); END_STATE(); - case 427: + case 423: if (lookahead == '\n') - SKIP(426); + SKIP(422); END_STATE(); - case 428: + case 424: if (lookahead == '!') ADVANCE(2); if (lookahead == '#') @@ -6375,21 +6376,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(65); if (lookahead == '<') - ADVANCE(399); + ADVANCE(397); if (lookahead == '=') - ADVANCE(358); + ADVANCE(352); if (lookahead == '>') - ADVANCE(400); + ADVANCE(398); if (lookahead == '\\') - SKIP(429); + SKIP(425); if (lookahead == 'a') ADVANCE(272); if (lookahead == 'i') - ADVANCE(276); + ADVANCE(275); if (lookahead == 'n') - ADVANCE(280); + ADVANCE(279); if (lookahead == 'o') - ADVANCE(283); + ADVANCE(282); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6397,13 +6398,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(428); + SKIP(424); END_STATE(); - case 429: + case 425: if (lookahead == '\n') - SKIP(428); + SKIP(424); END_STATE(); - case 430: + case 426: if (lookahead == 0) ADVANCE(1); if (lookahead == '\"') @@ -6424,30 +6425,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(49); if (lookahead == '@') ADVANCE(77); - if (lookahead == 'E') + if (lookahead == 'B') ADVANCE(78); + if (lookahead == 'E') + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); + if (lookahead == 'R') + ADVANCE(78); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(431); + SKIP(427); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') ADVANCE(241); if (lookahead == 'b') - ADVANCE(118); + ADVANCE(119); if (lookahead == 'c') ADVANCE(124); if (lookahead == 'd') ADVANCE(136); if (lookahead == 'e') - ADVANCE(432); + ADVANCE(428); if (lookahead == 'f') ADVANCE(244); if (lookahead == 'g') @@ -6464,8 +6469,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(205); if (lookahead == 't') ADVANCE(215); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == 'w') ADVANCE(218); if (lookahead == 'y') @@ -6474,6 +6477,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(231); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6481,18 +6487,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(430); + SKIP(426); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 431: + case 427: if (lookahead == '\n') - SKIP(430); + SKIP(426); END_STATE(); - case 432: + case 428: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(141); @@ -6502,13 +6508,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '-') ADVANCE(62); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(79); + ADVANCE(83); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 433: + case 429: if (lookahead == 0) ADVANCE(1); if (lookahead == '\"') @@ -6529,30 +6535,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(49); if (lookahead == '@') ADVANCE(77); - if (lookahead == 'E') + if (lookahead == 'B') ADVANCE(78); + if (lookahead == 'E') + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); + if (lookahead == 'R') + ADVANCE(78); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(434); + SKIP(430); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') ADVANCE(241); if (lookahead == 'b') - ADVANCE(118); + ADVANCE(119); if (lookahead == 'c') ADVANCE(124); if (lookahead == 'd') ADVANCE(136); if (lookahead == 'e') - ADVANCE(435); + ADVANCE(431); if (lookahead == 'f') ADVANCE(244); if (lookahead == 'g') @@ -6569,8 +6579,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(205); if (lookahead == 't') ADVANCE(215); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == 'w') ADVANCE(218); if (lookahead == 'y') @@ -6579,6 +6587,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(231); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6586,34 +6597,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(433); + SKIP(429); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 434: + case 430: if (lookahead == '\n') - SKIP(433); + SKIP(429); END_STATE(); - case 435: + case 431: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') - ADVANCE(418); + ADVANCE(416); if (lookahead == 'x') ADVANCE(243); if (lookahead == '+' || lookahead == '-') ADVANCE(62); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(79); + ADVANCE(83); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 436: + case 432: if (lookahead == 0) ADVANCE(1); if (lookahead == '\"') @@ -6634,24 +6645,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(49); if (lookahead == '@') ADVANCE(77); - if (lookahead == 'E') + if (lookahead == 'B') ADVANCE(78); + if (lookahead == 'E') + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); + if (lookahead == 'R') + ADVANCE(78); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(437); + SKIP(433); if (lookahead == '`') - ADVANCE(101); + ADVANCE(79); if (lookahead == 'a') ADVANCE(241); if (lookahead == 'b') - ADVANCE(118); + ADVANCE(119); if (lookahead == 'c') ADVANCE(124); if (lookahead == 'd') @@ -6674,8 +6689,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(205); if (lookahead == 't') ADVANCE(215); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == 'w') ADVANCE(218); if (lookahead == 'y') @@ -6684,6 +6697,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(231); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6691,18 +6707,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(436); + SKIP(432); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 437: + case 433: if (lookahead == '\n') - SKIP(436); + SKIP(432); END_STATE(); - case 438: + case 434: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -6722,47 +6738,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(49); if (lookahead == 'E') - ADVANCE(78); + ADVANCE(82); if (lookahead == 'F') - ADVANCE(83); + ADVANCE(86); if (lookahead == 'N') - ADVANCE(88); + ADVANCE(91); if (lookahead == 'T') - ADVANCE(92); + ADVANCE(95); if (lookahead == '[') - ADVANCE(96); + ADVANCE(99); if (lookahead == '\\') - SKIP(439); + SKIP(435); if (lookahead == ']') - ADVANCE(98); - if (lookahead == '`') ADVANCE(101); + if (lookahead == '`') + ADVANCE(79); if (lookahead == 'a') ADVANCE(252); - if (lookahead == 'b') - ADVANCE(119); if (lookahead == 'e') ADVANCE(242); if (lookahead == 'f') - ADVANCE(440); + ADVANCE(436); if (lookahead == 'i') - ADVANCE(441); + ADVANCE(437); if (lookahead == 'l') ADVANCE(180); if (lookahead == 'n') ADVANCE(253); if (lookahead == 'p') ADVANCE(255); - if (lookahead == 'r') - ADVANCE(119); - if (lookahead == 'u') - ADVANCE(119); if (lookahead == '{') ADVANCE(231); if (lookahead == '}') ADVANCE(234); if (lookahead == '~') ADVANCE(235); + if (lookahead == 'B' || + lookahead == 'b') + ADVANCE(78); + if (lookahead == 'R' || + lookahead == 'r') + ADVANCE(78); + if (lookahead == 'U' || + lookahead == 'u') + ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6770,18 +6789,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) - SKIP(438); + SKIP(434); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 439: + case 435: if (lookahead == '\n') - SKIP(438); + SKIP(434); END_STATE(); - case 440: + case 436: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') ADVANCE(160); @@ -6789,9 +6808,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); - case 441: + case 437: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'f') ADVANCE(172); @@ -6799,7 +6818,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(82); + ADVANCE(81); END_STATE(); default: return false; @@ -6847,919 +6866,919 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [37] = {.lex_state = 0}, [38] = {.lex_state = 292, .external_lex_state = 2}, [39] = {.lex_state = 290, .external_lex_state = 2}, - [40] = {.lex_state = 310, .external_lex_state = 2}, + [40] = {.lex_state = 292, .external_lex_state = 2}, [41] = {.lex_state = 266, .external_lex_state = 2}, [42] = {.lex_state = 236}, [43] = {.lex_state = 0}, - [44] = {.lex_state = 316, .external_lex_state = 2}, + [44] = {.lex_state = 310, .external_lex_state = 2}, [45] = {.lex_state = 266, .external_lex_state = 2}, - [46] = {.lex_state = 320, .external_lex_state = 2}, - [47] = {.lex_state = 322, .external_lex_state = 2}, - [48] = {.lex_state = 324}, - [49] = {.lex_state = 324}, + [46] = {.lex_state = 314, .external_lex_state = 2}, + [47] = {.lex_state = 316, .external_lex_state = 2}, + [48] = {.lex_state = 318}, + [49] = {.lex_state = 318}, [50] = {.lex_state = 0}, - [51] = {.lex_state = 324}, + [51] = {.lex_state = 318}, [52] = {.lex_state = 250}, [53] = {.lex_state = 290, .external_lex_state = 2}, [54] = {.lex_state = 0}, - [55] = {.lex_state = 327}, + [55] = {.lex_state = 321}, [56] = {.lex_state = 261}, [57] = {.lex_state = 268}, [58] = {.lex_state = 285}, - [59] = {.lex_state = 355}, + [59] = {.lex_state = 349}, [60] = {.lex_state = 288}, - [61] = {.lex_state = 327}, + [61] = {.lex_state = 321}, [62] = {.lex_state = 288}, - [63] = {.lex_state = 327}, + [63] = {.lex_state = 321}, [64] = {.lex_state = 261}, [65] = {.lex_state = 0}, - [66] = {.lex_state = 327}, - [67] = {.lex_state = 327}, + [66] = {.lex_state = 321}, + [67] = {.lex_state = 321}, [68] = {.lex_state = 0}, [69] = {.lex_state = 250}, - [70] = {.lex_state = 357, .external_lex_state = 2}, + [70] = {.lex_state = 351, .external_lex_state = 2}, [71] = {.lex_state = 261}, [72] = {.lex_state = 261}, [73] = {.lex_state = 268}, [74] = {.lex_state = 285}, [75] = {.lex_state = 288}, - [76] = {.lex_state = 357, .external_lex_state = 2}, + [76] = {.lex_state = 351, .external_lex_state = 2}, [77] = {.lex_state = 288}, - [78] = {.lex_state = 360, .external_lex_state = 2}, + [78] = {.lex_state = 354, .external_lex_state = 2}, [79] = {.lex_state = 261}, - [80] = {.lex_state = 320, .external_lex_state = 2}, - [81] = {.lex_state = 362, .external_lex_state = 2}, - [82] = {.lex_state = 364, .external_lex_state = 2}, - [83] = {.lex_state = 362, .external_lex_state = 2}, + [80] = {.lex_state = 314, .external_lex_state = 2}, + [81] = {.lex_state = 356, .external_lex_state = 2}, + [82] = {.lex_state = 351, .external_lex_state = 2}, + [83] = {.lex_state = 356, .external_lex_state = 2}, [84] = {.lex_state = 266, .external_lex_state = 2}, - [85] = {.lex_state = 362, .external_lex_state = 2}, + [85] = {.lex_state = 356, .external_lex_state = 2}, [86] = {.lex_state = 266, .external_lex_state = 2}, [87] = {.lex_state = 261}, - [88] = {.lex_state = 261}, - [89] = {.lex_state = 268}, - [90] = {.lex_state = 285}, - [91] = {.lex_state = 366, .external_lex_state = 2}, - [92] = {.lex_state = 261}, - [93] = {.lex_state = 368, .external_lex_state = 2}, - [94] = {.lex_state = 370, .external_lex_state = 2}, - [95] = {.lex_state = 357, .external_lex_state = 2}, - [96] = {.lex_state = 236}, - [97] = {.lex_state = 372, .external_lex_state = 2}, - [98] = {.lex_state = 266, .external_lex_state = 2}, - [99] = {.lex_state = 261}, - [100] = {.lex_state = 268}, - [101] = {.lex_state = 285}, - [102] = {.lex_state = 327}, - [103] = {.lex_state = 261}, - [104] = {.lex_state = 0}, - [105] = {.lex_state = 327}, + [88] = {.lex_state = 250}, + [89] = {.lex_state = 358, .external_lex_state = 2}, + [90] = {.lex_state = 261}, + [91] = {.lex_state = 268}, + [92] = {.lex_state = 285}, + [93] = {.lex_state = 288}, + [94] = {.lex_state = 358, .external_lex_state = 2}, + [95] = {.lex_state = 288}, + [96] = {.lex_state = 364, .external_lex_state = 2}, + [97] = {.lex_state = 261}, + [98] = {.lex_state = 366, .external_lex_state = 2}, + [99] = {.lex_state = 368, .external_lex_state = 2}, + [100] = {.lex_state = 358, .external_lex_state = 2}, + [101] = {.lex_state = 368, .external_lex_state = 2}, + [102] = {.lex_state = 236}, + [103] = {.lex_state = 370, .external_lex_state = 2}, + [104] = {.lex_state = 266, .external_lex_state = 2}, + [105] = {.lex_state = 261}, [106] = {.lex_state = 268}, - [107] = {.lex_state = 327}, - [108] = {.lex_state = 0}, - [109] = {.lex_state = 327}, + [107] = {.lex_state = 285}, + [108] = {.lex_state = 321}, + [109] = {.lex_state = 261}, [110] = {.lex_state = 0}, - [111] = {.lex_state = 372, .external_lex_state = 3}, - [112] = {.lex_state = 261}, - [113] = {.lex_state = 268}, - [114] = {.lex_state = 285}, - [115] = {.lex_state = 327}, - [116] = {.lex_state = 261}, - [117] = {.lex_state = 0}, - [118] = {.lex_state = 327}, - [119] = {.lex_state = 327}, - [120] = {.lex_state = 236}, - [121] = {.lex_state = 0}, - [122] = {.lex_state = 320, .external_lex_state = 2}, - [123] = {.lex_state = 320, .external_lex_state = 2}, - [124] = {.lex_state = 379, .external_lex_state = 2}, - [125] = {.lex_state = 0}, - [126] = {.lex_state = 382, .external_lex_state = 2}, - [127] = {.lex_state = 384, .external_lex_state = 2}, - [128] = {.lex_state = 290, .external_lex_state = 2}, - [129] = {.lex_state = 292, .external_lex_state = 2}, - [130] = {.lex_state = 290, .external_lex_state = 2}, - [131] = {.lex_state = 250}, - [132] = {.lex_state = 288}, - [133] = {.lex_state = 0}, - [134] = {.lex_state = 261}, - [135] = {.lex_state = 0}, - [136] = {.lex_state = 0}, - [137] = {.lex_state = 0}, - [138] = {.lex_state = 0}, + [111] = {.lex_state = 321}, + [112] = {.lex_state = 268}, + [113] = {.lex_state = 321}, + [114] = {.lex_state = 0}, + [115] = {.lex_state = 321}, + [116] = {.lex_state = 0}, + [117] = {.lex_state = 370, .external_lex_state = 3}, + [118] = {.lex_state = 261}, + [119] = {.lex_state = 268}, + [120] = {.lex_state = 285}, + [121] = {.lex_state = 321}, + [122] = {.lex_state = 261}, + [123] = {.lex_state = 0}, + [124] = {.lex_state = 321}, + [125] = {.lex_state = 321}, + [126] = {.lex_state = 236}, + [127] = {.lex_state = 0}, + [128] = {.lex_state = 314, .external_lex_state = 2}, + [129] = {.lex_state = 314, .external_lex_state = 2}, + [130] = {.lex_state = 377, .external_lex_state = 2}, + [131] = {.lex_state = 0}, + [132] = {.lex_state = 380, .external_lex_state = 2}, + [133] = {.lex_state = 382, .external_lex_state = 2}, + [134] = {.lex_state = 290, .external_lex_state = 2}, + [135] = {.lex_state = 292, .external_lex_state = 2}, + [136] = {.lex_state = 290, .external_lex_state = 2}, + [137] = {.lex_state = 250}, + [138] = {.lex_state = 288}, [139] = {.lex_state = 0}, [140] = {.lex_state = 261}, - [141] = {.lex_state = 266, .external_lex_state = 2}, + [141] = {.lex_state = 0}, [142] = {.lex_state = 0}, - [143] = {.lex_state = 288}, - [144] = {.lex_state = 261}, - [145] = {.lex_state = 268}, - [146] = {.lex_state = 285}, - [147] = {.lex_state = 290, .external_lex_state = 2}, - [148] = {.lex_state = 327}, - [149] = {.lex_state = 261}, - [150] = {.lex_state = 0}, - [151] = {.lex_state = 0}, - [152] = {.lex_state = 327}, - [153] = {.lex_state = 0}, - [154] = {.lex_state = 288}, + [143] = {.lex_state = 0}, + [144] = {.lex_state = 0}, + [145] = {.lex_state = 0}, + [146] = {.lex_state = 261}, + [147] = {.lex_state = 266, .external_lex_state = 2}, + [148] = {.lex_state = 0}, + [149] = {.lex_state = 288}, + [150] = {.lex_state = 261}, + [151] = {.lex_state = 268}, + [152] = {.lex_state = 285}, + [153] = {.lex_state = 290, .external_lex_state = 2}, + [154] = {.lex_state = 321}, [155] = {.lex_state = 261}, - [156] = {.lex_state = 268}, - [157] = {.lex_state = 285}, - [158] = {.lex_state = 290, .external_lex_state = 2}, - [159] = {.lex_state = 327}, - [160] = {.lex_state = 261}, - [161] = {.lex_state = 0}, - [162] = {.lex_state = 0}, - [163] = {.lex_state = 0}, - [164] = {.lex_state = 327}, - [165] = {.lex_state = 0}, - [166] = {.lex_state = 270, .external_lex_state = 2}, - [167] = {.lex_state = 270, .external_lex_state = 2}, - [168] = {.lex_state = 310, .external_lex_state = 2}, - [169] = {.lex_state = 250}, - [170] = {.lex_state = 250}, - [171] = {.lex_state = 386, .external_lex_state = 2}, - [172] = {.lex_state = 261}, - [173] = {.lex_state = 261}, - [174] = {.lex_state = 261}, - [175] = {.lex_state = 388, .external_lex_state = 2}, - [176] = {.lex_state = 246}, - [177] = {.lex_state = 288}, - [178] = {.lex_state = 268}, - [179] = {.lex_state = 268}, - [180] = {.lex_state = 268}, - [181] = {.lex_state = 0}, - [182] = {.lex_state = 268}, - [183] = {.lex_state = 268}, + [156] = {.lex_state = 0}, + [157] = {.lex_state = 0}, + [158] = {.lex_state = 321}, + [159] = {.lex_state = 0}, + [160] = {.lex_state = 288}, + [161] = {.lex_state = 261}, + [162] = {.lex_state = 268}, + [163] = {.lex_state = 285}, + [164] = {.lex_state = 290, .external_lex_state = 2}, + [165] = {.lex_state = 321}, + [166] = {.lex_state = 261}, + [167] = {.lex_state = 0}, + [168] = {.lex_state = 0}, + [169] = {.lex_state = 0}, + [170] = {.lex_state = 321}, + [171] = {.lex_state = 0}, + [172] = {.lex_state = 270, .external_lex_state = 2}, + [173] = {.lex_state = 270, .external_lex_state = 2}, + [174] = {.lex_state = 292, .external_lex_state = 2}, + [175] = {.lex_state = 250}, + [176] = {.lex_state = 250}, + [177] = {.lex_state = 384, .external_lex_state = 2}, + [178] = {.lex_state = 261}, + [179] = {.lex_state = 261}, + [180] = {.lex_state = 261}, + [181] = {.lex_state = 386, .external_lex_state = 2}, + [182] = {.lex_state = 246}, + [183] = {.lex_state = 288}, [184] = {.lex_state = 268}, [185] = {.lex_state = 268}, [186] = {.lex_state = 268}, - [187] = {.lex_state = 390}, - [188] = {.lex_state = 288}, - [189] = {.lex_state = 290, .external_lex_state = 2}, - [190] = {.lex_state = 392, .external_lex_state = 2}, - [191] = {.lex_state = 236}, - [192] = {.lex_state = 236}, - [193] = {.lex_state = 0}, - [194] = {.lex_state = 246}, - [195] = {.lex_state = 316, .external_lex_state = 2}, - [196] = {.lex_state = 396, .external_lex_state = 2}, - [197] = {.lex_state = 320, .external_lex_state = 2}, - [198] = {.lex_state = 246}, - [199] = {.lex_state = 246}, - [200] = {.lex_state = 324}, - [201] = {.lex_state = 246}, - [202] = {.lex_state = 0}, - [203] = {.lex_state = 324}, - [204] = {.lex_state = 327}, - [205] = {.lex_state = 0}, - [206] = {.lex_state = 0}, - [207] = {.lex_state = 0}, - [208] = {.lex_state = 290, .external_lex_state = 2}, - [209] = {.lex_state = 0}, - [210] = {.lex_state = 327}, - [211] = {.lex_state = 261}, + [187] = {.lex_state = 0}, + [188] = {.lex_state = 268}, + [189] = {.lex_state = 268}, + [190] = {.lex_state = 268}, + [191] = {.lex_state = 268}, + [192] = {.lex_state = 268}, + [193] = {.lex_state = 388}, + [194] = {.lex_state = 288}, + [195] = {.lex_state = 290, .external_lex_state = 2}, + [196] = {.lex_state = 390, .external_lex_state = 2}, + [197] = {.lex_state = 236}, + [198] = {.lex_state = 236}, + [199] = {.lex_state = 0}, + [200] = {.lex_state = 246}, + [201] = {.lex_state = 310, .external_lex_state = 2}, + [202] = {.lex_state = 394, .external_lex_state = 2}, + [203] = {.lex_state = 314, .external_lex_state = 2}, + [204] = {.lex_state = 246}, + [205] = {.lex_state = 246}, + [206] = {.lex_state = 318}, + [207] = {.lex_state = 246}, + [208] = {.lex_state = 0}, + [209] = {.lex_state = 318}, + [210] = {.lex_state = 321}, + [211] = {.lex_state = 0}, [212] = {.lex_state = 0}, - [213] = {.lex_state = 261}, - [214] = {.lex_state = 261}, - [215] = {.lex_state = 268}, - [216] = {.lex_state = 285}, - [217] = {.lex_state = 327}, - [218] = {.lex_state = 261}, - [219] = {.lex_state = 0}, - [220] = {.lex_state = 0}, - [221] = {.lex_state = 327}, - [222] = {.lex_state = 0}, - [223] = {.lex_state = 327}, - [224] = {.lex_state = 0}, + [213] = {.lex_state = 0}, + [214] = {.lex_state = 290, .external_lex_state = 2}, + [215] = {.lex_state = 0}, + [216] = {.lex_state = 321}, + [217] = {.lex_state = 261}, + [218] = {.lex_state = 0}, + [219] = {.lex_state = 261}, + [220] = {.lex_state = 261}, + [221] = {.lex_state = 268}, + [222] = {.lex_state = 285}, + [223] = {.lex_state = 321}, + [224] = {.lex_state = 261}, [225] = {.lex_state = 0}, [226] = {.lex_state = 0}, - [227] = {.lex_state = 327}, + [227] = {.lex_state = 321}, [228] = {.lex_state = 0}, - [229] = {.lex_state = 0}, + [229] = {.lex_state = 321}, [230] = {.lex_state = 0}, [231] = {.lex_state = 0}, - [232] = {.lex_state = 327}, - [233] = {.lex_state = 327}, - [234] = {.lex_state = 327}, - [235] = {.lex_state = 290, .external_lex_state = 2}, - [236] = {.lex_state = 250}, - [237] = {.lex_state = 261}, - [238] = {.lex_state = 268}, - [239] = {.lex_state = 261}, - [240] = {.lex_state = 261}, - [241] = {.lex_state = 0}, - [242] = {.lex_state = 0}, - [243] = {.lex_state = 0}, - [244] = {.lex_state = 246}, - [245] = {.lex_state = 288}, - [246] = {.lex_state = 268}, - [247] = {.lex_state = 268}, - [248] = {.lex_state = 268}, + [232] = {.lex_state = 0}, + [233] = {.lex_state = 321}, + [234] = {.lex_state = 0}, + [235] = {.lex_state = 0}, + [236] = {.lex_state = 0}, + [237] = {.lex_state = 0}, + [238] = {.lex_state = 321}, + [239] = {.lex_state = 321}, + [240] = {.lex_state = 321}, + [241] = {.lex_state = 290, .external_lex_state = 2}, + [242] = {.lex_state = 250}, + [243] = {.lex_state = 261}, + [244] = {.lex_state = 268}, + [245] = {.lex_state = 261}, + [246] = {.lex_state = 261}, + [247] = {.lex_state = 0}, + [248] = {.lex_state = 0}, [249] = {.lex_state = 0}, - [250] = {.lex_state = 268}, - [251] = {.lex_state = 268}, + [250] = {.lex_state = 246}, + [251] = {.lex_state = 288}, [252] = {.lex_state = 268}, [253] = {.lex_state = 268}, [254] = {.lex_state = 268}, - [255] = {.lex_state = 390}, - [256] = {.lex_state = 288}, - [257] = {.lex_state = 327}, - [258] = {.lex_state = 0}, - [259] = {.lex_state = 357, .external_lex_state = 2}, - [260] = {.lex_state = 0}, - [261] = {.lex_state = 0}, - [262] = {.lex_state = 0}, - [263] = {.lex_state = 362, .external_lex_state = 2}, - [264] = {.lex_state = 362, .external_lex_state = 2}, - [265] = {.lex_state = 357, .external_lex_state = 2}, - [266] = {.lex_state = 261}, + [255] = {.lex_state = 0}, + [256] = {.lex_state = 268}, + [257] = {.lex_state = 268}, + [258] = {.lex_state = 268}, + [259] = {.lex_state = 268}, + [260] = {.lex_state = 268}, + [261] = {.lex_state = 388}, + [262] = {.lex_state = 288}, + [263] = {.lex_state = 321}, + [264] = {.lex_state = 0}, + [265] = {.lex_state = 351, .external_lex_state = 2}, + [266] = {.lex_state = 0}, [267] = {.lex_state = 0}, [268] = {.lex_state = 0}, - [269] = {.lex_state = 357, .external_lex_state = 2}, - [270] = {.lex_state = 0}, - [271] = {.lex_state = 0}, - [272] = {.lex_state = 0}, - [273] = {.lex_state = 357, .external_lex_state = 2}, + [269] = {.lex_state = 356, .external_lex_state = 2}, + [270] = {.lex_state = 356, .external_lex_state = 2}, + [271] = {.lex_state = 351, .external_lex_state = 2}, + [272] = {.lex_state = 261}, + [273] = {.lex_state = 0}, [274] = {.lex_state = 0}, - [275] = {.lex_state = 0}, + [275] = {.lex_state = 351, .external_lex_state = 2}, [276] = {.lex_state = 0}, [277] = {.lex_state = 0}, - [278] = {.lex_state = 366, .external_lex_state = 2}, - [279] = {.lex_state = 360, .external_lex_state = 2}, - [280] = {.lex_state = 261, .external_lex_state = 2}, - [281] = {.lex_state = 320, .external_lex_state = 2}, - [282] = {.lex_state = 261}, - [283] = {.lex_state = 261}, - [284] = {.lex_state = 261}, - [285] = {.lex_state = 246}, - [286] = {.lex_state = 288}, - [287] = {.lex_state = 268}, - [288] = {.lex_state = 268}, - [289] = {.lex_state = 268}, - [290] = {.lex_state = 0}, - [291] = {.lex_state = 268}, - [292] = {.lex_state = 268}, + [278] = {.lex_state = 0}, + [279] = {.lex_state = 351, .external_lex_state = 2}, + [280] = {.lex_state = 0}, + [281] = {.lex_state = 0}, + [282] = {.lex_state = 0}, + [283] = {.lex_state = 0}, + [284] = {.lex_state = 354, .external_lex_state = 2}, + [285] = {.lex_state = 354, .external_lex_state = 2}, + [286] = {.lex_state = 261, .external_lex_state = 2}, + [287] = {.lex_state = 314, .external_lex_state = 2}, + [288] = {.lex_state = 261}, + [289] = {.lex_state = 261}, + [290] = {.lex_state = 261}, + [291] = {.lex_state = 246}, + [292] = {.lex_state = 288}, [293] = {.lex_state = 268}, [294] = {.lex_state = 268}, [295] = {.lex_state = 268}, - [296] = {.lex_state = 390}, - [297] = {.lex_state = 288}, - [298] = {.lex_state = 357, .external_lex_state = 2}, - [299] = {.lex_state = 398, .external_lex_state = 2}, - [300] = {.lex_state = 261}, - [301] = {.lex_state = 320, .external_lex_state = 2}, - [302] = {.lex_state = 261, .external_lex_state = 2}, - [303] = {.lex_state = 320, .external_lex_state = 2}, - [304] = {.lex_state = 261}, - [305] = {.lex_state = 268}, - [306] = {.lex_state = 285}, - [307] = {.lex_state = 402, .external_lex_state = 2}, - [308] = {.lex_state = 261}, - [309] = {.lex_state = 404, .external_lex_state = 2}, - [310] = {.lex_state = 406, .external_lex_state = 2}, - [311] = {.lex_state = 370, .external_lex_state = 2}, - [312] = {.lex_state = 261}, - [313] = {.lex_state = 0}, - [314] = {.lex_state = 366, .external_lex_state = 2}, - [315] = {.lex_state = 261}, - [316] = {.lex_state = 263, .external_lex_state = 2}, - [317] = {.lex_state = 261}, - [318] = {.lex_state = 261}, - [319] = {.lex_state = 261}, - [320] = {.lex_state = 408, .external_lex_state = 2}, - [321] = {.lex_state = 268}, - [322] = {.lex_state = 268}, - [323] = {.lex_state = 268}, + [296] = {.lex_state = 0}, + [297] = {.lex_state = 268}, + [298] = {.lex_state = 268}, + [299] = {.lex_state = 268}, + [300] = {.lex_state = 268}, + [301] = {.lex_state = 268}, + [302] = {.lex_state = 388}, + [303] = {.lex_state = 288}, + [304] = {.lex_state = 351, .external_lex_state = 2}, + [305] = {.lex_state = 396, .external_lex_state = 2}, + [306] = {.lex_state = 261}, + [307] = {.lex_state = 314, .external_lex_state = 2}, + [308] = {.lex_state = 261, .external_lex_state = 2}, + [309] = {.lex_state = 314, .external_lex_state = 2}, + [310] = {.lex_state = 261}, + [311] = {.lex_state = 268}, + [312] = {.lex_state = 285}, + [313] = {.lex_state = 400, .external_lex_state = 2}, + [314] = {.lex_state = 261}, + [315] = {.lex_state = 402, .external_lex_state = 2}, + [316] = {.lex_state = 404, .external_lex_state = 2}, + [317] = {.lex_state = 358, .external_lex_state = 2}, + [318] = {.lex_state = 0}, + [319] = {.lex_state = 0}, + [320] = {.lex_state = 0}, + [321] = {.lex_state = 368, .external_lex_state = 2}, + [322] = {.lex_state = 358, .external_lex_state = 2}, + [323] = {.lex_state = 261}, [324] = {.lex_state = 0}, - [325] = {.lex_state = 268}, - [326] = {.lex_state = 268}, - [327] = {.lex_state = 268}, - [328] = {.lex_state = 268}, - [329] = {.lex_state = 268}, - [330] = {.lex_state = 390}, - [331] = {.lex_state = 410, .external_lex_state = 2}, - [332] = {.lex_state = 236}, - [333] = {.lex_state = 266, .external_lex_state = 2}, - [334] = {.lex_state = 372, .external_lex_state = 2}, - [335] = {.lex_state = 266, .external_lex_state = 2}, - [336] = {.lex_state = 0}, - [337] = {.lex_state = 261}, - [338] = {.lex_state = 0}, - [339] = {.lex_state = 327}, + [325] = {.lex_state = 0}, + [326] = {.lex_state = 358, .external_lex_state = 2}, + [327] = {.lex_state = 0}, + [328] = {.lex_state = 0}, + [329] = {.lex_state = 0}, + [330] = {.lex_state = 358, .external_lex_state = 2}, + [331] = {.lex_state = 0}, + [332] = {.lex_state = 0}, + [333] = {.lex_state = 0}, + [334] = {.lex_state = 0}, + [335] = {.lex_state = 364, .external_lex_state = 2}, + [336] = {.lex_state = 364, .external_lex_state = 2}, + [337] = {.lex_state = 368, .external_lex_state = 2}, + [338] = {.lex_state = 261}, + [339] = {.lex_state = 263, .external_lex_state = 2}, [340] = {.lex_state = 261}, - [341] = {.lex_state = 372, .external_lex_state = 3}, + [341] = {.lex_state = 261}, [342] = {.lex_state = 261}, - [343] = {.lex_state = 261}, - [344] = {.lex_state = 268}, - [345] = {.lex_state = 268}, + [343] = {.lex_state = 406, .external_lex_state = 2}, + [344] = {.lex_state = 246}, + [345] = {.lex_state = 288}, [346] = {.lex_state = 268}, - [347] = {.lex_state = 0}, + [347] = {.lex_state = 268}, [348] = {.lex_state = 268}, - [349] = {.lex_state = 268}, + [349] = {.lex_state = 0}, [350] = {.lex_state = 268}, [351] = {.lex_state = 268}, [352] = {.lex_state = 268}, - [353] = {.lex_state = 390}, - [354] = {.lex_state = 0}, - [355] = {.lex_state = 327}, - [356] = {.lex_state = 261}, - [357] = {.lex_state = 412}, - [358] = {.lex_state = 268}, - [359] = {.lex_state = 268}, - [360] = {.lex_state = 268}, - [361] = {.lex_state = 268}, - [362] = {.lex_state = 268}, - [363] = {.lex_state = 268}, - [364] = {.lex_state = 268}, + [353] = {.lex_state = 268}, + [354] = {.lex_state = 268}, + [355] = {.lex_state = 388}, + [356] = {.lex_state = 288}, + [357] = {.lex_state = 358, .external_lex_state = 2}, + [358] = {.lex_state = 408, .external_lex_state = 2}, + [359] = {.lex_state = 236}, + [360] = {.lex_state = 266, .external_lex_state = 2}, + [361] = {.lex_state = 370, .external_lex_state = 2}, + [362] = {.lex_state = 266, .external_lex_state = 2}, + [363] = {.lex_state = 0}, + [364] = {.lex_state = 261}, [365] = {.lex_state = 0}, - [366] = {.lex_state = 372, .external_lex_state = 3}, - [367] = {.lex_state = 236, .external_lex_state = 4}, - [368] = {.lex_state = 266, .external_lex_state = 2}, - [369] = {.lex_state = 415}, - [370] = {.lex_state = 0}, - [371] = {.lex_state = 327}, - [372] = {.lex_state = 261}, - [373] = {.lex_state = 0}, - [374] = {.lex_state = 327}, - [375] = {.lex_state = 261}, - [376] = {.lex_state = 372, .external_lex_state = 3}, - [377] = {.lex_state = 0}, - [378] = {.lex_state = 261}, - [379] = {.lex_state = 261}, - [380] = {.lex_state = 261}, - [381] = {.lex_state = 261}, - [382] = {.lex_state = 268}, - [383] = {.lex_state = 268}, - [384] = {.lex_state = 268}, - [385] = {.lex_state = 0}, + [366] = {.lex_state = 321}, + [367] = {.lex_state = 261}, + [368] = {.lex_state = 370, .external_lex_state = 3}, + [369] = {.lex_state = 261}, + [370] = {.lex_state = 261}, + [371] = {.lex_state = 268}, + [372] = {.lex_state = 268}, + [373] = {.lex_state = 268}, + [374] = {.lex_state = 0}, + [375] = {.lex_state = 268}, + [376] = {.lex_state = 268}, + [377] = {.lex_state = 268}, + [378] = {.lex_state = 268}, + [379] = {.lex_state = 268}, + [380] = {.lex_state = 388}, + [381] = {.lex_state = 0}, + [382] = {.lex_state = 321}, + [383] = {.lex_state = 261}, + [384] = {.lex_state = 410}, + [385] = {.lex_state = 268}, [386] = {.lex_state = 268}, [387] = {.lex_state = 268}, [388] = {.lex_state = 268}, [389] = {.lex_state = 268}, [390] = {.lex_state = 268}, - [391] = {.lex_state = 390}, - [392] = {.lex_state = 327}, - [393] = {.lex_state = 285}, - [394] = {.lex_state = 419}, - [395] = {.lex_state = 246}, - [396] = {.lex_state = 320, .external_lex_state = 2}, - [397] = {.lex_state = 320, .external_lex_state = 2}, - [398] = {.lex_state = 261}, - [399] = {.lex_state = 288}, - [400] = {.lex_state = 372, .external_lex_state = 3}, - [401] = {.lex_state = 0}, - [402] = {.lex_state = 382, .external_lex_state = 2}, - [403] = {.lex_state = 0}, - [404] = {.lex_state = 288}, - [405] = {.lex_state = 422, .external_lex_state = 2}, - [406] = {.lex_state = 0}, - [407] = {.lex_state = 0}, + [391] = {.lex_state = 268}, + [392] = {.lex_state = 0}, + [393] = {.lex_state = 370, .external_lex_state = 3}, + [394] = {.lex_state = 236, .external_lex_state = 4}, + [395] = {.lex_state = 266, .external_lex_state = 2}, + [396] = {.lex_state = 413}, + [397] = {.lex_state = 0}, + [398] = {.lex_state = 321}, + [399] = {.lex_state = 261}, + [400] = {.lex_state = 0}, + [401] = {.lex_state = 321}, + [402] = {.lex_state = 261}, + [403] = {.lex_state = 370, .external_lex_state = 3}, + [404] = {.lex_state = 0}, + [405] = {.lex_state = 261}, + [406] = {.lex_state = 261}, + [407] = {.lex_state = 261}, [408] = {.lex_state = 261}, - [409] = {.lex_state = 261}, + [409] = {.lex_state = 268}, [410] = {.lex_state = 268}, - [411] = {.lex_state = 285}, - [412] = {.lex_state = 327}, - [413] = {.lex_state = 261}, - [414] = {.lex_state = 0}, - [415] = {.lex_state = 327}, - [416] = {.lex_state = 285}, - [417] = {.lex_state = 261}, - [418] = {.lex_state = 261}, - [419] = {.lex_state = 0}, - [420] = {.lex_state = 292, .external_lex_state = 2}, - [421] = {.lex_state = 285}, - [422] = {.lex_state = 261}, - [423] = {.lex_state = 261}, - [424] = {.lex_state = 0}, + [411] = {.lex_state = 268}, + [412] = {.lex_state = 0}, + [413] = {.lex_state = 268}, + [414] = {.lex_state = 268}, + [415] = {.lex_state = 268}, + [416] = {.lex_state = 268}, + [417] = {.lex_state = 268}, + [418] = {.lex_state = 388}, + [419] = {.lex_state = 321}, + [420] = {.lex_state = 285}, + [421] = {.lex_state = 417}, + [422] = {.lex_state = 246}, + [423] = {.lex_state = 314, .external_lex_state = 2}, + [424] = {.lex_state = 314, .external_lex_state = 2}, [425] = {.lex_state = 261}, - [426] = {.lex_state = 261}, - [427] = {.lex_state = 404, .external_lex_state = 2}, - [428] = {.lex_state = 290, .external_lex_state = 2}, - [429] = {.lex_state = 261}, - [430] = {.lex_state = 268}, - [431] = {.lex_state = 285}, - [432] = {.lex_state = 327}, - [433] = {.lex_state = 261}, + [426] = {.lex_state = 288}, + [427] = {.lex_state = 370, .external_lex_state = 3}, + [428] = {.lex_state = 0}, + [429] = {.lex_state = 246}, + [430] = {.lex_state = 380, .external_lex_state = 2}, + [431] = {.lex_state = 0}, + [432] = {.lex_state = 288}, + [433] = {.lex_state = 420, .external_lex_state = 2}, [434] = {.lex_state = 0}, - [435] = {.lex_state = 327}, - [436] = {.lex_state = 0}, + [435] = {.lex_state = 0}, + [436] = {.lex_state = 261}, [437] = {.lex_state = 261}, - [438] = {.lex_state = 0}, - [439] = {.lex_state = 327}, - [440] = {.lex_state = 288}, - [441] = {.lex_state = 0}, - [442] = {.lex_state = 261}, - [443] = {.lex_state = 268}, - [444] = {.lex_state = 261}, + [438] = {.lex_state = 268}, + [439] = {.lex_state = 285}, + [440] = {.lex_state = 321}, + [441] = {.lex_state = 261}, + [442] = {.lex_state = 0}, + [443] = {.lex_state = 321}, + [444] = {.lex_state = 285}, [445] = {.lex_state = 261}, - [446] = {.lex_state = 0}, + [446] = {.lex_state = 261}, [447] = {.lex_state = 0}, - [448] = {.lex_state = 268}, - [449] = {.lex_state = 268}, - [450] = {.lex_state = 268}, - [451] = {.lex_state = 0}, - [452] = {.lex_state = 268}, - [453] = {.lex_state = 268}, - [454] = {.lex_state = 268}, - [455] = {.lex_state = 268}, - [456] = {.lex_state = 268}, - [457] = {.lex_state = 390}, - [458] = {.lex_state = 0}, - [459] = {.lex_state = 290, .external_lex_state = 2}, - [460] = {.lex_state = 261}, + [448] = {.lex_state = 292, .external_lex_state = 2}, + [449] = {.lex_state = 285}, + [450] = {.lex_state = 261}, + [451] = {.lex_state = 261}, + [452] = {.lex_state = 0}, + [453] = {.lex_state = 261}, + [454] = {.lex_state = 261}, + [455] = {.lex_state = 402, .external_lex_state = 2}, + [456] = {.lex_state = 290, .external_lex_state = 2}, + [457] = {.lex_state = 261}, + [458] = {.lex_state = 268}, + [459] = {.lex_state = 285}, + [460] = {.lex_state = 321}, [461] = {.lex_state = 261}, - [462] = {.lex_state = 268}, - [463] = {.lex_state = 285}, - [464] = {.lex_state = 327}, + [462] = {.lex_state = 0}, + [463] = {.lex_state = 321}, + [464] = {.lex_state = 0}, [465] = {.lex_state = 261}, [466] = {.lex_state = 0}, - [467] = {.lex_state = 327}, - [468] = {.lex_state = 0}, - [469] = {.lex_state = 261}, - [470] = {.lex_state = 0}, - [471] = {.lex_state = 327}, - [472] = {.lex_state = 288}, - [473] = {.lex_state = 290, .external_lex_state = 2}, + [467] = {.lex_state = 321}, + [468] = {.lex_state = 288}, + [469] = {.lex_state = 0}, + [470] = {.lex_state = 261}, + [471] = {.lex_state = 268}, + [472] = {.lex_state = 261}, + [473] = {.lex_state = 261}, [474] = {.lex_state = 0}, - [475] = {.lex_state = 288}, - [476] = {.lex_state = 0}, - [477] = {.lex_state = 261}, - [478] = {.lex_state = 261}, - [479] = {.lex_state = 268}, - [480] = {.lex_state = 261}, - [481] = {.lex_state = 261}, - [482] = {.lex_state = 0}, - [483] = {.lex_state = 0}, + [475] = {.lex_state = 0}, + [476] = {.lex_state = 268}, + [477] = {.lex_state = 268}, + [478] = {.lex_state = 268}, + [479] = {.lex_state = 0}, + [480] = {.lex_state = 268}, + [481] = {.lex_state = 268}, + [482] = {.lex_state = 268}, + [483] = {.lex_state = 268}, [484] = {.lex_state = 268}, - [485] = {.lex_state = 268}, - [486] = {.lex_state = 268}, - [487] = {.lex_state = 0}, - [488] = {.lex_state = 268}, - [489] = {.lex_state = 268}, + [485] = {.lex_state = 388}, + [486] = {.lex_state = 0}, + [487] = {.lex_state = 290, .external_lex_state = 2}, + [488] = {.lex_state = 261}, + [489] = {.lex_state = 261}, [490] = {.lex_state = 268}, - [491] = {.lex_state = 268}, - [492] = {.lex_state = 268}, - [493] = {.lex_state = 390}, + [491] = {.lex_state = 285}, + [492] = {.lex_state = 321}, + [493] = {.lex_state = 261}, [494] = {.lex_state = 0}, - [495] = {.lex_state = 0}, - [496] = {.lex_state = 270, .external_lex_state = 2}, - [497] = {.lex_state = 424, .external_lex_state = 2}, - [498] = {.lex_state = 292, .external_lex_state = 2}, - [499] = {.lex_state = 266, .external_lex_state = 2}, - [500] = {.lex_state = 266, .external_lex_state = 2}, - [501] = {.lex_state = 266, .external_lex_state = 2}, - [502] = {.lex_state = 292, .external_lex_state = 2}, - [503] = {.lex_state = 261}, - [504] = {.lex_state = 268}, - [505] = {.lex_state = 285}, - [506] = {.lex_state = 327}, - [507] = {.lex_state = 261}, - [508] = {.lex_state = 0}, - [509] = {.lex_state = 327}, - [510] = {.lex_state = 310, .external_lex_state = 2}, - [511] = {.lex_state = 292, .external_lex_state = 2}, - [512] = {.lex_state = 386, .external_lex_state = 2}, - [513] = {.lex_state = 388, .external_lex_state = 2}, - [514] = {.lex_state = 290, .external_lex_state = 2}, - [515] = {.lex_state = 290, .external_lex_state = 2}, - [516] = {.lex_state = 0}, - [517] = {.lex_state = 288}, - [518] = {.lex_state = 327}, - [519] = {.lex_state = 327}, - [520] = {.lex_state = 0}, - [521] = {.lex_state = 0}, - [522] = {.lex_state = 290, .external_lex_state = 2}, - [523] = {.lex_state = 290, .external_lex_state = 2}, - [524] = {.lex_state = 290, .external_lex_state = 2}, - [525] = {.lex_state = 268}, - [526] = {.lex_state = 290, .external_lex_state = 2}, - [527] = {.lex_state = 290, .external_lex_state = 2}, - [528] = {.lex_state = 290, .external_lex_state = 2}, - [529] = {.lex_state = 290, .external_lex_state = 2}, - [530] = {.lex_state = 290, .external_lex_state = 2}, - [531] = {.lex_state = 288}, - [532] = {.lex_state = 261}, - [533] = {.lex_state = 268}, - [534] = {.lex_state = 285}, - [535] = {.lex_state = 327}, - [536] = {.lex_state = 261}, - [537] = {.lex_state = 0}, - [538] = {.lex_state = 327}, - [539] = {.lex_state = 0}, - [540] = {.lex_state = 392, .external_lex_state = 2}, - [541] = {.lex_state = 426, .external_lex_state = 2}, - [542] = {.lex_state = 316, .external_lex_state = 2}, - [543] = {.lex_state = 320, .external_lex_state = 2}, - [544] = {.lex_state = 322, .external_lex_state = 2}, - [545] = {.lex_state = 396, .external_lex_state = 2}, - [546] = {.lex_state = 320, .external_lex_state = 2}, - [547] = {.lex_state = 320, .external_lex_state = 2}, - [548] = {.lex_state = 327}, - [549] = {.lex_state = 324}, - [550] = {.lex_state = 246}, - [551] = {.lex_state = 266, .external_lex_state = 2}, - [552] = {.lex_state = 266, .external_lex_state = 2}, - [553] = {.lex_state = 246}, - [554] = {.lex_state = 327}, - [555] = {.lex_state = 327}, - [556] = {.lex_state = 250}, - [557] = {.lex_state = 0}, - [558] = {.lex_state = 0}, - [559] = {.lex_state = 0}, + [495] = {.lex_state = 321}, + [496] = {.lex_state = 0}, + [497] = {.lex_state = 261}, + [498] = {.lex_state = 0}, + [499] = {.lex_state = 321}, + [500] = {.lex_state = 288}, + [501] = {.lex_state = 290, .external_lex_state = 2}, + [502] = {.lex_state = 0}, + [503] = {.lex_state = 288}, + [504] = {.lex_state = 0}, + [505] = {.lex_state = 261}, + [506] = {.lex_state = 261}, + [507] = {.lex_state = 268}, + [508] = {.lex_state = 261}, + [509] = {.lex_state = 261}, + [510] = {.lex_state = 0}, + [511] = {.lex_state = 0}, + [512] = {.lex_state = 268}, + [513] = {.lex_state = 268}, + [514] = {.lex_state = 268}, + [515] = {.lex_state = 0}, + [516] = {.lex_state = 268}, + [517] = {.lex_state = 268}, + [518] = {.lex_state = 268}, + [519] = {.lex_state = 268}, + [520] = {.lex_state = 268}, + [521] = {.lex_state = 388}, + [522] = {.lex_state = 0}, + [523] = {.lex_state = 0}, + [524] = {.lex_state = 270, .external_lex_state = 2}, + [525] = {.lex_state = 422, .external_lex_state = 2}, + [526] = {.lex_state = 292, .external_lex_state = 2}, + [527] = {.lex_state = 266, .external_lex_state = 2}, + [528] = {.lex_state = 266, .external_lex_state = 2}, + [529] = {.lex_state = 266, .external_lex_state = 2}, + [530] = {.lex_state = 292, .external_lex_state = 2}, + [531] = {.lex_state = 261}, + [532] = {.lex_state = 268}, + [533] = {.lex_state = 285}, + [534] = {.lex_state = 321}, + [535] = {.lex_state = 261}, + [536] = {.lex_state = 0}, + [537] = {.lex_state = 321}, + [538] = {.lex_state = 292, .external_lex_state = 2}, + [539] = {.lex_state = 292, .external_lex_state = 2}, + [540] = {.lex_state = 384, .external_lex_state = 2}, + [541] = {.lex_state = 386, .external_lex_state = 2}, + [542] = {.lex_state = 290, .external_lex_state = 2}, + [543] = {.lex_state = 290, .external_lex_state = 2}, + [544] = {.lex_state = 0}, + [545] = {.lex_state = 288}, + [546] = {.lex_state = 321}, + [547] = {.lex_state = 321}, + [548] = {.lex_state = 0}, + [549] = {.lex_state = 0}, + [550] = {.lex_state = 290, .external_lex_state = 2}, + [551] = {.lex_state = 290, .external_lex_state = 2}, + [552] = {.lex_state = 290, .external_lex_state = 2}, + [553] = {.lex_state = 268}, + [554] = {.lex_state = 290, .external_lex_state = 2}, + [555] = {.lex_state = 290, .external_lex_state = 2}, + [556] = {.lex_state = 290, .external_lex_state = 2}, + [557] = {.lex_state = 290, .external_lex_state = 2}, + [558] = {.lex_state = 290, .external_lex_state = 2}, + [559] = {.lex_state = 288}, [560] = {.lex_state = 261}, - [561] = {.lex_state = 0}, - [562] = {.lex_state = 0}, - [563] = {.lex_state = 261}, - [564] = {.lex_state = 0}, - [565] = {.lex_state = 327}, - [566] = {.lex_state = 288}, - [567] = {.lex_state = 261}, - [568] = {.lex_state = 261}, - [569] = {.lex_state = 261}, - [570] = {.lex_state = 0}, - [571] = {.lex_state = 268}, - [572] = {.lex_state = 268}, - [573] = {.lex_state = 268}, - [574] = {.lex_state = 0}, - [575] = {.lex_state = 268}, - [576] = {.lex_state = 268}, - [577] = {.lex_state = 268}, - [578] = {.lex_state = 268}, - [579] = {.lex_state = 268}, - [580] = {.lex_state = 390}, - [581] = {.lex_state = 0}, - [582] = {.lex_state = 327}, - [583] = {.lex_state = 288}, - [584] = {.lex_state = 0}, + [561] = {.lex_state = 268}, + [562] = {.lex_state = 285}, + [563] = {.lex_state = 321}, + [564] = {.lex_state = 261}, + [565] = {.lex_state = 0}, + [566] = {.lex_state = 321}, + [567] = {.lex_state = 0}, + [568] = {.lex_state = 390, .external_lex_state = 2}, + [569] = {.lex_state = 310, .external_lex_state = 2}, + [570] = {.lex_state = 310, .external_lex_state = 2}, + [571] = {.lex_state = 314, .external_lex_state = 2}, + [572] = {.lex_state = 316, .external_lex_state = 2}, + [573] = {.lex_state = 394, .external_lex_state = 2}, + [574] = {.lex_state = 314, .external_lex_state = 2}, + [575] = {.lex_state = 314, .external_lex_state = 2}, + [576] = {.lex_state = 321}, + [577] = {.lex_state = 318}, + [578] = {.lex_state = 246}, + [579] = {.lex_state = 266, .external_lex_state = 2}, + [580] = {.lex_state = 266, .external_lex_state = 2}, + [581] = {.lex_state = 246}, + [582] = {.lex_state = 321}, + [583] = {.lex_state = 321}, + [584] = {.lex_state = 250}, [585] = {.lex_state = 0}, - [586] = {.lex_state = 327}, - [587] = {.lex_state = 288}, - [588] = {.lex_state = 327}, + [586] = {.lex_state = 0}, + [587] = {.lex_state = 0}, + [588] = {.lex_state = 261}, [589] = {.lex_state = 0}, - [590] = {.lex_state = 288}, - [591] = {.lex_state = 0}, + [590] = {.lex_state = 0}, + [591] = {.lex_state = 261}, [592] = {.lex_state = 0}, - [593] = {.lex_state = 0}, - [594] = {.lex_state = 327}, - [595] = {.lex_state = 290, .external_lex_state = 2}, - [596] = {.lex_state = 0}, - [597] = {.lex_state = 0}, + [593] = {.lex_state = 321}, + [594] = {.lex_state = 288}, + [595] = {.lex_state = 261}, + [596] = {.lex_state = 261}, + [597] = {.lex_state = 261}, [598] = {.lex_state = 0}, - [599] = {.lex_state = 0}, - [600] = {.lex_state = 327}, - [601] = {.lex_state = 0}, - [602] = {.lex_state = 290, .external_lex_state = 2}, - [603] = {.lex_state = 261}, - [604] = {.lex_state = 0}, - [605] = {.lex_state = 0}, - [606] = {.lex_state = 250}, - [607] = {.lex_state = 0}, - [608] = {.lex_state = 327}, - [609] = {.lex_state = 327}, - [610] = {.lex_state = 0}, - [611] = {.lex_state = 0}, + [599] = {.lex_state = 268}, + [600] = {.lex_state = 268}, + [601] = {.lex_state = 268}, + [602] = {.lex_state = 0}, + [603] = {.lex_state = 268}, + [604] = {.lex_state = 268}, + [605] = {.lex_state = 268}, + [606] = {.lex_state = 268}, + [607] = {.lex_state = 268}, + [608] = {.lex_state = 388}, + [609] = {.lex_state = 0}, + [610] = {.lex_state = 321}, + [611] = {.lex_state = 288}, [612] = {.lex_state = 0}, - [613] = {.lex_state = 327}, - [614] = {.lex_state = 327}, - [615] = {.lex_state = 327}, - [616] = {.lex_state = 268}, - [617] = {.lex_state = 327}, - [618] = {.lex_state = 327}, - [619] = {.lex_state = 327}, - [620] = {.lex_state = 327}, - [621] = {.lex_state = 327}, - [622] = {.lex_state = 0}, - [623] = {.lex_state = 0}, + [613] = {.lex_state = 0}, + [614] = {.lex_state = 321}, + [615] = {.lex_state = 288}, + [616] = {.lex_state = 321}, + [617] = {.lex_state = 0}, + [618] = {.lex_state = 288}, + [619] = {.lex_state = 0}, + [620] = {.lex_state = 0}, + [621] = {.lex_state = 0}, + [622] = {.lex_state = 321}, + [623] = {.lex_state = 290, .external_lex_state = 2}, [624] = {.lex_state = 0}, - [625] = {.lex_state = 357, .external_lex_state = 2}, - [626] = {.lex_state = 357, .external_lex_state = 2}, - [627] = {.lex_state = 250}, - [628] = {.lex_state = 0}, + [625] = {.lex_state = 0}, + [626] = {.lex_state = 0}, + [627] = {.lex_state = 0}, + [628] = {.lex_state = 321}, [629] = {.lex_state = 0}, - [630] = {.lex_state = 362, .external_lex_state = 2}, + [630] = {.lex_state = 290, .external_lex_state = 2}, [631] = {.lex_state = 261}, - [632] = {.lex_state = 357, .external_lex_state = 2}, - [633] = {.lex_state = 288}, - [634] = {.lex_state = 0}, + [632] = {.lex_state = 0}, + [633] = {.lex_state = 0}, + [634] = {.lex_state = 250}, [635] = {.lex_state = 0}, - [636] = {.lex_state = 357, .external_lex_state = 2}, - [637] = {.lex_state = 288}, - [638] = {.lex_state = 357, .external_lex_state = 2}, + [636] = {.lex_state = 321}, + [637] = {.lex_state = 321}, + [638] = {.lex_state = 0}, [639] = {.lex_state = 0}, - [640] = {.lex_state = 288}, - [641] = {.lex_state = 0}, - [642] = {.lex_state = 0}, - [643] = {.lex_state = 0}, - [644] = {.lex_state = 360, .external_lex_state = 2}, - [645] = {.lex_state = 362, .external_lex_state = 2}, - [646] = {.lex_state = 261, .external_lex_state = 2}, - [647] = {.lex_state = 320, .external_lex_state = 2}, - [648] = {.lex_state = 0}, - [649] = {.lex_state = 362, .external_lex_state = 2}, - [650] = {.lex_state = 357, .external_lex_state = 2}, - [651] = {.lex_state = 357, .external_lex_state = 2}, + [640] = {.lex_state = 0}, + [641] = {.lex_state = 321}, + [642] = {.lex_state = 321}, + [643] = {.lex_state = 321}, + [644] = {.lex_state = 268}, + [645] = {.lex_state = 321}, + [646] = {.lex_state = 321}, + [647] = {.lex_state = 321}, + [648] = {.lex_state = 321}, + [649] = {.lex_state = 321}, + [650] = {.lex_state = 0}, + [651] = {.lex_state = 0}, [652] = {.lex_state = 0}, - [653] = {.lex_state = 0}, - [654] = {.lex_state = 0}, - [655] = {.lex_state = 364, .external_lex_state = 2}, - [656] = {.lex_state = 364, .external_lex_state = 2}, - [657] = {.lex_state = 364, .external_lex_state = 2}, - [658] = {.lex_state = 268}, - [659] = {.lex_state = 364, .external_lex_state = 2}, - [660] = {.lex_state = 357, .external_lex_state = 2}, - [661] = {.lex_state = 364, .external_lex_state = 2}, - [662] = {.lex_state = 364, .external_lex_state = 2}, - [663] = {.lex_state = 364, .external_lex_state = 2}, - [664] = {.lex_state = 0}, - [665] = {.lex_state = 0}, - [666] = {.lex_state = 398, .external_lex_state = 2}, - [667] = {.lex_state = 261, .external_lex_state = 2}, - [668] = {.lex_state = 404, .external_lex_state = 2}, - [669] = {.lex_state = 261}, + [653] = {.lex_state = 351, .external_lex_state = 2}, + [654] = {.lex_state = 351, .external_lex_state = 2}, + [655] = {.lex_state = 250}, + [656] = {.lex_state = 0}, + [657] = {.lex_state = 0}, + [658] = {.lex_state = 356, .external_lex_state = 2}, + [659] = {.lex_state = 261}, + [660] = {.lex_state = 351, .external_lex_state = 2}, + [661] = {.lex_state = 288}, + [662] = {.lex_state = 0}, + [663] = {.lex_state = 0}, + [664] = {.lex_state = 351, .external_lex_state = 2}, + [665] = {.lex_state = 288}, + [666] = {.lex_state = 351, .external_lex_state = 2}, + [667] = {.lex_state = 0}, + [668] = {.lex_state = 288}, + [669] = {.lex_state = 0}, [670] = {.lex_state = 0}, - [671] = {.lex_state = 402, .external_lex_state = 2}, - [672] = {.lex_state = 261}, - [673] = {.lex_state = 261}, - [674] = {.lex_state = 261}, - [675] = {.lex_state = 268}, - [676] = {.lex_state = 268}, - [677] = {.lex_state = 268}, - [678] = {.lex_state = 0}, - [679] = {.lex_state = 268}, - [680] = {.lex_state = 268}, - [681] = {.lex_state = 268}, - [682] = {.lex_state = 268}, - [683] = {.lex_state = 268}, - [684] = {.lex_state = 390}, - [685] = {.lex_state = 428, .external_lex_state = 2}, - [686] = {.lex_state = 370, .external_lex_state = 2}, - [687] = {.lex_state = 261}, - [688] = {.lex_state = 366, .external_lex_state = 2}, - [689] = {.lex_state = 404, .external_lex_state = 2}, - [690] = {.lex_state = 370, .external_lex_state = 2}, - [691] = {.lex_state = 0}, - [692] = {.lex_state = 370, .external_lex_state = 2}, - [693] = {.lex_state = 263, .external_lex_state = 2}, - [694] = {.lex_state = 408, .external_lex_state = 2}, - [695] = {.lex_state = 357, .external_lex_state = 2}, - [696] = {.lex_state = 357, .external_lex_state = 2}, - [697] = {.lex_state = 357, .external_lex_state = 2}, - [698] = {.lex_state = 268}, - [699] = {.lex_state = 357, .external_lex_state = 2}, - [700] = {.lex_state = 357, .external_lex_state = 2}, - [701] = {.lex_state = 357, .external_lex_state = 2}, - [702] = {.lex_state = 357, .external_lex_state = 2}, - [703] = {.lex_state = 410, .external_lex_state = 2}, - [704] = {.lex_state = 236}, - [705] = {.lex_state = 372}, + [671] = {.lex_state = 0}, + [672] = {.lex_state = 354, .external_lex_state = 2}, + [673] = {.lex_state = 356, .external_lex_state = 2}, + [674] = {.lex_state = 261, .external_lex_state = 2}, + [675] = {.lex_state = 314, .external_lex_state = 2}, + [676] = {.lex_state = 0}, + [677] = {.lex_state = 356, .external_lex_state = 2}, + [678] = {.lex_state = 351, .external_lex_state = 2}, + [679] = {.lex_state = 351, .external_lex_state = 2}, + [680] = {.lex_state = 0}, + [681] = {.lex_state = 0}, + [682] = {.lex_state = 0}, + [683] = {.lex_state = 351, .external_lex_state = 2}, + [684] = {.lex_state = 351, .external_lex_state = 2}, + [685] = {.lex_state = 351, .external_lex_state = 2}, + [686] = {.lex_state = 268}, + [687] = {.lex_state = 351, .external_lex_state = 2}, + [688] = {.lex_state = 351, .external_lex_state = 2}, + [689] = {.lex_state = 351, .external_lex_state = 2}, + [690] = {.lex_state = 351, .external_lex_state = 2}, + [691] = {.lex_state = 351, .external_lex_state = 2}, + [692] = {.lex_state = 0}, + [693] = {.lex_state = 0}, + [694] = {.lex_state = 396, .external_lex_state = 2}, + [695] = {.lex_state = 261, .external_lex_state = 2}, + [696] = {.lex_state = 402, .external_lex_state = 2}, + [697] = {.lex_state = 261}, + [698] = {.lex_state = 0}, + [699] = {.lex_state = 400, .external_lex_state = 2}, + [700] = {.lex_state = 261}, + [701] = {.lex_state = 261}, + [702] = {.lex_state = 261}, + [703] = {.lex_state = 268}, + [704] = {.lex_state = 268}, + [705] = {.lex_state = 268}, [706] = {.lex_state = 0}, - [707] = {.lex_state = 261}, - [708] = {.lex_state = 327}, - [709] = {.lex_state = 0}, - [710] = {.lex_state = 236, .external_lex_state = 4}, - [711] = {.lex_state = 266, .external_lex_state = 2}, - [712] = {.lex_state = 430}, - [713] = {.lex_state = 430}, - [714] = {.lex_state = 0}, - [715] = {.lex_state = 327}, - [716] = {.lex_state = 327}, - [717] = {.lex_state = 327}, - [718] = {.lex_state = 268}, - [719] = {.lex_state = 327}, - [720] = {.lex_state = 327}, - [721] = {.lex_state = 327}, - [722] = {.lex_state = 327}, + [707] = {.lex_state = 268}, + [708] = {.lex_state = 268}, + [709] = {.lex_state = 268}, + [710] = {.lex_state = 268}, + [711] = {.lex_state = 268}, + [712] = {.lex_state = 388}, + [713] = {.lex_state = 424, .external_lex_state = 2}, + [714] = {.lex_state = 358, .external_lex_state = 2}, + [715] = {.lex_state = 358, .external_lex_state = 2}, + [716] = {.lex_state = 250}, + [717] = {.lex_state = 0}, + [718] = {.lex_state = 0}, + [719] = {.lex_state = 368, .external_lex_state = 2}, + [720] = {.lex_state = 261}, + [721] = {.lex_state = 358, .external_lex_state = 2}, + [722] = {.lex_state = 288}, [723] = {.lex_state = 0}, - [724] = {.lex_state = 327}, - [725] = {.lex_state = 0}, - [726] = {.lex_state = 0}, - [727] = {.lex_state = 327}, - [728] = {.lex_state = 327}, - [729] = {.lex_state = 327}, - [730] = {.lex_state = 327}, - [731] = {.lex_state = 327}, - [732] = {.lex_state = 327}, - [733] = {.lex_state = 327}, - [734] = {.lex_state = 412}, - [735] = {.lex_state = 0}, - [736] = {.lex_state = 236, .external_lex_state = 4}, - [737] = {.lex_state = 266, .external_lex_state = 2}, - [738] = {.lex_state = 433}, - [739] = {.lex_state = 433}, - [740] = {.lex_state = 415}, - [741] = {.lex_state = 266, .external_lex_state = 2}, - [742] = {.lex_state = 261}, - [743] = {.lex_state = 268}, - [744] = {.lex_state = 261}, + [724] = {.lex_state = 0}, + [725] = {.lex_state = 358, .external_lex_state = 2}, + [726] = {.lex_state = 288}, + [727] = {.lex_state = 358, .external_lex_state = 2}, + [728] = {.lex_state = 0}, + [729] = {.lex_state = 288}, + [730] = {.lex_state = 0}, + [731] = {.lex_state = 0}, + [732] = {.lex_state = 0}, + [733] = {.lex_state = 364, .external_lex_state = 2}, + [734] = {.lex_state = 402, .external_lex_state = 2}, + [735] = {.lex_state = 368, .external_lex_state = 2}, + [736] = {.lex_state = 0}, + [737] = {.lex_state = 368, .external_lex_state = 2}, + [738] = {.lex_state = 368, .external_lex_state = 2}, + [739] = {.lex_state = 263, .external_lex_state = 2}, + [740] = {.lex_state = 406, .external_lex_state = 2}, + [741] = {.lex_state = 358, .external_lex_state = 2}, + [742] = {.lex_state = 358, .external_lex_state = 2}, + [743] = {.lex_state = 0}, + [744] = {.lex_state = 0}, [745] = {.lex_state = 0}, - [746] = {.lex_state = 261}, - [747] = {.lex_state = 0}, - [748] = {.lex_state = 246}, - [749] = {.lex_state = 246}, - [750] = {.lex_state = 236, .external_lex_state = 4}, - [751] = {.lex_state = 236, .external_lex_state = 4}, - [752] = {.lex_state = 236, .external_lex_state = 4}, - [753] = {.lex_state = 236, .external_lex_state = 4}, - [754] = {.lex_state = 0}, - [755] = {.lex_state = 415}, - [756] = {.lex_state = 372, .external_lex_state = 2}, - [757] = {.lex_state = 266, .external_lex_state = 2}, - [758] = {.lex_state = 288}, - [759] = {.lex_state = 0}, - [760] = {.lex_state = 415}, - [761] = {.lex_state = 236}, - [762] = {.lex_state = 415}, - [763] = {.lex_state = 327}, - [764] = {.lex_state = 261}, - [765] = {.lex_state = 327}, - [766] = {.lex_state = 0}, - [767] = {.lex_state = 236, .external_lex_state = 4}, - [768] = {.lex_state = 236}, - [769] = {.lex_state = 236}, - [770] = {.lex_state = 372, .external_lex_state = 3}, - [771] = {.lex_state = 0}, - [772] = {.lex_state = 0}, - [773] = {.lex_state = 0}, - [774] = {.lex_state = 327}, - [775] = {.lex_state = 327}, - [776] = {.lex_state = 327}, - [777] = {.lex_state = 327}, - [778] = {.lex_state = 268}, - [779] = {.lex_state = 327}, - [780] = {.lex_state = 327}, - [781] = {.lex_state = 327}, - [782] = {.lex_state = 327}, - [783] = {.lex_state = 327}, - [784] = {.lex_state = 419}, - [785] = {.lex_state = 288}, - [786] = {.lex_state = 0}, - [787] = {.lex_state = 0}, - [788] = {.lex_state = 0}, + [746] = {.lex_state = 358, .external_lex_state = 2}, + [747] = {.lex_state = 358, .external_lex_state = 2}, + [748] = {.lex_state = 358, .external_lex_state = 2}, + [749] = {.lex_state = 268}, + [750] = {.lex_state = 358, .external_lex_state = 2}, + [751] = {.lex_state = 358, .external_lex_state = 2}, + [752] = {.lex_state = 358, .external_lex_state = 2}, + [753] = {.lex_state = 358, .external_lex_state = 2}, + [754] = {.lex_state = 358, .external_lex_state = 2}, + [755] = {.lex_state = 0}, + [756] = {.lex_state = 0}, + [757] = {.lex_state = 408, .external_lex_state = 2}, + [758] = {.lex_state = 236}, + [759] = {.lex_state = 370}, + [760] = {.lex_state = 0}, + [761] = {.lex_state = 261}, + [762] = {.lex_state = 321}, + [763] = {.lex_state = 0}, + [764] = {.lex_state = 236, .external_lex_state = 4}, + [765] = {.lex_state = 266, .external_lex_state = 2}, + [766] = {.lex_state = 426}, + [767] = {.lex_state = 426}, + [768] = {.lex_state = 0}, + [769] = {.lex_state = 321}, + [770] = {.lex_state = 321}, + [771] = {.lex_state = 321}, + [772] = {.lex_state = 268}, + [773] = {.lex_state = 321}, + [774] = {.lex_state = 321}, + [775] = {.lex_state = 321}, + [776] = {.lex_state = 321}, + [777] = {.lex_state = 0}, + [778] = {.lex_state = 321}, + [779] = {.lex_state = 0}, + [780] = {.lex_state = 0}, + [781] = {.lex_state = 321}, + [782] = {.lex_state = 321}, + [783] = {.lex_state = 321}, + [784] = {.lex_state = 321}, + [785] = {.lex_state = 321}, + [786] = {.lex_state = 321}, + [787] = {.lex_state = 321}, + [788] = {.lex_state = 410}, [789] = {.lex_state = 0}, - [790] = {.lex_state = 0}, - [791] = {.lex_state = 372, .external_lex_state = 3}, - [792] = {.lex_state = 261}, - [793] = {.lex_state = 320, .external_lex_state = 2}, - [794] = {.lex_state = 320, .external_lex_state = 2}, - [795] = {.lex_state = 362, .external_lex_state = 2}, - [796] = {.lex_state = 0}, - [797] = {.lex_state = 236}, - [798] = {.lex_state = 372, .external_lex_state = 3}, - [799] = {.lex_state = 382, .external_lex_state = 2}, - [800] = {.lex_state = 0}, + [790] = {.lex_state = 236, .external_lex_state = 4}, + [791] = {.lex_state = 266, .external_lex_state = 2}, + [792] = {.lex_state = 429}, + [793] = {.lex_state = 429}, + [794] = {.lex_state = 413}, + [795] = {.lex_state = 266, .external_lex_state = 2}, + [796] = {.lex_state = 261}, + [797] = {.lex_state = 268}, + [798] = {.lex_state = 261}, + [799] = {.lex_state = 0}, + [800] = {.lex_state = 261}, [801] = {.lex_state = 0}, - [802] = {.lex_state = 0}, - [803] = {.lex_state = 0}, - [804] = {.lex_state = 261}, - [805] = {.lex_state = 0}, - [806] = {.lex_state = 327}, - [807] = {.lex_state = 261}, - [808] = {.lex_state = 261}, - [809] = {.lex_state = 261}, - [810] = {.lex_state = 268}, - [811] = {.lex_state = 268}, - [812] = {.lex_state = 268}, + [802] = {.lex_state = 246}, + [803] = {.lex_state = 246}, + [804] = {.lex_state = 236, .external_lex_state = 4}, + [805] = {.lex_state = 236, .external_lex_state = 4}, + [806] = {.lex_state = 236, .external_lex_state = 4}, + [807] = {.lex_state = 236, .external_lex_state = 4}, + [808] = {.lex_state = 0}, + [809] = {.lex_state = 413}, + [810] = {.lex_state = 370, .external_lex_state = 2}, + [811] = {.lex_state = 266, .external_lex_state = 2}, + [812] = {.lex_state = 288}, [813] = {.lex_state = 0}, - [814] = {.lex_state = 268}, - [815] = {.lex_state = 268}, - [816] = {.lex_state = 268}, - [817] = {.lex_state = 268}, - [818] = {.lex_state = 268}, - [819] = {.lex_state = 390}, + [814] = {.lex_state = 413}, + [815] = {.lex_state = 236}, + [816] = {.lex_state = 413}, + [817] = {.lex_state = 321}, + [818] = {.lex_state = 261}, + [819] = {.lex_state = 321}, [820] = {.lex_state = 0}, - [821] = {.lex_state = 0}, - [822] = {.lex_state = 0}, - [823] = {.lex_state = 0}, - [824] = {.lex_state = 0}, - [825] = {.lex_state = 261}, - [826] = {.lex_state = 268}, - [827] = {.lex_state = 285}, - [828] = {.lex_state = 327}, - [829] = {.lex_state = 261}, - [830] = {.lex_state = 0}, - [831] = {.lex_state = 327}, - [832] = {.lex_state = 0}, - [833] = {.lex_state = 0}, - [834] = {.lex_state = 285}, - [835] = {.lex_state = 0}, - [836] = {.lex_state = 261}, - [837] = {.lex_state = 268}, - [838] = {.lex_state = 285}, - [839] = {.lex_state = 327}, - [840] = {.lex_state = 261}, + [821] = {.lex_state = 236, .external_lex_state = 4}, + [822] = {.lex_state = 236}, + [823] = {.lex_state = 236}, + [824] = {.lex_state = 370, .external_lex_state = 3}, + [825] = {.lex_state = 0}, + [826] = {.lex_state = 0}, + [827] = {.lex_state = 0}, + [828] = {.lex_state = 321}, + [829] = {.lex_state = 321}, + [830] = {.lex_state = 321}, + [831] = {.lex_state = 321}, + [832] = {.lex_state = 268}, + [833] = {.lex_state = 321}, + [834] = {.lex_state = 321}, + [835] = {.lex_state = 321}, + [836] = {.lex_state = 321}, + [837] = {.lex_state = 321}, + [838] = {.lex_state = 417}, + [839] = {.lex_state = 288}, + [840] = {.lex_state = 0}, [841] = {.lex_state = 0}, - [842] = {.lex_state = 327}, + [842] = {.lex_state = 0}, [843] = {.lex_state = 0}, [844] = {.lex_state = 0}, - [845] = {.lex_state = 285}, - [846] = {.lex_state = 292, .external_lex_state = 2}, - [847] = {.lex_state = 0}, - [848] = {.lex_state = 0}, - [849] = {.lex_state = 0}, - [850] = {.lex_state = 261}, - [851] = {.lex_state = 0}, - [852] = {.lex_state = 327}, - [853] = {.lex_state = 261}, - [854] = {.lex_state = 261}, - [855] = {.lex_state = 261}, - [856] = {.lex_state = 268}, - [857] = {.lex_state = 268}, - [858] = {.lex_state = 268}, + [845] = {.lex_state = 370, .external_lex_state = 3}, + [846] = {.lex_state = 261}, + [847] = {.lex_state = 314, .external_lex_state = 2}, + [848] = {.lex_state = 314, .external_lex_state = 2}, + [849] = {.lex_state = 356, .external_lex_state = 2}, + [850] = {.lex_state = 0}, + [851] = {.lex_state = 236}, + [852] = {.lex_state = 370, .external_lex_state = 3}, + [853] = {.lex_state = 380, .external_lex_state = 2}, + [854] = {.lex_state = 380, .external_lex_state = 2}, + [855] = {.lex_state = 420, .external_lex_state = 2}, + [856] = {.lex_state = 0}, + [857] = {.lex_state = 0}, + [858] = {.lex_state = 0}, [859] = {.lex_state = 0}, - [860] = {.lex_state = 268}, - [861] = {.lex_state = 268}, - [862] = {.lex_state = 268}, - [863] = {.lex_state = 268}, - [864] = {.lex_state = 268}, - [865] = {.lex_state = 390}, - [866] = {.lex_state = 0}, - [867] = {.lex_state = 0}, - [868] = {.lex_state = 261}, - [869] = {.lex_state = 327}, - [870] = {.lex_state = 290, .external_lex_state = 2}, + [860] = {.lex_state = 0}, + [861] = {.lex_state = 0}, + [862] = {.lex_state = 261}, + [863] = {.lex_state = 0}, + [864] = {.lex_state = 321}, + [865] = {.lex_state = 261}, + [866] = {.lex_state = 261}, + [867] = {.lex_state = 261}, + [868] = {.lex_state = 268}, + [869] = {.lex_state = 268}, + [870] = {.lex_state = 268}, [871] = {.lex_state = 0}, - [872] = {.lex_state = 0}, - [873] = {.lex_state = 288}, - [874] = {.lex_state = 0}, - [875] = {.lex_state = 0}, - [876] = {.lex_state = 0}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 290, .external_lex_state = 2}, - [879] = {.lex_state = 261}, + [872] = {.lex_state = 268}, + [873] = {.lex_state = 268}, + [874] = {.lex_state = 268}, + [875] = {.lex_state = 268}, + [876] = {.lex_state = 268}, + [877] = {.lex_state = 388}, + [878] = {.lex_state = 0}, + [879] = {.lex_state = 0}, [880] = {.lex_state = 0}, - [881] = {.lex_state = 327}, - [882] = {.lex_state = 327}, - [883] = {.lex_state = 327}, + [881] = {.lex_state = 0}, + [882] = {.lex_state = 0}, + [883] = {.lex_state = 261}, [884] = {.lex_state = 268}, - [885] = {.lex_state = 327}, - [886] = {.lex_state = 327}, - [887] = {.lex_state = 327}, - [888] = {.lex_state = 327}, - [889] = {.lex_state = 0}, + [885] = {.lex_state = 285}, + [886] = {.lex_state = 321}, + [887] = {.lex_state = 261}, + [888] = {.lex_state = 0}, + [889] = {.lex_state = 321}, [890] = {.lex_state = 0}, [891] = {.lex_state = 0}, - [892] = {.lex_state = 261}, + [892] = {.lex_state = 285}, [893] = {.lex_state = 0}, - [894] = {.lex_state = 327}, - [895] = {.lex_state = 261}, - [896] = {.lex_state = 261}, - [897] = {.lex_state = 261}, - [898] = {.lex_state = 268}, - [899] = {.lex_state = 268}, - [900] = {.lex_state = 268}, + [894] = {.lex_state = 261}, + [895] = {.lex_state = 268}, + [896] = {.lex_state = 285}, + [897] = {.lex_state = 321}, + [898] = {.lex_state = 261}, + [899] = {.lex_state = 0}, + [900] = {.lex_state = 321}, [901] = {.lex_state = 0}, - [902] = {.lex_state = 268}, - [903] = {.lex_state = 268}, - [904] = {.lex_state = 268}, - [905] = {.lex_state = 268}, - [906] = {.lex_state = 268}, - [907] = {.lex_state = 390}, - [908] = {.lex_state = 0}, + [902] = {.lex_state = 0}, + [903] = {.lex_state = 285}, + [904] = {.lex_state = 292, .external_lex_state = 2}, + [905] = {.lex_state = 0}, + [906] = {.lex_state = 0}, + [907] = {.lex_state = 0}, + [908] = {.lex_state = 261}, [909] = {.lex_state = 0}, - [910] = {.lex_state = 261}, - [911] = {.lex_state = 327}, - [912] = {.lex_state = 288}, - [913] = {.lex_state = 290, .external_lex_state = 2}, - [914] = {.lex_state = 0}, - [915] = {.lex_state = 288}, - [916] = {.lex_state = 0}, - [917] = {.lex_state = 246}, - [918] = {.lex_state = 290, .external_lex_state = 2}, - [919] = {.lex_state = 0}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 288}, - [922] = {.lex_state = 0}, - [923] = {.lex_state = 0}, - [924] = {.lex_state = 261}, - [925] = {.lex_state = 268}, - [926] = {.lex_state = 285}, - [927] = {.lex_state = 327}, - [928] = {.lex_state = 261}, + [910] = {.lex_state = 321}, + [911] = {.lex_state = 261}, + [912] = {.lex_state = 261}, + [913] = {.lex_state = 261}, + [914] = {.lex_state = 268}, + [915] = {.lex_state = 268}, + [916] = {.lex_state = 268}, + [917] = {.lex_state = 0}, + [918] = {.lex_state = 268}, + [919] = {.lex_state = 268}, + [920] = {.lex_state = 268}, + [921] = {.lex_state = 268}, + [922] = {.lex_state = 268}, + [923] = {.lex_state = 388}, + [924] = {.lex_state = 0}, + [925] = {.lex_state = 0}, + [926] = {.lex_state = 261}, + [927] = {.lex_state = 321}, + [928] = {.lex_state = 290, .external_lex_state = 2}, [929] = {.lex_state = 0}, - [930] = {.lex_state = 327}, - [931] = {.lex_state = 0}, + [930] = {.lex_state = 0}, + [931] = {.lex_state = 288}, [932] = {.lex_state = 0}, - [933] = {.lex_state = 290, .external_lex_state = 2}, - [934] = {.lex_state = 261}, + [933] = {.lex_state = 0}, + [934] = {.lex_state = 0}, [935] = {.lex_state = 0}, - [936] = {.lex_state = 327}, - [937] = {.lex_state = 327}, - [938] = {.lex_state = 327}, - [939] = {.lex_state = 268}, - [940] = {.lex_state = 327}, - [941] = {.lex_state = 327}, - [942] = {.lex_state = 327}, - [943] = {.lex_state = 327}, - [944] = {.lex_state = 0}, - [945] = {.lex_state = 290, .external_lex_state = 2}, - [946] = {.lex_state = 386, .external_lex_state = 2}, - [947] = {.lex_state = 388, .external_lex_state = 2}, + [936] = {.lex_state = 290, .external_lex_state = 2}, + [937] = {.lex_state = 261}, + [938] = {.lex_state = 0}, + [939] = {.lex_state = 321}, + [940] = {.lex_state = 321}, + [941] = {.lex_state = 321}, + [942] = {.lex_state = 268}, + [943] = {.lex_state = 321}, + [944] = {.lex_state = 321}, + [945] = {.lex_state = 321}, + [946] = {.lex_state = 321}, + [947] = {.lex_state = 0}, [948] = {.lex_state = 0}, - [949] = {.lex_state = 261}, - [950] = {.lex_state = 0}, - [951] = {.lex_state = 327}, - [952] = {.lex_state = 261}, + [949] = {.lex_state = 0}, + [950] = {.lex_state = 261}, + [951] = {.lex_state = 0}, + [952] = {.lex_state = 321}, [953] = {.lex_state = 261}, [954] = {.lex_state = 261}, [955] = {.lex_state = 261}, @@ -7772,929 +7791,1021 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [962] = {.lex_state = 268}, [963] = {.lex_state = 268}, [964] = {.lex_state = 268}, - [965] = {.lex_state = 390}, + [965] = {.lex_state = 388}, [966] = {.lex_state = 0}, - [967] = {.lex_state = 261}, - [968] = {.lex_state = 290, .external_lex_state = 2}, - [969] = {.lex_state = 261}, - [970] = {.lex_state = 0}, - [971] = {.lex_state = 261}, - [972] = {.lex_state = 261}, + [967] = {.lex_state = 0}, + [968] = {.lex_state = 261}, + [969] = {.lex_state = 321}, + [970] = {.lex_state = 288}, + [971] = {.lex_state = 290, .external_lex_state = 2}, + [972] = {.lex_state = 0}, [973] = {.lex_state = 288}, [974] = {.lex_state = 0}, - [975] = {.lex_state = 290, .external_lex_state = 2}, - [976] = {.lex_state = 288}, + [975] = {.lex_state = 246}, + [976] = {.lex_state = 290, .external_lex_state = 2}, [977] = {.lex_state = 0}, [978] = {.lex_state = 0}, - [979] = {.lex_state = 261}, + [979] = {.lex_state = 288}, [980] = {.lex_state = 0}, - [981] = {.lex_state = 327}, - [982] = {.lex_state = 288}, - [983] = {.lex_state = 261}, - [984] = {.lex_state = 288}, - [985] = {.lex_state = 261}, + [981] = {.lex_state = 0}, + [982] = {.lex_state = 261}, + [983] = {.lex_state = 268}, + [984] = {.lex_state = 285}, + [985] = {.lex_state = 321}, [986] = {.lex_state = 261}, - [987] = {.lex_state = 290, .external_lex_state = 2}, - [988] = {.lex_state = 0}, - [989] = {.lex_state = 268}, - [990] = {.lex_state = 268}, - [991] = {.lex_state = 268}, - [992] = {.lex_state = 0}, - [993] = {.lex_state = 268}, - [994] = {.lex_state = 268}, - [995] = {.lex_state = 268}, - [996] = {.lex_state = 268}, + [987] = {.lex_state = 0}, + [988] = {.lex_state = 321}, + [989] = {.lex_state = 0}, + [990] = {.lex_state = 0}, + [991] = {.lex_state = 290, .external_lex_state = 2}, + [992] = {.lex_state = 261}, + [993] = {.lex_state = 0}, + [994] = {.lex_state = 321}, + [995] = {.lex_state = 321}, + [996] = {.lex_state = 321}, [997] = {.lex_state = 268}, - [998] = {.lex_state = 390}, - [999] = {.lex_state = 0}, - [1000] = {.lex_state = 246}, - [1001] = {.lex_state = 327}, + [998] = {.lex_state = 321}, + [999] = {.lex_state = 321}, + [1000] = {.lex_state = 321}, + [1001] = {.lex_state = 321}, [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 0}, - [1004] = {.lex_state = 327}, - [1005] = {.lex_state = 246}, - [1006] = {.lex_state = 266, .external_lex_state = 2}, - [1007] = {.lex_state = 327}, - [1008] = {.lex_state = 327}, - [1009] = {.lex_state = 250}, - [1010] = {.lex_state = 0}, - [1011] = {.lex_state = 0}, + [1003] = {.lex_state = 290, .external_lex_state = 2}, + [1004] = {.lex_state = 384, .external_lex_state = 2}, + [1005] = {.lex_state = 386, .external_lex_state = 2}, + [1006] = {.lex_state = 0}, + [1007] = {.lex_state = 261}, + [1008] = {.lex_state = 0}, + [1009] = {.lex_state = 321}, + [1010] = {.lex_state = 261}, + [1011] = {.lex_state = 261}, [1012] = {.lex_state = 261}, - [1013] = {.lex_state = 327}, - [1014] = {.lex_state = 0}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 0}, - [1017] = {.lex_state = 288}, - [1018] = {.lex_state = 0}, - [1019] = {.lex_state = 327}, - [1020] = {.lex_state = 327}, - [1021] = {.lex_state = 327}, + [1013] = {.lex_state = 261}, + [1014] = {.lex_state = 268}, + [1015] = {.lex_state = 268}, + [1016] = {.lex_state = 268}, + [1017] = {.lex_state = 0}, + [1018] = {.lex_state = 268}, + [1019] = {.lex_state = 268}, + [1020] = {.lex_state = 268}, + [1021] = {.lex_state = 268}, [1022] = {.lex_state = 268}, - [1023] = {.lex_state = 327}, - [1024] = {.lex_state = 327}, - [1025] = {.lex_state = 327}, - [1026] = {.lex_state = 327}, - [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 327}, - [1029] = {.lex_state = 288}, - [1030] = {.lex_state = 327}, - [1031] = {.lex_state = 327}, - [1032] = {.lex_state = 288}, - [1033] = {.lex_state = 327}, + [1023] = {.lex_state = 388}, + [1024] = {.lex_state = 0}, + [1025] = {.lex_state = 261}, + [1026] = {.lex_state = 290, .external_lex_state = 2}, + [1027] = {.lex_state = 261}, + [1028] = {.lex_state = 0}, + [1029] = {.lex_state = 261}, + [1030] = {.lex_state = 261}, + [1031] = {.lex_state = 288}, + [1032] = {.lex_state = 0}, + [1033] = {.lex_state = 290, .external_lex_state = 2}, [1034] = {.lex_state = 288}, - [1035] = {.lex_state = 327}, - [1036] = {.lex_state = 327}, + [1035] = {.lex_state = 0}, + [1036] = {.lex_state = 0}, [1037] = {.lex_state = 261}, - [1038] = {.lex_state = 261}, - [1039] = {.lex_state = 261}, - [1040] = {.lex_state = 268}, - [1041] = {.lex_state = 285}, - [1042] = {.lex_state = 327}, + [1038] = {.lex_state = 0}, + [1039] = {.lex_state = 321}, + [1040] = {.lex_state = 288}, + [1041] = {.lex_state = 261}, + [1042] = {.lex_state = 288}, [1043] = {.lex_state = 261}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 327}, + [1044] = {.lex_state = 261}, + [1045] = {.lex_state = 290, .external_lex_state = 2}, [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 290, .external_lex_state = 2}, - [1048] = {.lex_state = 250}, - [1049] = {.lex_state = 327}, - [1050] = {.lex_state = 288}, - [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 327}, - [1053] = {.lex_state = 288}, - [1054] = {.lex_state = 327}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 357, .external_lex_state = 2}, - [1057] = {.lex_state = 357, .external_lex_state = 2}, - [1058] = {.lex_state = 250}, - [1059] = {.lex_state = 362, .external_lex_state = 2}, - [1060] = {.lex_state = 357, .external_lex_state = 2}, - [1061] = {.lex_state = 288}, - [1062] = {.lex_state = 357, .external_lex_state = 2}, - [1063] = {.lex_state = 357, .external_lex_state = 2}, - [1064] = {.lex_state = 288}, - [1065] = {.lex_state = 357, .external_lex_state = 2}, - [1066] = {.lex_state = 288}, - [1067] = {.lex_state = 357, .external_lex_state = 2}, - [1068] = {.lex_state = 357, .external_lex_state = 2}, - [1069] = {.lex_state = 261}, - [1070] = {.lex_state = 357, .external_lex_state = 2}, - [1071] = {.lex_state = 288}, + [1047] = {.lex_state = 268}, + [1048] = {.lex_state = 268}, + [1049] = {.lex_state = 268}, + [1050] = {.lex_state = 0}, + [1051] = {.lex_state = 268}, + [1052] = {.lex_state = 268}, + [1053] = {.lex_state = 268}, + [1054] = {.lex_state = 268}, + [1055] = {.lex_state = 268}, + [1056] = {.lex_state = 388}, + [1057] = {.lex_state = 0}, + [1058] = {.lex_state = 246}, + [1059] = {.lex_state = 321}, + [1060] = {.lex_state = 0}, + [1061] = {.lex_state = 0}, + [1062] = {.lex_state = 321}, + [1063] = {.lex_state = 246}, + [1064] = {.lex_state = 266, .external_lex_state = 2}, + [1065] = {.lex_state = 321}, + [1066] = {.lex_state = 321}, + [1067] = {.lex_state = 250}, + [1068] = {.lex_state = 0}, + [1069] = {.lex_state = 0}, + [1070] = {.lex_state = 261}, + [1071] = {.lex_state = 321}, [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 364, .external_lex_state = 2}, - [1074] = {.lex_state = 288}, - [1075] = {.lex_state = 357, .external_lex_state = 2}, + [1073] = {.lex_state = 0}, + [1074] = {.lex_state = 0}, + [1075] = {.lex_state = 288}, [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 404, .external_lex_state = 2}, - [1078] = {.lex_state = 261}, - [1079] = {.lex_state = 402, .external_lex_state = 2}, - [1080] = {.lex_state = 0}, - [1081] = {.lex_state = 404, .external_lex_state = 2}, - [1082] = {.lex_state = 406, .external_lex_state = 2}, - [1083] = {.lex_state = 406, .external_lex_state = 2}, - [1084] = {.lex_state = 406, .external_lex_state = 2}, - [1085] = {.lex_state = 268}, - [1086] = {.lex_state = 406, .external_lex_state = 2}, - [1087] = {.lex_state = 406, .external_lex_state = 2}, - [1088] = {.lex_state = 406, .external_lex_state = 2}, - [1089] = {.lex_state = 406, .external_lex_state = 2}, - [1090] = {.lex_state = 428, .external_lex_state = 2}, - [1091] = {.lex_state = 370, .external_lex_state = 2}, - [1092] = {.lex_state = 261}, - [1093] = {.lex_state = 261}, - [1094] = {.lex_state = 357, .external_lex_state = 2}, - [1095] = {.lex_state = 0}, + [1077] = {.lex_state = 321}, + [1078] = {.lex_state = 321}, + [1079] = {.lex_state = 321}, + [1080] = {.lex_state = 268}, + [1081] = {.lex_state = 321}, + [1082] = {.lex_state = 321}, + [1083] = {.lex_state = 321}, + [1084] = {.lex_state = 321}, + [1085] = {.lex_state = 0}, + [1086] = {.lex_state = 321}, + [1087] = {.lex_state = 288}, + [1088] = {.lex_state = 321}, + [1089] = {.lex_state = 321}, + [1090] = {.lex_state = 288}, + [1091] = {.lex_state = 321}, + [1092] = {.lex_state = 288}, + [1093] = {.lex_state = 321}, + [1094] = {.lex_state = 321}, + [1095] = {.lex_state = 261}, [1096] = {.lex_state = 261}, - [1097] = {.lex_state = 430}, - [1098] = {.lex_state = 236, .external_lex_state = 4}, - [1099] = {.lex_state = 430}, - [1100] = {.lex_state = 372, .external_lex_state = 2}, - [1101] = {.lex_state = 266, .external_lex_state = 2}, - [1102] = {.lex_state = 261}, - [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 430}, - [1105] = {.lex_state = 236}, - [1106] = {.lex_state = 430}, - [1107] = {.lex_state = 327}, - [1108] = {.lex_state = 372, .external_lex_state = 3}, - [1109] = {.lex_state = 288}, - [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 268}, - [1112] = {.lex_state = 433}, - [1113] = {.lex_state = 236, .external_lex_state = 4}, - [1114] = {.lex_state = 433}, - [1115] = {.lex_state = 372, .external_lex_state = 2}, - [1116] = {.lex_state = 266, .external_lex_state = 2}, - [1117] = {.lex_state = 236}, - [1118] = {.lex_state = 236, .external_lex_state = 4}, - [1119] = {.lex_state = 372, .external_lex_state = 2}, - [1120] = {.lex_state = 266, .external_lex_state = 2}, - [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 0}, - [1123] = {.lex_state = 0}, - [1124] = {.lex_state = 372, .external_lex_state = 3}, - [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 236, .external_lex_state = 4}, - [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 0}, - [1129] = {.lex_state = 415}, - [1130] = {.lex_state = 236, .external_lex_state = 4}, - [1131] = {.lex_state = 236, .external_lex_state = 4}, - [1132] = {.lex_state = 415}, - [1133] = {.lex_state = 372, .external_lex_state = 2}, - [1134] = {.lex_state = 372, .external_lex_state = 3}, - [1135] = {.lex_state = 327}, - [1136] = {.lex_state = 372, .external_lex_state = 3}, - [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 436}, - [1139] = {.lex_state = 236}, - [1140] = {.lex_state = 415}, - [1141] = {.lex_state = 327}, - [1142] = {.lex_state = 236}, - [1143] = {.lex_state = 236, .external_lex_state = 4}, - [1144] = {.lex_state = 236}, - [1145] = {.lex_state = 261}, - [1146] = {.lex_state = 327}, - [1147] = {.lex_state = 261}, - [1148] = {.lex_state = 261}, - [1149] = {.lex_state = 268}, - [1150] = {.lex_state = 285}, - [1151] = {.lex_state = 327}, - [1152] = {.lex_state = 261}, - [1153] = {.lex_state = 0}, - [1154] = {.lex_state = 327}, - [1155] = {.lex_state = 285}, - [1156] = {.lex_state = 261}, - [1157] = {.lex_state = 261}, - [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 285}, - [1160] = {.lex_state = 261}, - [1161] = {.lex_state = 261}, - [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 419}, - [1164] = {.lex_state = 261}, - [1165] = {.lex_state = 236}, + [1097] = {.lex_state = 261}, + [1098] = {.lex_state = 268}, + [1099] = {.lex_state = 285}, + [1100] = {.lex_state = 321}, + [1101] = {.lex_state = 261}, + [1102] = {.lex_state = 0}, + [1103] = {.lex_state = 321}, + [1104] = {.lex_state = 0}, + [1105] = {.lex_state = 290, .external_lex_state = 2}, + [1106] = {.lex_state = 250}, + [1107] = {.lex_state = 321}, + [1108] = {.lex_state = 288}, + [1109] = {.lex_state = 0}, + [1110] = {.lex_state = 321}, + [1111] = {.lex_state = 288}, + [1112] = {.lex_state = 321}, + [1113] = {.lex_state = 0}, + [1114] = {.lex_state = 351, .external_lex_state = 2}, + [1115] = {.lex_state = 351, .external_lex_state = 2}, + [1116] = {.lex_state = 250}, + [1117] = {.lex_state = 356, .external_lex_state = 2}, + [1118] = {.lex_state = 351, .external_lex_state = 2}, + [1119] = {.lex_state = 288}, + [1120] = {.lex_state = 351, .external_lex_state = 2}, + [1121] = {.lex_state = 351, .external_lex_state = 2}, + [1122] = {.lex_state = 288}, + [1123] = {.lex_state = 351, .external_lex_state = 2}, + [1124] = {.lex_state = 288}, + [1125] = {.lex_state = 351, .external_lex_state = 2}, + [1126] = {.lex_state = 351, .external_lex_state = 2}, + [1127] = {.lex_state = 261}, + [1128] = {.lex_state = 351, .external_lex_state = 2}, + [1129] = {.lex_state = 288}, + [1130] = {.lex_state = 0}, + [1131] = {.lex_state = 351, .external_lex_state = 2}, + [1132] = {.lex_state = 288}, + [1133] = {.lex_state = 351, .external_lex_state = 2}, + [1134] = {.lex_state = 0}, + [1135] = {.lex_state = 402, .external_lex_state = 2}, + [1136] = {.lex_state = 261}, + [1137] = {.lex_state = 400, .external_lex_state = 2}, + [1138] = {.lex_state = 0}, + [1139] = {.lex_state = 402, .external_lex_state = 2}, + [1140] = {.lex_state = 404, .external_lex_state = 2}, + [1141] = {.lex_state = 404, .external_lex_state = 2}, + [1142] = {.lex_state = 404, .external_lex_state = 2}, + [1143] = {.lex_state = 268}, + [1144] = {.lex_state = 404, .external_lex_state = 2}, + [1145] = {.lex_state = 404, .external_lex_state = 2}, + [1146] = {.lex_state = 404, .external_lex_state = 2}, + [1147] = {.lex_state = 404, .external_lex_state = 2}, + [1148] = {.lex_state = 424, .external_lex_state = 2}, + [1149] = {.lex_state = 358, .external_lex_state = 2}, + [1150] = {.lex_state = 358, .external_lex_state = 2}, + [1151] = {.lex_state = 250}, + [1152] = {.lex_state = 368, .external_lex_state = 2}, + [1153] = {.lex_state = 358, .external_lex_state = 2}, + [1154] = {.lex_state = 288}, + [1155] = {.lex_state = 358, .external_lex_state = 2}, + [1156] = {.lex_state = 358, .external_lex_state = 2}, + [1157] = {.lex_state = 288}, + [1158] = {.lex_state = 358, .external_lex_state = 2}, + [1159] = {.lex_state = 288}, + [1160] = {.lex_state = 358, .external_lex_state = 2}, + [1161] = {.lex_state = 358, .external_lex_state = 2}, + [1162] = {.lex_state = 261}, + [1163] = {.lex_state = 261}, + [1164] = {.lex_state = 358, .external_lex_state = 2}, + [1165] = {.lex_state = 288}, [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 320, .external_lex_state = 2}, - [1169] = {.lex_state = 236}, + [1167] = {.lex_state = 358, .external_lex_state = 2}, + [1168] = {.lex_state = 288}, + [1169] = {.lex_state = 358, .external_lex_state = 2}, [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 261}, - [1172] = {.lex_state = 327}, - [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 327}, - [1176] = {.lex_state = 327}, - [1177] = {.lex_state = 327}, - [1178] = {.lex_state = 268}, - [1179] = {.lex_state = 327}, - [1180] = {.lex_state = 327}, - [1181] = {.lex_state = 327}, - [1182] = {.lex_state = 327}, - [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 261}, + [1171] = {.lex_state = 0}, + [1172] = {.lex_state = 261}, + [1173] = {.lex_state = 426}, + [1174] = {.lex_state = 236, .external_lex_state = 4}, + [1175] = {.lex_state = 426}, + [1176] = {.lex_state = 370, .external_lex_state = 2}, + [1177] = {.lex_state = 266, .external_lex_state = 2}, + [1178] = {.lex_state = 261}, + [1179] = {.lex_state = 0}, + [1180] = {.lex_state = 426}, + [1181] = {.lex_state = 236}, + [1182] = {.lex_state = 426}, + [1183] = {.lex_state = 321}, + [1184] = {.lex_state = 370, .external_lex_state = 3}, + [1185] = {.lex_state = 288}, [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 327}, - [1188] = {.lex_state = 261}, - [1189] = {.lex_state = 261}, - [1190] = {.lex_state = 261}, - [1191] = {.lex_state = 268}, - [1192] = {.lex_state = 268}, - [1193] = {.lex_state = 268}, - [1194] = {.lex_state = 0}, - [1195] = {.lex_state = 268}, - [1196] = {.lex_state = 268}, - [1197] = {.lex_state = 268}, - [1198] = {.lex_state = 268}, - [1199] = {.lex_state = 268}, - [1200] = {.lex_state = 390}, + [1187] = {.lex_state = 268}, + [1188] = {.lex_state = 429}, + [1189] = {.lex_state = 236, .external_lex_state = 4}, + [1190] = {.lex_state = 429}, + [1191] = {.lex_state = 370, .external_lex_state = 2}, + [1192] = {.lex_state = 266, .external_lex_state = 2}, + [1193] = {.lex_state = 236}, + [1194] = {.lex_state = 236, .external_lex_state = 4}, + [1195] = {.lex_state = 370, .external_lex_state = 2}, + [1196] = {.lex_state = 266, .external_lex_state = 2}, + [1197] = {.lex_state = 0}, + [1198] = {.lex_state = 0}, + [1199] = {.lex_state = 0}, + [1200] = {.lex_state = 370, .external_lex_state = 3}, [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 261}, - [1203] = {.lex_state = 285}, + [1202] = {.lex_state = 236, .external_lex_state = 4}, + [1203] = {.lex_state = 0}, [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 261}, - [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 327}, - [1208] = {.lex_state = 261}, - [1209] = {.lex_state = 261}, - [1210] = {.lex_state = 261}, - [1211] = {.lex_state = 268}, - [1212] = {.lex_state = 268}, - [1213] = {.lex_state = 268}, - [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 268}, - [1216] = {.lex_state = 268}, - [1217] = {.lex_state = 268}, - [1218] = {.lex_state = 268}, - [1219] = {.lex_state = 268}, - [1220] = {.lex_state = 390}, - [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 261}, - [1223] = {.lex_state = 0}, + [1205] = {.lex_state = 413}, + [1206] = {.lex_state = 236, .external_lex_state = 4}, + [1207] = {.lex_state = 236, .external_lex_state = 4}, + [1208] = {.lex_state = 413}, + [1209] = {.lex_state = 370, .external_lex_state = 2}, + [1210] = {.lex_state = 370, .external_lex_state = 3}, + [1211] = {.lex_state = 321}, + [1212] = {.lex_state = 370, .external_lex_state = 3}, + [1213] = {.lex_state = 0}, + [1214] = {.lex_state = 432}, + [1215] = {.lex_state = 236}, + [1216] = {.lex_state = 413}, + [1217] = {.lex_state = 321}, + [1218] = {.lex_state = 236}, + [1219] = {.lex_state = 236, .external_lex_state = 4}, + [1220] = {.lex_state = 236}, + [1221] = {.lex_state = 261}, + [1222] = {.lex_state = 321}, + [1223] = {.lex_state = 261}, [1224] = {.lex_state = 261}, - [1225] = {.lex_state = 327}, - [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 327}, - [1229] = {.lex_state = 327}, - [1230] = {.lex_state = 327}, - [1231] = {.lex_state = 268}, - [1232] = {.lex_state = 327}, - [1233] = {.lex_state = 327}, - [1234] = {.lex_state = 327}, - [1235] = {.lex_state = 327}, - [1236] = {.lex_state = 0}, - [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 290, .external_lex_state = 2}, - [1239] = {.lex_state = 288}, + [1225] = {.lex_state = 268}, + [1226] = {.lex_state = 285}, + [1227] = {.lex_state = 321}, + [1228] = {.lex_state = 261}, + [1229] = {.lex_state = 0}, + [1230] = {.lex_state = 321}, + [1231] = {.lex_state = 285}, + [1232] = {.lex_state = 261}, + [1233] = {.lex_state = 261}, + [1234] = {.lex_state = 0}, + [1235] = {.lex_state = 285}, + [1236] = {.lex_state = 261}, + [1237] = {.lex_state = 261}, + [1238] = {.lex_state = 0}, + [1239] = {.lex_state = 417}, [1240] = {.lex_state = 261}, - [1241] = {.lex_state = 261}, - [1242] = {.lex_state = 261}, - [1243] = {.lex_state = 268}, - [1244] = {.lex_state = 285}, - [1245] = {.lex_state = 327}, - [1246] = {.lex_state = 261}, - [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 327}, + [1241] = {.lex_state = 236}, + [1242] = {.lex_state = 0}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 314, .external_lex_state = 2}, + [1245] = {.lex_state = 236}, + [1246] = {.lex_state = 420, .external_lex_state = 2}, + [1247] = {.lex_state = 288}, + [1248] = {.lex_state = 0}, [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 327}, - [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 261}, - [1253] = {.lex_state = 327}, - [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 327}, - [1257] = {.lex_state = 327}, - [1258] = {.lex_state = 327}, - [1259] = {.lex_state = 268}, - [1260] = {.lex_state = 327}, - [1261] = {.lex_state = 327}, - [1262] = {.lex_state = 327}, - [1263] = {.lex_state = 327}, - [1264] = {.lex_state = 0}, + [1250] = {.lex_state = 261}, + [1251] = {.lex_state = 321}, + [1252] = {.lex_state = 0}, + [1253] = {.lex_state = 0}, + [1254] = {.lex_state = 321}, + [1255] = {.lex_state = 321}, + [1256] = {.lex_state = 321}, + [1257] = {.lex_state = 268}, + [1258] = {.lex_state = 321}, + [1259] = {.lex_state = 321}, + [1260] = {.lex_state = 321}, + [1261] = {.lex_state = 321}, + [1262] = {.lex_state = 0}, + [1263] = {.lex_state = 0}, + [1264] = {.lex_state = 261}, [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 290, .external_lex_state = 2}, - [1267] = {.lex_state = 288}, + [1266] = {.lex_state = 321}, + [1267] = {.lex_state = 261}, [1268] = {.lex_state = 261}, - [1269] = {.lex_state = 290, .external_lex_state = 2}, - [1270] = {.lex_state = 288}, - [1271] = {.lex_state = 261}, - [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 261}, - [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 327}, - [1276] = {.lex_state = 261}, - [1277] = {.lex_state = 261}, - [1278] = {.lex_state = 261}, - [1279] = {.lex_state = 268}, - [1280] = {.lex_state = 268}, - [1281] = {.lex_state = 268}, - [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 268}, - [1284] = {.lex_state = 268}, - [1285] = {.lex_state = 268}, - [1286] = {.lex_state = 268}, - [1287] = {.lex_state = 268}, - [1288] = {.lex_state = 390}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 261}, - [1291] = {.lex_state = 261}, + [1269] = {.lex_state = 261}, + [1270] = {.lex_state = 268}, + [1271] = {.lex_state = 268}, + [1272] = {.lex_state = 268}, + [1273] = {.lex_state = 0}, + [1274] = {.lex_state = 268}, + [1275] = {.lex_state = 268}, + [1276] = {.lex_state = 268}, + [1277] = {.lex_state = 268}, + [1278] = {.lex_state = 268}, + [1279] = {.lex_state = 388}, + [1280] = {.lex_state = 0}, + [1281] = {.lex_state = 261}, + [1282] = {.lex_state = 285}, + [1283] = {.lex_state = 0}, + [1284] = {.lex_state = 261}, + [1285] = {.lex_state = 0}, + [1286] = {.lex_state = 321}, + [1287] = {.lex_state = 261}, + [1288] = {.lex_state = 261}, + [1289] = {.lex_state = 261}, + [1290] = {.lex_state = 268}, + [1291] = {.lex_state = 268}, [1292] = {.lex_state = 268}, - [1293] = {.lex_state = 285}, - [1294] = {.lex_state = 327}, - [1295] = {.lex_state = 261}, - [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 327}, - [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 327}, - [1300] = {.lex_state = 386, .external_lex_state = 2}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 261}, - [1303] = {.lex_state = 327}, - [1304] = {.lex_state = 0}, - [1305] = {.lex_state = 292, .external_lex_state = 2}, + [1293] = {.lex_state = 0}, + [1294] = {.lex_state = 268}, + [1295] = {.lex_state = 268}, + [1296] = {.lex_state = 268}, + [1297] = {.lex_state = 268}, + [1298] = {.lex_state = 268}, + [1299] = {.lex_state = 388}, + [1300] = {.lex_state = 0}, + [1301] = {.lex_state = 261}, + [1302] = {.lex_state = 0}, + [1303] = {.lex_state = 261}, + [1304] = {.lex_state = 321}, + [1305] = {.lex_state = 0}, [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 327}, - [1308] = {.lex_state = 327}, - [1309] = {.lex_state = 327}, + [1307] = {.lex_state = 321}, + [1308] = {.lex_state = 321}, + [1309] = {.lex_state = 321}, [1310] = {.lex_state = 268}, - [1311] = {.lex_state = 327}, - [1312] = {.lex_state = 327}, - [1313] = {.lex_state = 327}, - [1314] = {.lex_state = 327}, + [1311] = {.lex_state = 321}, + [1312] = {.lex_state = 321}, + [1313] = {.lex_state = 321}, + [1314] = {.lex_state = 321}, [1315] = {.lex_state = 0}, [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 290, .external_lex_state = 2}, - [1320] = {.lex_state = 0}, - [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 288}, - [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 288}, + [1317] = {.lex_state = 290, .external_lex_state = 2}, + [1318] = {.lex_state = 288}, + [1319] = {.lex_state = 261}, + [1320] = {.lex_state = 261}, + [1321] = {.lex_state = 261}, + [1322] = {.lex_state = 268}, + [1323] = {.lex_state = 285}, + [1324] = {.lex_state = 321}, + [1325] = {.lex_state = 261}, [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 261}, - [1328] = {.lex_state = 327}, - [1329] = {.lex_state = 290, .external_lex_state = 2}, + [1327] = {.lex_state = 321}, + [1328] = {.lex_state = 0}, + [1329] = {.lex_state = 321}, [1330] = {.lex_state = 0}, - [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 0}, + [1331] = {.lex_state = 261}, + [1332] = {.lex_state = 321}, [1333] = {.lex_state = 0}, [1334] = {.lex_state = 0}, - [1335] = {.lex_state = 288}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 327}, - [1338] = {.lex_state = 327}, - [1339] = {.lex_state = 327}, - [1340] = {.lex_state = 268}, - [1341] = {.lex_state = 327}, - [1342] = {.lex_state = 327}, - [1343] = {.lex_state = 327}, - [1344] = {.lex_state = 327}, - [1345] = {.lex_state = 0}, - [1346] = {.lex_state = 327}, - [1347] = {.lex_state = 266, .external_lex_state = 2}, - [1348] = {.lex_state = 246}, - [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 246}, + [1335] = {.lex_state = 321}, + [1336] = {.lex_state = 321}, + [1337] = {.lex_state = 321}, + [1338] = {.lex_state = 268}, + [1339] = {.lex_state = 321}, + [1340] = {.lex_state = 321}, + [1341] = {.lex_state = 321}, + [1342] = {.lex_state = 321}, + [1343] = {.lex_state = 0}, + [1344] = {.lex_state = 0}, + [1345] = {.lex_state = 290, .external_lex_state = 2}, + [1346] = {.lex_state = 288}, + [1347] = {.lex_state = 261}, + [1348] = {.lex_state = 290, .external_lex_state = 2}, + [1349] = {.lex_state = 288}, + [1350] = {.lex_state = 261}, [1351] = {.lex_state = 0}, - [1352] = {.lex_state = 327}, + [1352] = {.lex_state = 261}, [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 261}, + [1354] = {.lex_state = 321}, [1355] = {.lex_state = 261}, - [1356] = {.lex_state = 327}, - [1357] = {.lex_state = 327}, - [1358] = {.lex_state = 327}, - [1359] = {.lex_state = 327}, - [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 285}, - [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 0}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 0}, - [1366] = {.lex_state = 261}, - [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 327}, + [1356] = {.lex_state = 261}, + [1357] = {.lex_state = 261}, + [1358] = {.lex_state = 268}, + [1359] = {.lex_state = 268}, + [1360] = {.lex_state = 268}, + [1361] = {.lex_state = 0}, + [1362] = {.lex_state = 268}, + [1363] = {.lex_state = 268}, + [1364] = {.lex_state = 268}, + [1365] = {.lex_state = 268}, + [1366] = {.lex_state = 268}, + [1367] = {.lex_state = 388}, + [1368] = {.lex_state = 0}, [1369] = {.lex_state = 261}, [1370] = {.lex_state = 261}, - [1371] = {.lex_state = 261}, - [1372] = {.lex_state = 268}, - [1373] = {.lex_state = 268}, - [1374] = {.lex_state = 268}, + [1371] = {.lex_state = 268}, + [1372] = {.lex_state = 285}, + [1373] = {.lex_state = 321}, + [1374] = {.lex_state = 261}, [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 268}, - [1377] = {.lex_state = 268}, - [1378] = {.lex_state = 268}, - [1379] = {.lex_state = 268}, - [1380] = {.lex_state = 268}, - [1381] = {.lex_state = 390}, - [1382] = {.lex_state = 0}, - [1383] = {.lex_state = 327}, - [1384] = {.lex_state = 288}, - [1385] = {.lex_state = 327}, - [1386] = {.lex_state = 288}, - [1387] = {.lex_state = 357, .external_lex_state = 2}, - [1388] = {.lex_state = 357, .external_lex_state = 2}, - [1389] = {.lex_state = 357, .external_lex_state = 2}, - [1390] = {.lex_state = 357, .external_lex_state = 2}, - [1391] = {.lex_state = 362, .external_lex_state = 2}, - [1392] = {.lex_state = 357, .external_lex_state = 2}, - [1393] = {.lex_state = 288}, - [1394] = {.lex_state = 357, .external_lex_state = 2}, - [1395] = {.lex_state = 288}, - [1396] = {.lex_state = 404, .external_lex_state = 2}, - [1397] = {.lex_state = 261}, - [1398] = {.lex_state = 406, .external_lex_state = 2}, - [1399] = {.lex_state = 370, .external_lex_state = 2}, + [1376] = {.lex_state = 321}, + [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 321}, + [1379] = {.lex_state = 384, .external_lex_state = 2}, + [1380] = {.lex_state = 0}, + [1381] = {.lex_state = 261}, + [1382] = {.lex_state = 321}, + [1383] = {.lex_state = 0}, + [1384] = {.lex_state = 292, .external_lex_state = 2}, + [1385] = {.lex_state = 0}, + [1386] = {.lex_state = 321}, + [1387] = {.lex_state = 321}, + [1388] = {.lex_state = 321}, + [1389] = {.lex_state = 268}, + [1390] = {.lex_state = 321}, + [1391] = {.lex_state = 321}, + [1392] = {.lex_state = 321}, + [1393] = {.lex_state = 321}, + [1394] = {.lex_state = 0}, + [1395] = {.lex_state = 0}, + [1396] = {.lex_state = 0}, + [1397] = {.lex_state = 0}, + [1398] = {.lex_state = 290, .external_lex_state = 2}, + [1399] = {.lex_state = 0}, [1400] = {.lex_state = 0}, - [1401] = {.lex_state = 430}, - [1402] = {.lex_state = 430}, - [1403] = {.lex_state = 372, .external_lex_state = 2}, - [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 372, .external_lex_state = 3}, - [1406] = {.lex_state = 236}, - [1407] = {.lex_state = 430}, - [1408] = {.lex_state = 433}, + [1401] = {.lex_state = 288}, + [1402] = {.lex_state = 0}, + [1403] = {.lex_state = 0}, + [1404] = {.lex_state = 288}, + [1405] = {.lex_state = 0}, + [1406] = {.lex_state = 261}, + [1407] = {.lex_state = 321}, + [1408] = {.lex_state = 290, .external_lex_state = 2}, [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 288}, + [1410] = {.lex_state = 0}, [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 433}, - [1413] = {.lex_state = 433}, - [1414] = {.lex_state = 372, .external_lex_state = 2}, - [1415] = {.lex_state = 236, .external_lex_state = 4}, - [1416] = {.lex_state = 372, .external_lex_state = 2}, - [1417] = {.lex_state = 372, .external_lex_state = 3}, - [1418] = {.lex_state = 261}, - [1419] = {.lex_state = 372, .external_lex_state = 3}, - [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 372, .external_lex_state = 3}, - [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 419}, - [1424] = {.lex_state = 372, .external_lex_state = 3}, - [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 415}, - [1427] = {.lex_state = 415}, - [1428] = {.lex_state = 261}, - [1429] = {.lex_state = 372, .external_lex_state = 3}, - [1430] = {.lex_state = 236}, - [1431] = {.lex_state = 372, .external_lex_state = 3}, - [1432] = {.lex_state = 236}, - [1433] = {.lex_state = 236}, - [1434] = {.lex_state = 327}, - [1435] = {.lex_state = 0}, - [1436] = {.lex_state = 0}, - [1437] = {.lex_state = 261}, - [1438] = {.lex_state = 0}, - [1439] = {.lex_state = 327}, - [1440] = {.lex_state = 261}, - [1441] = {.lex_state = 261}, - [1442] = {.lex_state = 261}, - [1443] = {.lex_state = 268}, - [1444] = {.lex_state = 268}, - [1445] = {.lex_state = 268}, + [1412] = {.lex_state = 0}, + [1413] = {.lex_state = 0}, + [1414] = {.lex_state = 288}, + [1415] = {.lex_state = 0}, + [1416] = {.lex_state = 321}, + [1417] = {.lex_state = 321}, + [1418] = {.lex_state = 321}, + [1419] = {.lex_state = 268}, + [1420] = {.lex_state = 321}, + [1421] = {.lex_state = 321}, + [1422] = {.lex_state = 321}, + [1423] = {.lex_state = 321}, + [1424] = {.lex_state = 0}, + [1425] = {.lex_state = 321}, + [1426] = {.lex_state = 266, .external_lex_state = 2}, + [1427] = {.lex_state = 246}, + [1428] = {.lex_state = 0}, + [1429] = {.lex_state = 246}, + [1430] = {.lex_state = 0}, + [1431] = {.lex_state = 321}, + [1432] = {.lex_state = 0}, + [1433] = {.lex_state = 261}, + [1434] = {.lex_state = 261}, + [1435] = {.lex_state = 321}, + [1436] = {.lex_state = 321}, + [1437] = {.lex_state = 321}, + [1438] = {.lex_state = 321}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 285}, + [1441] = {.lex_state = 0}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 0}, + [1444] = {.lex_state = 0}, + [1445] = {.lex_state = 261}, [1446] = {.lex_state = 0}, - [1447] = {.lex_state = 268}, - [1448] = {.lex_state = 268}, - [1449] = {.lex_state = 268}, - [1450] = {.lex_state = 268}, + [1447] = {.lex_state = 321}, + [1448] = {.lex_state = 261}, + [1449] = {.lex_state = 261}, + [1450] = {.lex_state = 261}, [1451] = {.lex_state = 268}, - [1452] = {.lex_state = 390}, - [1453] = {.lex_state = 0}, + [1452] = {.lex_state = 268}, + [1453] = {.lex_state = 268}, [1454] = {.lex_state = 0}, - [1455] = {.lex_state = 0}, - [1456] = {.lex_state = 0}, - [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 0}, - [1459] = {.lex_state = 285}, - [1460] = {.lex_state = 0}, - [1461] = {.lex_state = 261}, - [1462] = {.lex_state = 268}, - [1463] = {.lex_state = 285}, - [1464] = {.lex_state = 327}, - [1465] = {.lex_state = 261}, - [1466] = {.lex_state = 0}, - [1467] = {.lex_state = 327}, - [1468] = {.lex_state = 0}, - [1469] = {.lex_state = 0}, - [1470] = {.lex_state = 285}, - [1471] = {.lex_state = 0}, - [1472] = {.lex_state = 372, .external_lex_state = 3}, - [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 261}, - [1475] = {.lex_state = 327}, - [1476] = {.lex_state = 0}, - [1477] = {.lex_state = 261}, - [1478] = {.lex_state = 327}, - [1479] = {.lex_state = 0}, - [1480] = {.lex_state = 0}, - [1481] = {.lex_state = 327}, - [1482] = {.lex_state = 327}, - [1483] = {.lex_state = 327}, - [1484] = {.lex_state = 268}, - [1485] = {.lex_state = 327}, - [1486] = {.lex_state = 327}, - [1487] = {.lex_state = 327}, - [1488] = {.lex_state = 327}, - [1489] = {.lex_state = 0}, - [1490] = {.lex_state = 0}, + [1455] = {.lex_state = 268}, + [1456] = {.lex_state = 268}, + [1457] = {.lex_state = 268}, + [1458] = {.lex_state = 268}, + [1459] = {.lex_state = 268}, + [1460] = {.lex_state = 388}, + [1461] = {.lex_state = 0}, + [1462] = {.lex_state = 321}, + [1463] = {.lex_state = 288}, + [1464] = {.lex_state = 321}, + [1465] = {.lex_state = 288}, + [1466] = {.lex_state = 351, .external_lex_state = 2}, + [1467] = {.lex_state = 351, .external_lex_state = 2}, + [1468] = {.lex_state = 351, .external_lex_state = 2}, + [1469] = {.lex_state = 351, .external_lex_state = 2}, + [1470] = {.lex_state = 356, .external_lex_state = 2}, + [1471] = {.lex_state = 351, .external_lex_state = 2}, + [1472] = {.lex_state = 288}, + [1473] = {.lex_state = 351, .external_lex_state = 2}, + [1474] = {.lex_state = 288}, + [1475] = {.lex_state = 402, .external_lex_state = 2}, + [1476] = {.lex_state = 261}, + [1477] = {.lex_state = 404, .external_lex_state = 2}, + [1478] = {.lex_state = 358, .external_lex_state = 2}, + [1479] = {.lex_state = 358, .external_lex_state = 2}, + [1480] = {.lex_state = 358, .external_lex_state = 2}, + [1481] = {.lex_state = 358, .external_lex_state = 2}, + [1482] = {.lex_state = 368, .external_lex_state = 2}, + [1483] = {.lex_state = 358, .external_lex_state = 2}, + [1484] = {.lex_state = 288}, + [1485] = {.lex_state = 358, .external_lex_state = 2}, + [1486] = {.lex_state = 288}, + [1487] = {.lex_state = 0}, + [1488] = {.lex_state = 426}, + [1489] = {.lex_state = 426}, + [1490] = {.lex_state = 370, .external_lex_state = 2}, [1491] = {.lex_state = 0}, - [1492] = {.lex_state = 261}, - [1493] = {.lex_state = 327}, - [1494] = {.lex_state = 0}, - [1495] = {.lex_state = 0}, - [1496] = {.lex_state = 327}, - [1497] = {.lex_state = 327}, - [1498] = {.lex_state = 327}, - [1499] = {.lex_state = 268}, - [1500] = {.lex_state = 327}, - [1501] = {.lex_state = 327}, - [1502] = {.lex_state = 327}, - [1503] = {.lex_state = 327}, - [1504] = {.lex_state = 0}, - [1505] = {.lex_state = 0}, - [1506] = {.lex_state = 0}, - [1507] = {.lex_state = 261}, - [1508] = {.lex_state = 327}, + [1492] = {.lex_state = 370, .external_lex_state = 3}, + [1493] = {.lex_state = 236}, + [1494] = {.lex_state = 426}, + [1495] = {.lex_state = 429}, + [1496] = {.lex_state = 0}, + [1497] = {.lex_state = 288}, + [1498] = {.lex_state = 0}, + [1499] = {.lex_state = 429}, + [1500] = {.lex_state = 429}, + [1501] = {.lex_state = 370, .external_lex_state = 2}, + [1502] = {.lex_state = 236, .external_lex_state = 4}, + [1503] = {.lex_state = 370, .external_lex_state = 2}, + [1504] = {.lex_state = 370, .external_lex_state = 3}, + [1505] = {.lex_state = 261}, + [1506] = {.lex_state = 370, .external_lex_state = 3}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 370, .external_lex_state = 3}, [1509] = {.lex_state = 0}, - [1510] = {.lex_state = 285}, - [1511] = {.lex_state = 0}, + [1510] = {.lex_state = 417}, + [1511] = {.lex_state = 370, .external_lex_state = 3}, [1512] = {.lex_state = 0}, - [1513] = {.lex_state = 0}, - [1514] = {.lex_state = 261}, - [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 327}, - [1517] = {.lex_state = 261}, - [1518] = {.lex_state = 261}, - [1519] = {.lex_state = 261}, - [1520] = {.lex_state = 268}, - [1521] = {.lex_state = 268}, - [1522] = {.lex_state = 268}, + [1513] = {.lex_state = 413}, + [1514] = {.lex_state = 413}, + [1515] = {.lex_state = 261}, + [1516] = {.lex_state = 370, .external_lex_state = 3}, + [1517] = {.lex_state = 236}, + [1518] = {.lex_state = 370, .external_lex_state = 3}, + [1519] = {.lex_state = 236}, + [1520] = {.lex_state = 236}, + [1521] = {.lex_state = 321}, + [1522] = {.lex_state = 0}, [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 268}, - [1525] = {.lex_state = 268}, - [1526] = {.lex_state = 268}, - [1527] = {.lex_state = 268}, - [1528] = {.lex_state = 268}, - [1529] = {.lex_state = 390}, - [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 0}, - [1532] = {.lex_state = 261}, - [1533] = {.lex_state = 327}, - [1534] = {.lex_state = 0}, - [1535] = {.lex_state = 0}, - [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 261}, - [1538] = {.lex_state = 327}, - [1539] = {.lex_state = 0}, + [1524] = {.lex_state = 261}, + [1525] = {.lex_state = 0}, + [1526] = {.lex_state = 321}, + [1527] = {.lex_state = 261}, + [1528] = {.lex_state = 261}, + [1529] = {.lex_state = 261}, + [1530] = {.lex_state = 268}, + [1531] = {.lex_state = 268}, + [1532] = {.lex_state = 268}, + [1533] = {.lex_state = 0}, + [1534] = {.lex_state = 268}, + [1535] = {.lex_state = 268}, + [1536] = {.lex_state = 268}, + [1537] = {.lex_state = 268}, + [1538] = {.lex_state = 268}, + [1539] = {.lex_state = 388}, [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 327}, - [1542] = {.lex_state = 327}, - [1543] = {.lex_state = 327}, - [1544] = {.lex_state = 268}, - [1545] = {.lex_state = 327}, - [1546] = {.lex_state = 327}, - [1547] = {.lex_state = 327}, - [1548] = {.lex_state = 327}, - [1549] = {.lex_state = 0}, + [1541] = {.lex_state = 0}, + [1542] = {.lex_state = 0}, + [1543] = {.lex_state = 0}, + [1544] = {.lex_state = 0}, + [1545] = {.lex_state = 0}, + [1546] = {.lex_state = 285}, + [1547] = {.lex_state = 0}, + [1548] = {.lex_state = 261}, + [1549] = {.lex_state = 268}, [1550] = {.lex_state = 285}, - [1551] = {.lex_state = 0}, - [1552] = {.lex_state = 0}, + [1551] = {.lex_state = 321}, + [1552] = {.lex_state = 261}, [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 261}, + [1554] = {.lex_state = 321}, [1555] = {.lex_state = 0}, - [1556] = {.lex_state = 327}, - [1557] = {.lex_state = 261}, - [1558] = {.lex_state = 261}, - [1559] = {.lex_state = 261}, - [1560] = {.lex_state = 268}, - [1561] = {.lex_state = 268}, - [1562] = {.lex_state = 268}, - [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 268}, - [1565] = {.lex_state = 268}, - [1566] = {.lex_state = 268}, - [1567] = {.lex_state = 268}, - [1568] = {.lex_state = 268}, - [1569] = {.lex_state = 390}, - [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 261}, - [1573] = {.lex_state = 327}, - [1574] = {.lex_state = 290, .external_lex_state = 2}, - [1575] = {.lex_state = 288}, - [1576] = {.lex_state = 0}, - [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 261}, - [1579] = {.lex_state = 288}, - [1580] = {.lex_state = 290, .external_lex_state = 2}, - [1581] = {.lex_state = 288}, - [1582] = {.lex_state = 327}, - [1583] = {.lex_state = 327}, + [1556] = {.lex_state = 0}, + [1557] = {.lex_state = 285}, + [1558] = {.lex_state = 0}, + [1559] = {.lex_state = 370, .external_lex_state = 3}, + [1560] = {.lex_state = 420, .external_lex_state = 2}, + [1561] = {.lex_state = 288}, + [1562] = {.lex_state = 0}, + [1563] = {.lex_state = 261}, + [1564] = {.lex_state = 321}, + [1565] = {.lex_state = 0}, + [1566] = {.lex_state = 261}, + [1567] = {.lex_state = 321}, + [1568] = {.lex_state = 0}, + [1569] = {.lex_state = 0}, + [1570] = {.lex_state = 321}, + [1571] = {.lex_state = 321}, + [1572] = {.lex_state = 321}, + [1573] = {.lex_state = 268}, + [1574] = {.lex_state = 321}, + [1575] = {.lex_state = 321}, + [1576] = {.lex_state = 321}, + [1577] = {.lex_state = 321}, + [1578] = {.lex_state = 0}, + [1579] = {.lex_state = 0}, + [1580] = {.lex_state = 0}, + [1581] = {.lex_state = 261}, + [1582] = {.lex_state = 321}, + [1583] = {.lex_state = 0}, [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 327}, - [1586] = {.lex_state = 246}, - [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 0}, - [1589] = {.lex_state = 266, .external_lex_state = 2}, - [1590] = {.lex_state = 0}, - [1591] = {.lex_state = 261}, - [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 438}, + [1585] = {.lex_state = 321}, + [1586] = {.lex_state = 321}, + [1587] = {.lex_state = 321}, + [1588] = {.lex_state = 268}, + [1589] = {.lex_state = 321}, + [1590] = {.lex_state = 321}, + [1591] = {.lex_state = 321}, + [1592] = {.lex_state = 321}, + [1593] = {.lex_state = 0}, [1594] = {.lex_state = 0}, [1595] = {.lex_state = 0}, [1596] = {.lex_state = 261}, - [1597] = {.lex_state = 327}, + [1597] = {.lex_state = 321}, [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 0}, - [1600] = {.lex_state = 327}, - [1601] = {.lex_state = 327}, - [1602] = {.lex_state = 327}, - [1603] = {.lex_state = 268}, - [1604] = {.lex_state = 327}, - [1605] = {.lex_state = 327}, - [1606] = {.lex_state = 327}, - [1607] = {.lex_state = 327}, - [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 327}, - [1610] = {.lex_state = 327}, - [1611] = {.lex_state = 357, .external_lex_state = 2}, - [1612] = {.lex_state = 357, .external_lex_state = 2}, - [1613] = {.lex_state = 404, .external_lex_state = 2}, - [1614] = {.lex_state = 430}, - [1615] = {.lex_state = 372, .external_lex_state = 3}, - [1616] = {.lex_state = 236}, - [1617] = {.lex_state = 236}, - [1618] = {.lex_state = 261}, - [1619] = {.lex_state = 433}, - [1620] = {.lex_state = 236, .external_lex_state = 4}, - [1621] = {.lex_state = 236, .external_lex_state = 4}, - [1622] = {.lex_state = 266, .external_lex_state = 2}, - [1623] = {.lex_state = 430, .external_lex_state = 4}, - [1624] = {.lex_state = 430, .external_lex_state = 4}, + [1599] = {.lex_state = 285}, + [1600] = {.lex_state = 0}, + [1601] = {.lex_state = 0}, + [1602] = {.lex_state = 0}, + [1603] = {.lex_state = 261}, + [1604] = {.lex_state = 0}, + [1605] = {.lex_state = 321}, + [1606] = {.lex_state = 261}, + [1607] = {.lex_state = 261}, + [1608] = {.lex_state = 261}, + [1609] = {.lex_state = 268}, + [1610] = {.lex_state = 268}, + [1611] = {.lex_state = 268}, + [1612] = {.lex_state = 0}, + [1613] = {.lex_state = 268}, + [1614] = {.lex_state = 268}, + [1615] = {.lex_state = 268}, + [1616] = {.lex_state = 268}, + [1617] = {.lex_state = 268}, + [1618] = {.lex_state = 388}, + [1619] = {.lex_state = 0}, + [1620] = {.lex_state = 0}, + [1621] = {.lex_state = 261}, + [1622] = {.lex_state = 321}, + [1623] = {.lex_state = 0}, + [1624] = {.lex_state = 0}, [1625] = {.lex_state = 0}, - [1626] = {.lex_state = 236, .external_lex_state = 4}, - [1627] = {.lex_state = 266, .external_lex_state = 2}, - [1628] = {.lex_state = 433, .external_lex_state = 4}, - [1629] = {.lex_state = 433, .external_lex_state = 4}, - [1630] = {.lex_state = 288}, - [1631] = {.lex_state = 0}, - [1632] = {.lex_state = 415, .external_lex_state = 4}, - [1633] = {.lex_state = 236, .external_lex_state = 4}, - [1634] = {.lex_state = 415, .external_lex_state = 4}, - [1635] = {.lex_state = 236, .external_lex_state = 4}, - [1636] = {.lex_state = 236, .external_lex_state = 4}, - [1637] = {.lex_state = 236, .external_lex_state = 4}, - [1638] = {.lex_state = 372, .external_lex_state = 3}, - [1639] = {.lex_state = 372, .external_lex_state = 3}, - [1640] = {.lex_state = 261}, - [1641] = {.lex_state = 236, .external_lex_state = 4}, - [1642] = {.lex_state = 372, .external_lex_state = 3}, - [1643] = {.lex_state = 0}, - [1644] = {.lex_state = 415}, - [1645] = {.lex_state = 236, .external_lex_state = 4}, - [1646] = {.lex_state = 266, .external_lex_state = 2}, - [1647] = {.lex_state = 436}, - [1648] = {.lex_state = 436}, - [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 261}, - [1651] = {.lex_state = 327}, + [1626] = {.lex_state = 261}, + [1627] = {.lex_state = 321}, + [1628] = {.lex_state = 0}, + [1629] = {.lex_state = 0}, + [1630] = {.lex_state = 321}, + [1631] = {.lex_state = 321}, + [1632] = {.lex_state = 321}, + [1633] = {.lex_state = 268}, + [1634] = {.lex_state = 321}, + [1635] = {.lex_state = 321}, + [1636] = {.lex_state = 321}, + [1637] = {.lex_state = 321}, + [1638] = {.lex_state = 0}, + [1639] = {.lex_state = 285}, + [1640] = {.lex_state = 0}, + [1641] = {.lex_state = 0}, + [1642] = {.lex_state = 0}, + [1643] = {.lex_state = 261}, + [1644] = {.lex_state = 0}, + [1645] = {.lex_state = 321}, + [1646] = {.lex_state = 261}, + [1647] = {.lex_state = 261}, + [1648] = {.lex_state = 261}, + [1649] = {.lex_state = 268}, + [1650] = {.lex_state = 268}, + [1651] = {.lex_state = 268}, [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 327}, - [1655] = {.lex_state = 327}, - [1656] = {.lex_state = 327}, + [1653] = {.lex_state = 268}, + [1654] = {.lex_state = 268}, + [1655] = {.lex_state = 268}, + [1656] = {.lex_state = 268}, [1657] = {.lex_state = 268}, - [1658] = {.lex_state = 327}, - [1659] = {.lex_state = 327}, - [1660] = {.lex_state = 327}, - [1661] = {.lex_state = 327}, - [1662] = {.lex_state = 0}, - [1663] = {.lex_state = 261}, - [1664] = {.lex_state = 285}, + [1658] = {.lex_state = 388}, + [1659] = {.lex_state = 0}, + [1660] = {.lex_state = 0}, + [1661] = {.lex_state = 261}, + [1662] = {.lex_state = 321}, + [1663] = {.lex_state = 290, .external_lex_state = 2}, + [1664] = {.lex_state = 288}, [1665] = {.lex_state = 0}, - [1666] = {.lex_state = 261}, - [1667] = {.lex_state = 0}, - [1668] = {.lex_state = 327}, - [1669] = {.lex_state = 261}, - [1670] = {.lex_state = 261}, - [1671] = {.lex_state = 261}, - [1672] = {.lex_state = 268}, - [1673] = {.lex_state = 268}, - [1674] = {.lex_state = 268}, - [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 268}, - [1677] = {.lex_state = 268}, - [1678] = {.lex_state = 268}, - [1679] = {.lex_state = 268}, - [1680] = {.lex_state = 268}, - [1681] = {.lex_state = 390}, - [1682] = {.lex_state = 0}, - [1683] = {.lex_state = 261}, - [1684] = {.lex_state = 236}, - [1685] = {.lex_state = 0}, - [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 261}, - [1688] = {.lex_state = 327}, - [1689] = {.lex_state = 0}, - [1690] = {.lex_state = 261}, - [1691] = {.lex_state = 327}, - [1692] = {.lex_state = 0}, - [1693] = {.lex_state = 261}, - [1694] = {.lex_state = 0}, - [1695] = {.lex_state = 438}, - [1696] = {.lex_state = 0}, + [1666] = {.lex_state = 0}, + [1667] = {.lex_state = 261}, + [1668] = {.lex_state = 288}, + [1669] = {.lex_state = 290, .external_lex_state = 2}, + [1670] = {.lex_state = 288}, + [1671] = {.lex_state = 321}, + [1672] = {.lex_state = 321}, + [1673] = {.lex_state = 0}, + [1674] = {.lex_state = 321}, + [1675] = {.lex_state = 246}, + [1676] = {.lex_state = 0}, + [1677] = {.lex_state = 0}, + [1678] = {.lex_state = 266, .external_lex_state = 2}, + [1679] = {.lex_state = 0}, + [1680] = {.lex_state = 261}, + [1681] = {.lex_state = 0}, + [1682] = {.lex_state = 434}, + [1683] = {.lex_state = 0}, + [1684] = {.lex_state = 0}, + [1685] = {.lex_state = 261}, + [1686] = {.lex_state = 321}, + [1687] = {.lex_state = 0}, + [1688] = {.lex_state = 0}, + [1689] = {.lex_state = 321}, + [1690] = {.lex_state = 321}, + [1691] = {.lex_state = 321}, + [1692] = {.lex_state = 268}, + [1693] = {.lex_state = 321}, + [1694] = {.lex_state = 321}, + [1695] = {.lex_state = 321}, + [1696] = {.lex_state = 321}, [1697] = {.lex_state = 0}, - [1698] = {.lex_state = 261}, - [1699] = {.lex_state = 327}, - [1700] = {.lex_state = 0}, - [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 327}, - [1703] = {.lex_state = 327}, - [1704] = {.lex_state = 327}, - [1705] = {.lex_state = 268}, - [1706] = {.lex_state = 327}, - [1707] = {.lex_state = 327}, - [1708] = {.lex_state = 327}, - [1709] = {.lex_state = 327}, - [1710] = {.lex_state = 0}, - [1711] = {.lex_state = 0}, - [1712] = {.lex_state = 0}, - [1713] = {.lex_state = 261}, - [1714] = {.lex_state = 327}, - [1715] = {.lex_state = 261}, + [1698] = {.lex_state = 321}, + [1699] = {.lex_state = 321}, + [1700] = {.lex_state = 351, .external_lex_state = 2}, + [1701] = {.lex_state = 351, .external_lex_state = 2}, + [1702] = {.lex_state = 402, .external_lex_state = 2}, + [1703] = {.lex_state = 358, .external_lex_state = 2}, + [1704] = {.lex_state = 358, .external_lex_state = 2}, + [1705] = {.lex_state = 426}, + [1706] = {.lex_state = 370, .external_lex_state = 3}, + [1707] = {.lex_state = 236}, + [1708] = {.lex_state = 236}, + [1709] = {.lex_state = 261}, + [1710] = {.lex_state = 429}, + [1711] = {.lex_state = 236, .external_lex_state = 4}, + [1712] = {.lex_state = 236, .external_lex_state = 4}, + [1713] = {.lex_state = 266, .external_lex_state = 2}, + [1714] = {.lex_state = 426, .external_lex_state = 4}, + [1715] = {.lex_state = 426, .external_lex_state = 4}, [1716] = {.lex_state = 0}, - [1717] = {.lex_state = 438}, - [1718] = {.lex_state = 0}, - [1719] = {.lex_state = 0}, - [1720] = {.lex_state = 261}, - [1721] = {.lex_state = 327}, + [1717] = {.lex_state = 236, .external_lex_state = 4}, + [1718] = {.lex_state = 266, .external_lex_state = 2}, + [1719] = {.lex_state = 429, .external_lex_state = 4}, + [1720] = {.lex_state = 429, .external_lex_state = 4}, + [1721] = {.lex_state = 288}, [1722] = {.lex_state = 0}, - [1723] = {.lex_state = 0}, - [1724] = {.lex_state = 327}, - [1725] = {.lex_state = 327}, - [1726] = {.lex_state = 327}, - [1727] = {.lex_state = 268}, - [1728] = {.lex_state = 327}, - [1729] = {.lex_state = 327}, - [1730] = {.lex_state = 327}, - [1731] = {.lex_state = 327}, - [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 0}, + [1723] = {.lex_state = 413, .external_lex_state = 4}, + [1724] = {.lex_state = 236, .external_lex_state = 4}, + [1725] = {.lex_state = 413, .external_lex_state = 4}, + [1726] = {.lex_state = 236, .external_lex_state = 4}, + [1727] = {.lex_state = 236, .external_lex_state = 4}, + [1728] = {.lex_state = 236, .external_lex_state = 4}, + [1729] = {.lex_state = 370, .external_lex_state = 3}, + [1730] = {.lex_state = 370, .external_lex_state = 3}, + [1731] = {.lex_state = 261}, + [1732] = {.lex_state = 236, .external_lex_state = 4}, + [1733] = {.lex_state = 370, .external_lex_state = 3}, [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 0}, - [1736] = {.lex_state = 246}, - [1737] = {.lex_state = 0}, - [1738] = {.lex_state = 261}, - [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 438}, - [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 0}, - [1743] = {.lex_state = 261}, - [1744] = {.lex_state = 327}, - [1745] = {.lex_state = 430}, - [1746] = {.lex_state = 430, .external_lex_state = 4}, - [1747] = {.lex_state = 236, .external_lex_state = 4}, - [1748] = {.lex_state = 430, .external_lex_state = 4}, - [1749] = {.lex_state = 372, .external_lex_state = 2}, - [1750] = {.lex_state = 266, .external_lex_state = 2}, - [1751] = {.lex_state = 261}, - [1752] = {.lex_state = 0}, - [1753] = {.lex_state = 430, .external_lex_state = 4}, - [1754] = {.lex_state = 236, .external_lex_state = 4}, - [1755] = {.lex_state = 430, .external_lex_state = 4}, - [1756] = {.lex_state = 372, .external_lex_state = 3}, - [1757] = {.lex_state = 433, .external_lex_state = 4}, - [1758] = {.lex_state = 236, .external_lex_state = 4}, - [1759] = {.lex_state = 433, .external_lex_state = 4}, - [1760] = {.lex_state = 372, .external_lex_state = 2}, - [1761] = {.lex_state = 266, .external_lex_state = 2}, - [1762] = {.lex_state = 236, .external_lex_state = 4}, - [1763] = {.lex_state = 372, .external_lex_state = 3}, - [1764] = {.lex_state = 327}, - [1765] = {.lex_state = 372, .external_lex_state = 3}, + [1735] = {.lex_state = 413}, + [1736] = {.lex_state = 236, .external_lex_state = 4}, + [1737] = {.lex_state = 266, .external_lex_state = 2}, + [1738] = {.lex_state = 432}, + [1739] = {.lex_state = 432}, + [1740] = {.lex_state = 0}, + [1741] = {.lex_state = 261}, + [1742] = {.lex_state = 321}, + [1743] = {.lex_state = 0}, + [1744] = {.lex_state = 0}, + [1745] = {.lex_state = 321}, + [1746] = {.lex_state = 321}, + [1747] = {.lex_state = 321}, + [1748] = {.lex_state = 268}, + [1749] = {.lex_state = 321}, + [1750] = {.lex_state = 321}, + [1751] = {.lex_state = 321}, + [1752] = {.lex_state = 321}, + [1753] = {.lex_state = 0}, + [1754] = {.lex_state = 261}, + [1755] = {.lex_state = 285}, + [1756] = {.lex_state = 0}, + [1757] = {.lex_state = 261}, + [1758] = {.lex_state = 0}, + [1759] = {.lex_state = 321}, + [1760] = {.lex_state = 261}, + [1761] = {.lex_state = 261}, + [1762] = {.lex_state = 261}, + [1763] = {.lex_state = 268}, + [1764] = {.lex_state = 268}, + [1765] = {.lex_state = 268}, [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 436, .external_lex_state = 4}, - [1768] = {.lex_state = 236, .external_lex_state = 4}, - [1769] = {.lex_state = 415, .external_lex_state = 4}, - [1770] = {.lex_state = 236, .external_lex_state = 4}, - [1771] = {.lex_state = 236, .external_lex_state = 4}, - [1772] = {.lex_state = 236, .external_lex_state = 4}, - [1773] = {.lex_state = 236, .external_lex_state = 4}, - [1774] = {.lex_state = 0}, - [1775] = {.lex_state = 236, .external_lex_state = 4}, - [1776] = {.lex_state = 372, .external_lex_state = 3}, - [1777] = {.lex_state = 436}, - [1778] = {.lex_state = 236, .external_lex_state = 4}, - [1779] = {.lex_state = 436}, - [1780] = {.lex_state = 372, .external_lex_state = 2}, - [1781] = {.lex_state = 266, .external_lex_state = 2}, - [1782] = {.lex_state = 0}, - [1783] = {.lex_state = 261}, - [1784] = {.lex_state = 327}, - [1785] = {.lex_state = 0}, + [1767] = {.lex_state = 268}, + [1768] = {.lex_state = 268}, + [1769] = {.lex_state = 268}, + [1770] = {.lex_state = 268}, + [1771] = {.lex_state = 268}, + [1772] = {.lex_state = 388}, + [1773] = {.lex_state = 0}, + [1774] = {.lex_state = 261}, + [1775] = {.lex_state = 236}, + [1776] = {.lex_state = 420, .external_lex_state = 2}, + [1777] = {.lex_state = 0}, + [1778] = {.lex_state = 0}, + [1779] = {.lex_state = 261}, + [1780] = {.lex_state = 321}, + [1781] = {.lex_state = 0}, + [1782] = {.lex_state = 261}, + [1783] = {.lex_state = 321}, + [1784] = {.lex_state = 0}, + [1785] = {.lex_state = 261}, [1786] = {.lex_state = 0}, - [1787] = {.lex_state = 261}, - [1788] = {.lex_state = 327}, + [1787] = {.lex_state = 434}, + [1788] = {.lex_state = 0}, [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 0}, - [1791] = {.lex_state = 327}, - [1792] = {.lex_state = 327}, - [1793] = {.lex_state = 327}, - [1794] = {.lex_state = 268}, - [1795] = {.lex_state = 327}, - [1796] = {.lex_state = 327}, - [1797] = {.lex_state = 327}, - [1798] = {.lex_state = 327}, - [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 0}, - [1801] = {.lex_state = 0}, + [1790] = {.lex_state = 261}, + [1791] = {.lex_state = 321}, + [1792] = {.lex_state = 0}, + [1793] = {.lex_state = 0}, + [1794] = {.lex_state = 321}, + [1795] = {.lex_state = 321}, + [1796] = {.lex_state = 321}, + [1797] = {.lex_state = 268}, + [1798] = {.lex_state = 321}, + [1799] = {.lex_state = 321}, + [1800] = {.lex_state = 321}, + [1801] = {.lex_state = 321}, [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 261}, - [1804] = {.lex_state = 438}, - [1805] = {.lex_state = 0}, - [1806] = {.lex_state = 0}, + [1803] = {.lex_state = 0}, + [1804] = {.lex_state = 0}, + [1805] = {.lex_state = 261}, + [1806] = {.lex_state = 321}, [1807] = {.lex_state = 261}, - [1808] = {.lex_state = 327}, - [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 261}, - [1811] = {.lex_state = 438}, - [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 261}, - [1815] = {.lex_state = 327}, - [1816] = {.lex_state = 0}, - [1817] = {.lex_state = 261}, - [1818] = {.lex_state = 0}, - [1819] = {.lex_state = 430, .external_lex_state = 4}, - [1820] = {.lex_state = 430, .external_lex_state = 4}, - [1821] = {.lex_state = 372, .external_lex_state = 2}, - [1822] = {.lex_state = 0}, - [1823] = {.lex_state = 372, .external_lex_state = 3}, - [1824] = {.lex_state = 236, .external_lex_state = 4}, - [1825] = {.lex_state = 430, .external_lex_state = 4}, - [1826] = {.lex_state = 433, .external_lex_state = 4}, - [1827] = {.lex_state = 433, .external_lex_state = 4}, - [1828] = {.lex_state = 433, .external_lex_state = 4}, - [1829] = {.lex_state = 372, .external_lex_state = 2}, - [1830] = {.lex_state = 236, .external_lex_state = 4}, - [1831] = {.lex_state = 266, .external_lex_state = 2}, - [1832] = {.lex_state = 415, .external_lex_state = 4}, - [1833] = {.lex_state = 415, .external_lex_state = 4}, - [1834] = {.lex_state = 261}, - [1835] = {.lex_state = 372, .external_lex_state = 3}, - [1836] = {.lex_state = 236, .external_lex_state = 4}, - [1837] = {.lex_state = 372, .external_lex_state = 3}, - [1838] = {.lex_state = 236, .external_lex_state = 4}, + [1808] = {.lex_state = 0}, + [1809] = {.lex_state = 434}, + [1810] = {.lex_state = 0}, + [1811] = {.lex_state = 0}, + [1812] = {.lex_state = 261}, + [1813] = {.lex_state = 321}, + [1814] = {.lex_state = 0}, + [1815] = {.lex_state = 0}, + [1816] = {.lex_state = 321}, + [1817] = {.lex_state = 321}, + [1818] = {.lex_state = 321}, + [1819] = {.lex_state = 268}, + [1820] = {.lex_state = 321}, + [1821] = {.lex_state = 321}, + [1822] = {.lex_state = 321}, + [1823] = {.lex_state = 321}, + [1824] = {.lex_state = 0}, + [1825] = {.lex_state = 0}, + [1826] = {.lex_state = 0}, + [1827] = {.lex_state = 0}, + [1828] = {.lex_state = 246}, + [1829] = {.lex_state = 0}, + [1830] = {.lex_state = 261}, + [1831] = {.lex_state = 0}, + [1832] = {.lex_state = 434}, + [1833] = {.lex_state = 0}, + [1834] = {.lex_state = 0}, + [1835] = {.lex_state = 261}, + [1836] = {.lex_state = 321}, + [1837] = {.lex_state = 426}, + [1838] = {.lex_state = 426, .external_lex_state = 4}, [1839] = {.lex_state = 236, .external_lex_state = 4}, - [1840] = {.lex_state = 372, .external_lex_state = 3}, - [1841] = {.lex_state = 415}, - [1842] = {.lex_state = 436}, - [1843] = {.lex_state = 436}, - [1844] = {.lex_state = 372, .external_lex_state = 2}, - [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 0}, - [1847] = {.lex_state = 261}, - [1848] = {.lex_state = 327}, - [1849] = {.lex_state = 261}, - [1850] = {.lex_state = 0}, - [1851] = {.lex_state = 261}, - [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 430, .external_lex_state = 4}, - [1854] = {.lex_state = 372, .external_lex_state = 3}, - [1855] = {.lex_state = 236, .external_lex_state = 4}, - [1856] = {.lex_state = 236, .external_lex_state = 4}, - [1857] = {.lex_state = 433, .external_lex_state = 4}, - [1858] = {.lex_state = 415, .external_lex_state = 4}, - [1859] = {.lex_state = 236, .external_lex_state = 4}, - [1860] = {.lex_state = 415, .external_lex_state = 4}, - [1861] = {.lex_state = 372, .external_lex_state = 2}, - [1862] = {.lex_state = 266, .external_lex_state = 2}, - [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 415, .external_lex_state = 4}, + [1840] = {.lex_state = 426, .external_lex_state = 4}, + [1841] = {.lex_state = 370, .external_lex_state = 2}, + [1842] = {.lex_state = 266, .external_lex_state = 2}, + [1843] = {.lex_state = 261}, + [1844] = {.lex_state = 0}, + [1845] = {.lex_state = 426, .external_lex_state = 4}, + [1846] = {.lex_state = 236, .external_lex_state = 4}, + [1847] = {.lex_state = 426, .external_lex_state = 4}, + [1848] = {.lex_state = 370, .external_lex_state = 3}, + [1849] = {.lex_state = 429, .external_lex_state = 4}, + [1850] = {.lex_state = 236, .external_lex_state = 4}, + [1851] = {.lex_state = 429, .external_lex_state = 4}, + [1852] = {.lex_state = 370, .external_lex_state = 2}, + [1853] = {.lex_state = 266, .external_lex_state = 2}, + [1854] = {.lex_state = 236, .external_lex_state = 4}, + [1855] = {.lex_state = 370, .external_lex_state = 3}, + [1856] = {.lex_state = 321}, + [1857] = {.lex_state = 370, .external_lex_state = 3}, + [1858] = {.lex_state = 0}, + [1859] = {.lex_state = 432, .external_lex_state = 4}, + [1860] = {.lex_state = 236, .external_lex_state = 4}, + [1861] = {.lex_state = 413, .external_lex_state = 4}, + [1862] = {.lex_state = 236, .external_lex_state = 4}, + [1863] = {.lex_state = 236, .external_lex_state = 4}, + [1864] = {.lex_state = 236, .external_lex_state = 4}, [1865] = {.lex_state = 236, .external_lex_state = 4}, - [1866] = {.lex_state = 266, .external_lex_state = 2}, - [1867] = {.lex_state = 436, .external_lex_state = 4}, - [1868] = {.lex_state = 436, .external_lex_state = 4}, - [1869] = {.lex_state = 236, .external_lex_state = 4}, - [1870] = {.lex_state = 436}, - [1871] = {.lex_state = 0}, - [1872] = {.lex_state = 430, .external_lex_state = 4}, - [1873] = {.lex_state = 415, .external_lex_state = 4}, - [1874] = {.lex_state = 415, .external_lex_state = 4}, - [1875] = {.lex_state = 372, .external_lex_state = 2}, - [1876] = {.lex_state = 372, .external_lex_state = 3}, - [1877] = {.lex_state = 436, .external_lex_state = 4}, - [1878] = {.lex_state = 236, .external_lex_state = 4}, - [1879] = {.lex_state = 436, .external_lex_state = 4}, - [1880] = {.lex_state = 372, .external_lex_state = 2}, - [1881] = {.lex_state = 266, .external_lex_state = 2}, - [1882] = {.lex_state = 415, .external_lex_state = 4}, - [1883] = {.lex_state = 415, .external_lex_state = 4}, - [1884] = {.lex_state = 436, .external_lex_state = 4}, - [1885] = {.lex_state = 436, .external_lex_state = 4}, - [1886] = {.lex_state = 372, .external_lex_state = 2}, - [1887] = {.lex_state = 436, .external_lex_state = 4}, + [1866] = {.lex_state = 0}, + [1867] = {.lex_state = 236, .external_lex_state = 4}, + [1868] = {.lex_state = 370, .external_lex_state = 3}, + [1869] = {.lex_state = 432}, + [1870] = {.lex_state = 236, .external_lex_state = 4}, + [1871] = {.lex_state = 432}, + [1872] = {.lex_state = 370, .external_lex_state = 2}, + [1873] = {.lex_state = 266, .external_lex_state = 2}, + [1874] = {.lex_state = 0}, + [1875] = {.lex_state = 261}, + [1876] = {.lex_state = 321}, + [1877] = {.lex_state = 0}, + [1878] = {.lex_state = 0}, + [1879] = {.lex_state = 261}, + [1880] = {.lex_state = 321}, + [1881] = {.lex_state = 0}, + [1882] = {.lex_state = 0}, + [1883] = {.lex_state = 321}, + [1884] = {.lex_state = 321}, + [1885] = {.lex_state = 321}, + [1886] = {.lex_state = 268}, + [1887] = {.lex_state = 321}, + [1888] = {.lex_state = 321}, + [1889] = {.lex_state = 321}, + [1890] = {.lex_state = 321}, + [1891] = {.lex_state = 0}, + [1892] = {.lex_state = 0}, + [1893] = {.lex_state = 0}, + [1894] = {.lex_state = 0}, + [1895] = {.lex_state = 261}, + [1896] = {.lex_state = 434}, + [1897] = {.lex_state = 0}, + [1898] = {.lex_state = 0}, + [1899] = {.lex_state = 261}, + [1900] = {.lex_state = 321}, + [1901] = {.lex_state = 0}, + [1902] = {.lex_state = 261}, + [1903] = {.lex_state = 434}, + [1904] = {.lex_state = 0}, + [1905] = {.lex_state = 0}, + [1906] = {.lex_state = 261}, + [1907] = {.lex_state = 321}, + [1908] = {.lex_state = 0}, + [1909] = {.lex_state = 261}, + [1910] = {.lex_state = 0}, + [1911] = {.lex_state = 426, .external_lex_state = 4}, + [1912] = {.lex_state = 426, .external_lex_state = 4}, + [1913] = {.lex_state = 370, .external_lex_state = 2}, + [1914] = {.lex_state = 0}, + [1915] = {.lex_state = 370, .external_lex_state = 3}, + [1916] = {.lex_state = 236, .external_lex_state = 4}, + [1917] = {.lex_state = 426, .external_lex_state = 4}, + [1918] = {.lex_state = 429, .external_lex_state = 4}, + [1919] = {.lex_state = 429, .external_lex_state = 4}, + [1920] = {.lex_state = 429, .external_lex_state = 4}, + [1921] = {.lex_state = 370, .external_lex_state = 2}, + [1922] = {.lex_state = 236, .external_lex_state = 4}, + [1923] = {.lex_state = 266, .external_lex_state = 2}, + [1924] = {.lex_state = 413, .external_lex_state = 4}, + [1925] = {.lex_state = 413, .external_lex_state = 4}, + [1926] = {.lex_state = 261}, + [1927] = {.lex_state = 370, .external_lex_state = 3}, + [1928] = {.lex_state = 236, .external_lex_state = 4}, + [1929] = {.lex_state = 370, .external_lex_state = 3}, + [1930] = {.lex_state = 236, .external_lex_state = 4}, + [1931] = {.lex_state = 236, .external_lex_state = 4}, + [1932] = {.lex_state = 370, .external_lex_state = 3}, + [1933] = {.lex_state = 413}, + [1934] = {.lex_state = 432}, + [1935] = {.lex_state = 432}, + [1936] = {.lex_state = 370, .external_lex_state = 2}, + [1937] = {.lex_state = 0}, + [1938] = {.lex_state = 0}, + [1939] = {.lex_state = 261}, + [1940] = {.lex_state = 321}, + [1941] = {.lex_state = 261}, + [1942] = {.lex_state = 0}, + [1943] = {.lex_state = 261}, + [1944] = {.lex_state = 0}, + [1945] = {.lex_state = 426, .external_lex_state = 4}, + [1946] = {.lex_state = 370, .external_lex_state = 3}, + [1947] = {.lex_state = 236, .external_lex_state = 4}, + [1948] = {.lex_state = 236, .external_lex_state = 4}, + [1949] = {.lex_state = 429, .external_lex_state = 4}, + [1950] = {.lex_state = 413, .external_lex_state = 4}, + [1951] = {.lex_state = 236, .external_lex_state = 4}, + [1952] = {.lex_state = 413, .external_lex_state = 4}, + [1953] = {.lex_state = 370, .external_lex_state = 2}, + [1954] = {.lex_state = 266, .external_lex_state = 2}, + [1955] = {.lex_state = 0}, + [1956] = {.lex_state = 413, .external_lex_state = 4}, + [1957] = {.lex_state = 236, .external_lex_state = 4}, + [1958] = {.lex_state = 266, .external_lex_state = 2}, + [1959] = {.lex_state = 432, .external_lex_state = 4}, + [1960] = {.lex_state = 432, .external_lex_state = 4}, + [1961] = {.lex_state = 236, .external_lex_state = 4}, + [1962] = {.lex_state = 432}, + [1963] = {.lex_state = 0}, + [1964] = {.lex_state = 426, .external_lex_state = 4}, + [1965] = {.lex_state = 413, .external_lex_state = 4}, + [1966] = {.lex_state = 413, .external_lex_state = 4}, + [1967] = {.lex_state = 370, .external_lex_state = 2}, + [1968] = {.lex_state = 370, .external_lex_state = 3}, + [1969] = {.lex_state = 432, .external_lex_state = 4}, + [1970] = {.lex_state = 236, .external_lex_state = 4}, + [1971] = {.lex_state = 432, .external_lex_state = 4}, + [1972] = {.lex_state = 370, .external_lex_state = 2}, + [1973] = {.lex_state = 266, .external_lex_state = 2}, + [1974] = {.lex_state = 413, .external_lex_state = 4}, + [1975] = {.lex_state = 413, .external_lex_state = 4}, + [1976] = {.lex_state = 432, .external_lex_state = 4}, + [1977] = {.lex_state = 432, .external_lex_state = 4}, + [1978] = {.lex_state = 370, .external_lex_state = 2}, + [1979] = {.lex_state = 432, .external_lex_state = 4}, }; enum { @@ -9206,63 +9317,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), }, [9] = { - [sym_expression_list] = STATE(93), - [sym__expression] = STATE(94), - [sym__primary_expression] = STATE(95), - [sym_not_operator] = STATE(40), - [sym_boolean_operator] = STATE(40), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_comparison_operator] = STATE(40), - [sym_lambda] = STATE(40), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_conditional_expression] = STATE(40), - [sym_concatenated_string] = STATE(76), - [sym_await] = STATE(40), + [sym_expression_list] = STATE(98), + [sym__expression] = STATE(99), + [sym__primary_expression] = STATE(100), + [sym_not_operator] = STATE(101), + [sym_boolean_operator] = STATE(101), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_comparison_operator] = STATE(101), + [sym_lambda] = STATE(101), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_conditional_expression] = STATE(101), + [sym_concatenated_string] = STATE(94), + [sym_await] = STATE(101), [sym__newline] = ACTIONS(146), [anon_sym_from] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_lambda] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_not] = ACTIONS(154), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_lambda] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [anon_sym_await] = ACTIONS(172), [sym_comment] = ACTIONS(76), [sym__semicolon] = ACTIONS(146), }, [10] = { - [aux_sym__simple_statements_repeat1] = STATE(98), - [sym__newline] = ACTIONS(160), + [aux_sym__simple_statements_repeat1] = STATE(104), + [sym__newline] = ACTIONS(174), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(162), + [sym__semicolon] = ACTIONS(176), }, [11] = { - [sym__expression] = STATE(104), - [sym__primary_expression] = STATE(105), + [sym__expression] = STATE(110), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -9287,27 +9398,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, [12] = { - [sym_variables] = STATE(108), - [sym__primary_expression] = STATE(109), + [sym_variables] = STATE(114), + [sym__primary_expression] = STATE(115), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -9326,13 +9437,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(176), + [sym_string] = ACTIONS(190), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -9342,8 +9453,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), }, [13] = { - [sym__expression] = STATE(110), - [sym__primary_expression] = STATE(105), + [sym__expression] = STATE(116), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -9368,32 +9479,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, [14] = { - [anon_sym_COLON] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(192), [sym_comment] = ACTIONS(76), }, [15] = { - [sym_with_item] = STATE(117), - [sym__expression] = STATE(118), - [sym__primary_expression] = STATE(119), + [sym_with_item] = STATE(123), + [sym__expression] = STATE(124), + [sym__primary_expression] = STATE(125), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -9418,39 +9529,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_lambda] = ACTIONS(184), + [anon_sym_not] = ACTIONS(194), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_lambda] = ACTIONS(198), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(188), + [anon_sym_await] = ACTIONS(202), [sym_comment] = ACTIONS(76), }, [16] = { - [sym__function_definition] = STATE(120), - [anon_sym_def] = ACTIONS(190), + [sym__function_definition] = STATE(126), + [anon_sym_def] = ACTIONS(204), [sym_comment] = ACTIONS(76), }, [17] = { - [sym_identifier] = ACTIONS(192), + [sym_identifier] = ACTIONS(206), [sym_comment] = ACTIONS(76), }, [18] = { - [sym_identifier] = ACTIONS(194), + [sym_identifier] = ACTIONS(208), [sym_comment] = ACTIONS(76), }, [19] = { - [sym_identifier] = ACTIONS(196), + [sym_identifier] = ACTIONS(210), [sym_comment] = ACTIONS(76), }, [20] = { @@ -9497,21 +9608,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(114), [anon_sym_PIPE_EQ] = ACTIONS(114), [anon_sym_LBRACK] = ACTIONS(114), - [sym_string] = ACTIONS(198), + [sym_string] = ACTIONS(212), [sym_comment] = ACTIONS(76), [sym__semicolon] = ACTIONS(114), }, [21] = { - [sym_identifier] = ACTIONS(200), + [sym_identifier] = ACTIONS(214), [sym_comment] = ACTIONS(76), }, [22] = { - [sym_dotted_name] = STATE(127), - [sym_identifier] = ACTIONS(202), + [sym_dotted_name] = STATE(133), + [sym_identifier] = ACTIONS(216), [sym_comment] = ACTIONS(76), }, [23] = { - [sym__expression] = STATE(129), + [sym__expression] = STATE(135), [sym__primary_expression] = STATE(39), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -9535,8 +9646,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), @@ -9556,7 +9667,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), }, [24] = { - [sym__primary_expression] = STATE(130), + [sym__primary_expression] = STATE(136), [sym_binary_operator] = STATE(28), [sym_unary_operator] = STATE(28), [sym_attribute] = STATE(28), @@ -9573,8 +9684,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_generator_expression] = STATE(28), [sym_concatenated_string] = STATE(28), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), [anon_sym_TILDE] = ACTIONS(56), @@ -9591,24 +9702,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), }, [25] = { - [sym_lambda_parameters] = STATE(136), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(212), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [sym_lambda_parameters] = STATE(142), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(226), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, [26] = { - [sym_expression_list] = STATE(141), + [sym_expression_list] = STATE(147), [sym__expression] = STATE(85), [sym__primary_expression] = STATE(82), [sym_not_operator] = STATE(40), @@ -9632,8 +9743,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(76), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(216), - [anon_sym_from] = ACTIONS(218), + [sym__newline] = ACTIONS(230), + [anon_sym_from] = ACTIONS(232), [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), @@ -9654,12 +9765,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [anon_sym_await] = ACTIONS(136), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(216), + [sym__semicolon] = ACTIONS(230), }, [27] = { - [sym_list_splat] = STATE(150), - [sym__expression] = STATE(151), - [sym__primary_expression] = STATE(152), + [sym_list_splat] = STATE(156), + [sym__expression] = STATE(157), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -9682,81 +9793,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_COMMA] = ACTIONS(220), - [anon_sym_STAR] = ACTIONS(222), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_STAR] = ACTIONS(236), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lambda] = ACTIONS(228), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(242), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(230), + [anon_sym_RBRACK] = ACTIONS(244), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(234), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, [28] = { - [sym__newline] = ACTIONS(236), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_if] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_EQ] = ACTIONS(238), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_SLASH_SLASH] = ACTIONS(238), - [anon_sym_STAR_STAR] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(238), - [anon_sym_AMP] = ACTIONS(238), - [anon_sym_CARET] = ACTIONS(238), - [anon_sym_LT_LT] = ACTIONS(238), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_PLUS_EQ] = ACTIONS(236), - [anon_sym_DASH_EQ] = ACTIONS(236), - [anon_sym_STAR_EQ] = ACTIONS(236), - [anon_sym_SLASH_EQ] = ACTIONS(236), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(236), - [anon_sym_PERCENT_EQ] = ACTIONS(236), - [anon_sym_STAR_STAR_EQ] = ACTIONS(236), - [anon_sym_GT_GT_EQ] = ACTIONS(236), - [anon_sym_LT_LT_EQ] = ACTIONS(236), - [anon_sym_AMP_EQ] = ACTIONS(236), - [anon_sym_CARET_EQ] = ACTIONS(236), - [anon_sym_PIPE_EQ] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(236), + [sym__newline] = ACTIONS(250), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(252), + [anon_sym_if] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(252), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(252), + [anon_sym_DASH] = ACTIONS(252), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(252), + [anon_sym_SLASH_SLASH] = ACTIONS(252), + [anon_sym_STAR_STAR] = ACTIONS(252), + [anon_sym_PIPE] = ACTIONS(252), + [anon_sym_AMP] = ACTIONS(252), + [anon_sym_CARET] = ACTIONS(252), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_PLUS_EQ] = ACTIONS(250), + [anon_sym_DASH_EQ] = ACTIONS(250), + [anon_sym_STAR_EQ] = ACTIONS(250), + [anon_sym_SLASH_EQ] = ACTIONS(250), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(250), + [anon_sym_PERCENT_EQ] = ACTIONS(250), + [anon_sym_STAR_STAR_EQ] = ACTIONS(250), + [anon_sym_GT_GT_EQ] = ACTIONS(250), + [anon_sym_LT_LT_EQ] = ACTIONS(250), + [anon_sym_AMP_EQ] = ACTIONS(250), + [anon_sym_CARET_EQ] = ACTIONS(250), + [anon_sym_PIPE_EQ] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(250), }, [29] = { - [sym_list_splat] = STATE(161), - [sym_dictionary_splat] = STATE(162), - [sym__expression] = STATE(163), - [sym__primary_expression] = STATE(164), + [sym_list_splat] = STATE(167), + [sym_dictionary_splat] = STATE(168), + [sym__expression] = STATE(169), + [sym__primary_expression] = STATE(170), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -9770,7 +9881,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), [sym_dictionary_comprehension] = STATE(61), - [sym_pair] = STATE(165), + [sym_pair] = STATE(171), [sym_set] = STATE(61), [sym_set_comprehension] = STATE(61), [sym_parenthesized_expression] = STATE(61), @@ -9780,80 +9891,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_COMMA] = ACTIONS(240), - [anon_sym_STAR] = ACTIONS(242), + [anon_sym_COMMA] = ACTIONS(254), + [anon_sym_STAR] = ACTIONS(256), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_lambda] = ACTIONS(248), + [anon_sym_not] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(250), - [sym_string] = ACTIONS(252), + [anon_sym_RBRACE] = ACTIONS(264), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(254), + [anon_sym_await] = ACTIONS(268), [sym_comment] = ACTIONS(76), }, [30] = { - [aux_sym_concatenated_string_repeat1] = STATE(167), - [sym__newline] = ACTIONS(236), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_if] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_EQ] = ACTIONS(238), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_SLASH_SLASH] = ACTIONS(238), - [anon_sym_STAR_STAR] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(238), - [anon_sym_AMP] = ACTIONS(238), - [anon_sym_CARET] = ACTIONS(238), - [anon_sym_LT_LT] = ACTIONS(238), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_PLUS_EQ] = ACTIONS(236), - [anon_sym_DASH_EQ] = ACTIONS(236), - [anon_sym_STAR_EQ] = ACTIONS(236), - [anon_sym_SLASH_EQ] = ACTIONS(236), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(236), - [anon_sym_PERCENT_EQ] = ACTIONS(236), - [anon_sym_STAR_STAR_EQ] = ACTIONS(236), - [anon_sym_GT_GT_EQ] = ACTIONS(236), - [anon_sym_LT_LT_EQ] = ACTIONS(236), - [anon_sym_AMP_EQ] = ACTIONS(236), - [anon_sym_CARET_EQ] = ACTIONS(236), - [anon_sym_PIPE_EQ] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(256), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(236), + [aux_sym_concatenated_string_repeat1] = STATE(173), + [sym__newline] = ACTIONS(250), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(252), + [anon_sym_if] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(252), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(252), + [anon_sym_DASH] = ACTIONS(252), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(252), + [anon_sym_SLASH_SLASH] = ACTIONS(252), + [anon_sym_STAR_STAR] = ACTIONS(252), + [anon_sym_PIPE] = ACTIONS(252), + [anon_sym_AMP] = ACTIONS(252), + [anon_sym_CARET] = ACTIONS(252), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_PLUS_EQ] = ACTIONS(250), + [anon_sym_DASH_EQ] = ACTIONS(250), + [anon_sym_STAR_EQ] = ACTIONS(250), + [anon_sym_SLASH_EQ] = ACTIONS(250), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(250), + [anon_sym_PERCENT_EQ] = ACTIONS(250), + [anon_sym_STAR_STAR_EQ] = ACTIONS(250), + [anon_sym_GT_GT_EQ] = ACTIONS(250), + [anon_sym_LT_LT_EQ] = ACTIONS(250), + [anon_sym_AMP_EQ] = ACTIONS(250), + [anon_sym_CARET_EQ] = ACTIONS(250), + [anon_sym_PIPE_EQ] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(270), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(250), }, [31] = { - [sym__expression] = STATE(168), + [sym__expression] = STATE(174), [sym__primary_expression] = STATE(39), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -9877,8 +9988,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), @@ -9898,221 +10009,150 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), }, [32] = { - [ts_builtin_sym_end] = ACTIONS(258), + [ts_builtin_sym_end] = ACTIONS(272), [sym_comment] = ACTIONS(76), }, [33] = { - [ts_builtin_sym_end] = ACTIONS(260), - [anon_sym_import] = ACTIONS(262), - [anon_sym_from] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_assert] = ACTIONS(262), - [anon_sym_return] = ACTIONS(262), - [anon_sym_del] = ACTIONS(262), - [anon_sym_raise] = ACTIONS(262), - [sym_pass_statement] = ACTIONS(262), - [sym_break_statement] = ACTIONS(262), - [sym_continue_statement] = ACTIONS(262), - [anon_sym_if] = ACTIONS(262), - [anon_sym_for] = ACTIONS(262), - [anon_sym_while] = ACTIONS(262), - [anon_sym_try] = ACTIONS(262), - [anon_sym_with] = ACTIONS(262), - [anon_sym_async] = ACTIONS(262), - [anon_sym_def] = ACTIONS(262), - [anon_sym_global] = ACTIONS(262), - [anon_sym_nonlocal] = ACTIONS(262), - [anon_sym_exec] = ACTIONS(262), - [anon_sym_class] = ACTIONS(262), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_not] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_lambda] = ACTIONS(262), - [anon_sym_yield] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(260), - [sym_string] = ACTIONS(262), - [sym_integer] = ACTIONS(262), - [sym_float] = ACTIONS(262), - [sym_identifier] = ACTIONS(264), - [sym_true] = ACTIONS(262), - [sym_false] = ACTIONS(262), - [sym_none] = ACTIONS(262), - [anon_sym_await] = ACTIONS(262), + [ts_builtin_sym_end] = ACTIONS(274), + [anon_sym_import] = ACTIONS(276), + [anon_sym_from] = ACTIONS(276), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_print] = ACTIONS(276), + [anon_sym_assert] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_del] = ACTIONS(276), + [anon_sym_raise] = ACTIONS(276), + [sym_pass_statement] = ACTIONS(276), + [sym_break_statement] = ACTIONS(276), + [sym_continue_statement] = ACTIONS(276), + [anon_sym_if] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_with] = ACTIONS(276), + [anon_sym_async] = ACTIONS(276), + [anon_sym_def] = ACTIONS(276), + [anon_sym_global] = ACTIONS(276), + [anon_sym_nonlocal] = ACTIONS(276), + [anon_sym_exec] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(274), + [anon_sym_not] = ACTIONS(276), + [anon_sym_PLUS] = ACTIONS(274), + [anon_sym_DASH] = ACTIONS(274), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(276), + [anon_sym_yield] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(274), + [sym_ellipsis] = ACTIONS(274), + [anon_sym_LBRACE] = ACTIONS(274), + [sym_string] = ACTIONS(276), + [sym_integer] = ACTIONS(276), + [sym_float] = ACTIONS(276), + [sym_identifier] = ACTIONS(278), + [sym_true] = ACTIONS(276), + [sym_false] = ACTIONS(276), + [sym_none] = ACTIONS(276), + [anon_sym_await] = ACTIONS(276), [sym_comment] = ACTIONS(76), }, [34] = { - [ts_builtin_sym_end] = ACTIONS(266), - [anon_sym_import] = ACTIONS(268), - [anon_sym_from] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(266), - [anon_sym_print] = ACTIONS(268), - [anon_sym_assert] = ACTIONS(268), - [anon_sym_return] = ACTIONS(268), - [anon_sym_del] = ACTIONS(268), - [anon_sym_raise] = ACTIONS(268), - [sym_pass_statement] = ACTIONS(268), - [sym_break_statement] = ACTIONS(268), - [sym_continue_statement] = ACTIONS(268), - [anon_sym_if] = ACTIONS(268), - [anon_sym_for] = ACTIONS(268), - [anon_sym_while] = ACTIONS(268), - [anon_sym_try] = ACTIONS(268), - [anon_sym_with] = ACTIONS(268), - [anon_sym_async] = ACTIONS(268), - [anon_sym_def] = ACTIONS(268), - [anon_sym_global] = ACTIONS(268), - [anon_sym_nonlocal] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(268), - [anon_sym_class] = ACTIONS(268), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_not] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_DASH] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(266), - [anon_sym_lambda] = ACTIONS(268), - [anon_sym_yield] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(266), - [sym_ellipsis] = ACTIONS(266), - [anon_sym_LBRACE] = ACTIONS(266), - [sym_string] = ACTIONS(268), - [sym_integer] = ACTIONS(268), - [sym_float] = ACTIONS(268), - [sym_identifier] = ACTIONS(270), - [sym_true] = ACTIONS(268), - [sym_false] = ACTIONS(268), - [sym_none] = ACTIONS(268), - [anon_sym_await] = ACTIONS(268), + [ts_builtin_sym_end] = ACTIONS(280), + [anon_sym_import] = ACTIONS(282), + [anon_sym_from] = ACTIONS(282), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_print] = ACTIONS(282), + [anon_sym_assert] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_del] = ACTIONS(282), + [anon_sym_raise] = ACTIONS(282), + [sym_pass_statement] = ACTIONS(282), + [sym_break_statement] = ACTIONS(282), + [sym_continue_statement] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_for] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [anon_sym_try] = ACTIONS(282), + [anon_sym_with] = ACTIONS(282), + [anon_sym_async] = ACTIONS(282), + [anon_sym_def] = ACTIONS(282), + [anon_sym_global] = ACTIONS(282), + [anon_sym_nonlocal] = ACTIONS(282), + [anon_sym_exec] = ACTIONS(282), + [anon_sym_class] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(280), + [anon_sym_not] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(280), + [anon_sym_DASH] = ACTIONS(280), + [anon_sym_TILDE] = ACTIONS(280), + [anon_sym_lambda] = ACTIONS(282), + [anon_sym_yield] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(280), + [sym_ellipsis] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(280), + [sym_string] = ACTIONS(282), + [sym_integer] = ACTIONS(282), + [sym_float] = ACTIONS(282), + [sym_identifier] = ACTIONS(284), + [sym_true] = ACTIONS(282), + [sym_false] = ACTIONS(282), + [sym_none] = ACTIONS(282), + [anon_sym_await] = ACTIONS(282), [sym_comment] = ACTIONS(76), }, [35] = { - [ts_builtin_sym_end] = ACTIONS(272), - [anon_sym_import] = ACTIONS(274), - [anon_sym_from] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_print] = ACTIONS(274), - [anon_sym_assert] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_del] = ACTIONS(274), - [anon_sym_raise] = ACTIONS(274), - [sym_pass_statement] = ACTIONS(274), - [sym_break_statement] = ACTIONS(274), - [sym_continue_statement] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_for] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [anon_sym_try] = ACTIONS(274), - [anon_sym_with] = ACTIONS(274), - [anon_sym_async] = ACTIONS(274), - [anon_sym_def] = ACTIONS(274), - [anon_sym_global] = ACTIONS(274), - [anon_sym_nonlocal] = ACTIONS(274), - [anon_sym_exec] = ACTIONS(274), - [anon_sym_class] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(272), - [anon_sym_not] = ACTIONS(274), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_TILDE] = ACTIONS(272), - [anon_sym_lambda] = ACTIONS(274), - [anon_sym_yield] = ACTIONS(274), - [anon_sym_LBRACK] = ACTIONS(272), - [sym_ellipsis] = ACTIONS(272), - [anon_sym_LBRACE] = ACTIONS(272), - [sym_string] = ACTIONS(274), - [sym_integer] = ACTIONS(274), - [sym_float] = ACTIONS(274), - [sym_identifier] = ACTIONS(276), - [sym_true] = ACTIONS(274), - [sym_false] = ACTIONS(274), - [sym_none] = ACTIONS(274), - [anon_sym_await] = ACTIONS(274), + [ts_builtin_sym_end] = ACTIONS(286), + [anon_sym_import] = ACTIONS(288), + [anon_sym_from] = ACTIONS(288), + [anon_sym_LPAREN] = ACTIONS(286), + [anon_sym_print] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(288), + [anon_sym_return] = ACTIONS(288), + [anon_sym_del] = ACTIONS(288), + [anon_sym_raise] = ACTIONS(288), + [sym_pass_statement] = ACTIONS(288), + [sym_break_statement] = ACTIONS(288), + [sym_continue_statement] = ACTIONS(288), + [anon_sym_if] = ACTIONS(288), + [anon_sym_for] = ACTIONS(288), + [anon_sym_while] = ACTIONS(288), + [anon_sym_try] = ACTIONS(288), + [anon_sym_with] = ACTIONS(288), + [anon_sym_async] = ACTIONS(288), + [anon_sym_def] = ACTIONS(288), + [anon_sym_global] = ACTIONS(288), + [anon_sym_nonlocal] = ACTIONS(288), + [anon_sym_exec] = ACTIONS(288), + [anon_sym_class] = ACTIONS(288), + [anon_sym_AT] = ACTIONS(286), + [anon_sym_not] = ACTIONS(288), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_lambda] = ACTIONS(288), + [anon_sym_yield] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(286), + [sym_ellipsis] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(286), + [sym_string] = ACTIONS(288), + [sym_integer] = ACTIONS(288), + [sym_float] = ACTIONS(288), + [sym_identifier] = ACTIONS(290), + [sym_true] = ACTIONS(288), + [sym_false] = ACTIONS(288), + [sym_none] = ACTIONS(288), + [anon_sym_await] = ACTIONS(288), [sym_comment] = ACTIONS(76), }, [36] = { - [anon_sym_async] = ACTIONS(278), - [anon_sym_def] = ACTIONS(278), - [anon_sym_class] = ACTIONS(278), - [anon_sym_AT] = ACTIONS(278), + [anon_sym_async] = ACTIONS(292), + [anon_sym_def] = ACTIONS(292), + [anon_sym_class] = ACTIONS(292), + [anon_sym_AT] = ACTIONS(292), [sym_comment] = ACTIONS(76), }, [37] = { - [anon_sym_EQ] = ACTIONS(280), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_STAR_STAR_EQ] = ACTIONS(282), - [anon_sym_GT_GT_EQ] = ACTIONS(282), - [anon_sym_LT_LT_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [sym_comment] = ACTIONS(76), - }, - [38] = { - [aux_sym_print_statement_repeat1] = STATE(175), - [sym__newline] = ACTIONS(284), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_if] = ACTIONS(288), - [anon_sym_EQ] = ACTIONS(290), - [anon_sym_and] = ACTIONS(292), - [anon_sym_or] = ACTIONS(294), - [anon_sym_PLUS_EQ] = ACTIONS(290), - [anon_sym_DASH_EQ] = ACTIONS(290), - [anon_sym_STAR_EQ] = ACTIONS(290), - [anon_sym_SLASH_EQ] = ACTIONS(290), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(290), - [anon_sym_PERCENT_EQ] = ACTIONS(290), - [anon_sym_STAR_STAR_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(290), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(284), - }, - [39] = { - [sym_argument_list] = STATE(189), - [sym_generator_expression] = STATE(189), - [aux_sym_comparison_operator_repeat1] = STATE(190), - [sym__newline] = ACTIONS(296), - [anon_sym_DOT] = ACTIONS(298), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(304), - [anon_sym_if] = ACTIONS(296), - [anon_sym_in] = ACTIONS(306), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_not] = ACTIONS(310), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(302), - [anon_sym_PERCENT] = ACTIONS(302), - [anon_sym_SLASH_SLASH] = ACTIONS(302), - [anon_sym_STAR_STAR] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(316), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(304), - [anon_sym_LT] = ACTIONS(322), - [anon_sym_LT_EQ] = ACTIONS(306), - [anon_sym_EQ_EQ] = ACTIONS(306), - [anon_sym_BANG_EQ] = ACTIONS(306), - [anon_sym_GT_EQ] = ACTIONS(306), - [anon_sym_GT] = ACTIONS(322), - [anon_sym_LT_GT] = ACTIONS(306), - [anon_sym_is] = ACTIONS(324), + [anon_sym_EQ] = ACTIONS(294), [anon_sym_PLUS_EQ] = ACTIONS(296), [anon_sym_DASH_EQ] = ACTIONS(296), [anon_sym_STAR_EQ] = ACTIONS(296), @@ -10125,37 +10165,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(296), [anon_sym_CARET_EQ] = ACTIONS(296), [anon_sym_PIPE_EQ] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(326), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(296), + }, + [38] = { + [aux_sym_print_statement_repeat1] = STATE(181), + [sym__newline] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_if] = ACTIONS(302), + [anon_sym_EQ] = ACTIONS(304), + [anon_sym_and] = ACTIONS(306), + [anon_sym_or] = ACTIONS(308), + [anon_sym_PLUS_EQ] = ACTIONS(304), + [anon_sym_DASH_EQ] = ACTIONS(304), + [anon_sym_STAR_EQ] = ACTIONS(304), + [anon_sym_SLASH_EQ] = ACTIONS(304), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(304), + [anon_sym_PERCENT_EQ] = ACTIONS(304), + [anon_sym_STAR_STAR_EQ] = ACTIONS(304), + [anon_sym_GT_GT_EQ] = ACTIONS(304), + [anon_sym_LT_LT_EQ] = ACTIONS(304), + [anon_sym_AMP_EQ] = ACTIONS(304), + [anon_sym_CARET_EQ] = ACTIONS(304), + [anon_sym_PIPE_EQ] = ACTIONS(304), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(298), + }, + [39] = { + [sym_argument_list] = STATE(195), + [sym_generator_expression] = STATE(195), + [aux_sym_comparison_operator_repeat1] = STATE(196), + [sym__newline] = ACTIONS(310), + [anon_sym_DOT] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_if] = ACTIONS(310), + [anon_sym_in] = ACTIONS(320), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_not] = ACTIONS(324), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_SLASH_SLASH] = ACTIONS(316), + [anon_sym_STAR_STAR] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_AMP] = ACTIONS(332), + [anon_sym_CARET] = ACTIONS(334), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(336), + [anon_sym_LT_GT] = ACTIONS(320), + [anon_sym_is] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(310), + [anon_sym_DASH_EQ] = ACTIONS(310), + [anon_sym_STAR_EQ] = ACTIONS(310), + [anon_sym_SLASH_EQ] = ACTIONS(310), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(310), + [anon_sym_PERCENT_EQ] = ACTIONS(310), + [anon_sym_STAR_STAR_EQ] = ACTIONS(310), + [anon_sym_GT_GT_EQ] = ACTIONS(310), + [anon_sym_LT_LT_EQ] = ACTIONS(310), + [anon_sym_AMP_EQ] = ACTIONS(310), + [anon_sym_CARET_EQ] = ACTIONS(310), + [anon_sym_PIPE_EQ] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(340), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(310), }, [40] = { - [sym__newline] = ACTIONS(296), - [anon_sym_from] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_if] = ACTIONS(296), - [anon_sym_EQ] = ACTIONS(296), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(296), - [anon_sym_DASH_EQ] = ACTIONS(296), - [anon_sym_STAR_EQ] = ACTIONS(296), - [anon_sym_SLASH_EQ] = ACTIONS(296), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(296), - [anon_sym_PERCENT_EQ] = ACTIONS(296), - [anon_sym_STAR_STAR_EQ] = ACTIONS(296), - [anon_sym_GT_GT_EQ] = ACTIONS(296), - [anon_sym_LT_LT_EQ] = ACTIONS(296), - [anon_sym_AMP_EQ] = ACTIONS(296), - [anon_sym_CARET_EQ] = ACTIONS(296), - [anon_sym_PIPE_EQ] = ACTIONS(296), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(296), + [sym__newline] = ACTIONS(310), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_if] = ACTIONS(310), + [anon_sym_EQ] = ACTIONS(310), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS_EQ] = ACTIONS(310), + [anon_sym_DASH_EQ] = ACTIONS(310), + [anon_sym_STAR_EQ] = ACTIONS(310), + [anon_sym_SLASH_EQ] = ACTIONS(310), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(310), + [anon_sym_PERCENT_EQ] = ACTIONS(310), + [anon_sym_STAR_STAR_EQ] = ACTIONS(310), + [anon_sym_GT_GT_EQ] = ACTIONS(310), + [anon_sym_LT_LT_EQ] = ACTIONS(310), + [anon_sym_AMP_EQ] = ACTIONS(310), + [anon_sym_CARET_EQ] = ACTIONS(310), + [anon_sym_PIPE_EQ] = ACTIONS(310), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(310), }, [41] = { - [sym__newline] = ACTIONS(284), + [sym__newline] = ACTIONS(298), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(284), + [sym__semicolon] = ACTIONS(298), }, [42] = { [sym__statement] = STATE(33), @@ -10209,9 +10319,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(191), + [aux_sym_module_repeat1] = STATE(197), [aux_sym_decorated_definition_repeat1] = STATE(43), - [ts_builtin_sym_end] = ACTIONS(328), + [ts_builtin_sym_end] = ACTIONS(342), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -10255,73 +10365,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), }, [43] = { - [sym_async_function_definition] = STATE(192), - [sym_function_definition] = STATE(192), + [sym_async_function_definition] = STATE(198), + [sym_function_definition] = STATE(198), [sym__function_definition] = STATE(35), - [sym_class_definition] = STATE(192), + [sym_class_definition] = STATE(198), [sym_decorator] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(193), - [anon_sym_async] = ACTIONS(330), - [anon_sym_def] = ACTIONS(190), - [anon_sym_class] = ACTIONS(332), + [aux_sym_decorated_definition_repeat1] = STATE(199), + [anon_sym_async] = ACTIONS(344), + [anon_sym_def] = ACTIONS(204), + [anon_sym_class] = ACTIONS(346), [anon_sym_AT] = ACTIONS(52), [sym_comment] = ACTIONS(76), }, [44] = { - [aux_sym_dotted_name_repeat1] = STATE(195), - [sym__newline] = ACTIONS(334), - [anon_sym_DOT] = ACTIONS(336), - [anon_sym_COMMA] = ACTIONS(334), - [anon_sym_as] = ACTIONS(334), + [aux_sym_dotted_name_repeat1] = STATE(201), + [sym__newline] = ACTIONS(348), + [anon_sym_DOT] = ACTIONS(350), + [anon_sym_COMMA] = ACTIONS(348), + [anon_sym_as] = ACTIONS(348), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(334), + [sym__semicolon] = ACTIONS(348), }, [45] = { - [sym__newline] = ACTIONS(338), + [sym__newline] = ACTIONS(352), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(338), + [sym__semicolon] = ACTIONS(352), }, [46] = { - [aux_sym__import_list_repeat1] = STATE(197), - [sym__newline] = ACTIONS(340), - [anon_sym_COMMA] = ACTIONS(342), + [aux_sym__import_list_repeat1] = STATE(203), + [sym__newline] = ACTIONS(354), + [anon_sym_COMMA] = ACTIONS(356), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(340), + [sym__semicolon] = ACTIONS(354), }, [47] = { - [aux_sym__import_list_repeat1] = STATE(197), - [sym__newline] = ACTIONS(340), - [anon_sym_COMMA] = ACTIONS(342), - [anon_sym_as] = ACTIONS(344), + [aux_sym__import_list_repeat1] = STATE(203), + [sym__newline] = ACTIONS(354), + [anon_sym_COMMA] = ACTIONS(356), + [anon_sym_as] = ACTIONS(358), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(340), + [sym__semicolon] = ACTIONS(354), }, [48] = { - [anon_sym_import] = ACTIONS(346), - [anon_sym_DOT] = ACTIONS(348), - [sym_identifier] = ACTIONS(350), + [anon_sym_import] = ACTIONS(360), + [anon_sym_DOT] = ACTIONS(362), + [sym_identifier] = ACTIONS(364), [sym_comment] = ACTIONS(76), }, [49] = { - [aux_sym_dotted_name_repeat1] = STATE(200), - [anon_sym_import] = ACTIONS(334), - [anon_sym_DOT] = ACTIONS(352), + [aux_sym_dotted_name_repeat1] = STATE(206), + [anon_sym_import] = ACTIONS(348), + [anon_sym_DOT] = ACTIONS(366), [sym_comment] = ACTIONS(76), }, [50] = { - [anon_sym_import] = ACTIONS(354), + [anon_sym_import] = ACTIONS(368), [sym_comment] = ACTIONS(76), }, [51] = { - [sym_dotted_name] = STATE(202), - [aux_sym_import_from_statement_repeat1] = STATE(203), - [anon_sym_import] = ACTIONS(356), + [sym_dotted_name] = STATE(208), + [aux_sym_import_from_statement_repeat1] = STATE(209), + [anon_sym_import] = ACTIONS(370), [anon_sym_DOT] = ACTIONS(80), - [sym_identifier] = ACTIONS(358), + [sym_identifier] = ACTIONS(372), [sym_comment] = ACTIONS(76), }, [52] = { - [sym__expression] = STATE(206), + [sym__expression] = STATE(212), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -10329,7 +10439,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_yield] = STATE(207), + [sym_yield] = STATE(213), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -10346,8 +10456,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(360), - [anon_sym_COMMA] = ACTIONS(362), + [anon_sym_RPAREN] = ACTIONS(374), + [anon_sym_COMMA] = ACTIONS(376), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), [anon_sym_not] = ACTIONS(92), @@ -10370,54 +10480,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), }, [53] = { - [sym__newline] = ACTIONS(364), - [anon_sym_DOT] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_COMMA] = ACTIONS(364), - [anon_sym_STAR] = ACTIONS(366), - [anon_sym_GT_GT] = ACTIONS(366), - [anon_sym_if] = ACTIONS(364), - [anon_sym_in] = ACTIONS(364), - [anon_sym_EQ] = ACTIONS(366), - [anon_sym_not] = ACTIONS(364), - [anon_sym_and] = ACTIONS(364), - [anon_sym_or] = ACTIONS(364), - [anon_sym_PLUS] = ACTIONS(366), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_SLASH] = ACTIONS(366), - [anon_sym_PERCENT] = ACTIONS(366), - [anon_sym_SLASH_SLASH] = ACTIONS(366), - [anon_sym_STAR_STAR] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_AMP] = ACTIONS(366), - [anon_sym_CARET] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_LT_EQ] = ACTIONS(364), - [anon_sym_EQ_EQ] = ACTIONS(364), - [anon_sym_BANG_EQ] = ACTIONS(364), - [anon_sym_GT_EQ] = ACTIONS(364), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT_GT] = ACTIONS(364), - [anon_sym_is] = ACTIONS(364), - [anon_sym_PLUS_EQ] = ACTIONS(364), - [anon_sym_DASH_EQ] = ACTIONS(364), - [anon_sym_STAR_EQ] = ACTIONS(364), - [anon_sym_SLASH_EQ] = ACTIONS(364), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(364), - [anon_sym_PERCENT_EQ] = ACTIONS(364), - [anon_sym_STAR_STAR_EQ] = ACTIONS(364), - [anon_sym_GT_GT_EQ] = ACTIONS(364), - [anon_sym_LT_LT_EQ] = ACTIONS(364), - [anon_sym_AMP_EQ] = ACTIONS(364), - [anon_sym_CARET_EQ] = ACTIONS(364), - [anon_sym_PIPE_EQ] = ACTIONS(364), - [anon_sym_LBRACK] = ACTIONS(364), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(364), + [sym__newline] = ACTIONS(378), + [anon_sym_DOT] = ACTIONS(378), + [anon_sym_LPAREN] = ACTIONS(378), + [anon_sym_COMMA] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_if] = ACTIONS(378), + [anon_sym_in] = ACTIONS(378), + [anon_sym_EQ] = ACTIONS(380), + [anon_sym_not] = ACTIONS(378), + [anon_sym_and] = ACTIONS(378), + [anon_sym_or] = ACTIONS(378), + [anon_sym_PLUS] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(380), + [anon_sym_SLASH] = ACTIONS(380), + [anon_sym_PERCENT] = ACTIONS(380), + [anon_sym_SLASH_SLASH] = ACTIONS(380), + [anon_sym_STAR_STAR] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(380), + [anon_sym_CARET] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(378), + [anon_sym_EQ_EQ] = ACTIONS(378), + [anon_sym_BANG_EQ] = ACTIONS(378), + [anon_sym_GT_EQ] = ACTIONS(378), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_LT_GT] = ACTIONS(378), + [anon_sym_is] = ACTIONS(378), + [anon_sym_PLUS_EQ] = ACTIONS(378), + [anon_sym_DASH_EQ] = ACTIONS(378), + [anon_sym_STAR_EQ] = ACTIONS(378), + [anon_sym_SLASH_EQ] = ACTIONS(378), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(378), + [anon_sym_PERCENT_EQ] = ACTIONS(378), + [anon_sym_STAR_STAR_EQ] = ACTIONS(378), + [anon_sym_GT_GT_EQ] = ACTIONS(378), + [anon_sym_LT_LT_EQ] = ACTIONS(378), + [anon_sym_AMP_EQ] = ACTIONS(378), + [anon_sym_CARET_EQ] = ACTIONS(378), + [anon_sym_PIPE_EQ] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(378), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(378), }, [54] = { - [anon_sym_RPAREN] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(76), }, [55] = { @@ -10461,7 +10571,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), }, [56] = { - [sym__expression] = STATE(209), + [sym__expression] = STATE(215), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -10506,7 +10616,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), }, [57] = { - [sym__primary_expression] = STATE(210), + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -10541,26 +10651,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), }, [58] = { - [sym_lambda_parameters] = STATE(212), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(370), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [sym_lambda_parameters] = STATE(218), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(384), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, [59] = { - [sym_expression_list] = STATE(219), - [sym__expression] = STATE(220), - [sym__primary_expression] = STATE(221), + [sym_expression_list] = STATE(225), + [sym__expression] = STATE(226), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -10582,34 +10692,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(67), [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), - [anon_sym_from] = ACTIONS(372), + [anon_sym_from] = ACTIONS(386), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_RPAREN] = ACTIONS(230), + [anon_sym_COMMA] = ACTIONS(230), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, [60] = { - [sym_list_splat] = STATE(224), - [sym__expression] = STATE(225), - [sym__primary_expression] = STATE(152), + [sym_list_splat] = STATE(230), + [sym__expression] = STATE(231), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -10632,74 +10742,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(222), + [anon_sym_COMMA] = ACTIONS(398), + [anon_sym_STAR] = ACTIONS(236), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lambda] = ACTIONS(228), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(242), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(386), + [anon_sym_RBRACK] = ACTIONS(400), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(234), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, [61] = { - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_RPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_as] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_COLON] = ACTIONS(236), - [anon_sym_else] = ACTIONS(236), - [anon_sym_for] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_EQ] = ACTIONS(238), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [anon_sym_RBRACK] = ACTIONS(236), - [anon_sym_RBRACE] = ACTIONS(236), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_RPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_as] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_COLON] = ACTIONS(250), + [anon_sym_else] = ACTIONS(250), + [anon_sym_for] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(252), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [anon_sym_RBRACK] = ACTIONS(250), + [anon_sym_RBRACE] = ACTIONS(250), [sym_comment] = ACTIONS(76), }, [62] = { - [sym_list_splat] = STATE(228), - [sym_dictionary_splat] = STATE(229), - [sym__expression] = STATE(230), - [sym__primary_expression] = STATE(164), + [sym_list_splat] = STATE(234), + [sym_dictionary_splat] = STATE(235), + [sym__expression] = STATE(236), + [sym__primary_expression] = STATE(170), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -10713,7 +10823,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), [sym_dictionary_comprehension] = STATE(61), - [sym_pair] = STATE(231), + [sym_pair] = STATE(237), [sym_set] = STATE(61), [sym_set_comprehension] = STATE(61), [sym_parenthesized_expression] = STATE(61), @@ -10723,67 +10833,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_COMMA] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(242), + [anon_sym_COMMA] = ACTIONS(402), + [anon_sym_STAR] = ACTIONS(256), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_lambda] = ACTIONS(248), + [anon_sym_not] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(390), - [sym_string] = ACTIONS(252), + [anon_sym_RBRACE] = ACTIONS(404), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(254), + [anon_sym_await] = ACTIONS(268), [sym_comment] = ACTIONS(76), }, [63] = { - [aux_sym_concatenated_string_repeat1] = STATE(233), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_RPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_for] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [aux_sym_concatenated_string_repeat1] = STATE(239), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_RPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_for] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, [64] = { - [sym__expression] = STATE(234), + [sym__expression] = STATE(240), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -10828,77 +10938,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), }, [65] = { - [sym__comprehension_body] = STATE(241), - [sym_for_in_clause] = STATE(242), - [aux_sym_tuple_repeat1] = STATE(243), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(396), - [anon_sym_if] = ACTIONS(398), - [anon_sym_for] = ACTIONS(400), - [anon_sym_and] = ACTIONS(402), - [anon_sym_or] = ACTIONS(404), + [sym__comprehension_body] = STATE(247), + [sym_for_in_clause] = STATE(248), + [aux_sym_tuple_repeat1] = STATE(249), + [anon_sym_RPAREN] = ACTIONS(408), + [anon_sym_COMMA] = ACTIONS(410), + [anon_sym_if] = ACTIONS(412), + [anon_sym_for] = ACTIONS(414), + [anon_sym_and] = ACTIONS(416), + [anon_sym_or] = ACTIONS(418), [sym_comment] = ACTIONS(76), }, [66] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(258), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_if] = ACTIONS(296), - [anon_sym_for] = ACTIONS(296), - [anon_sym_in] = ACTIONS(414), - [anon_sym_not] = ACTIONS(416), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_SLASH_SLASH] = ACTIONS(420), - [anon_sym_STAR_STAR] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(424), - [anon_sym_AMP] = ACTIONS(426), - [anon_sym_CARET] = ACTIONS(428), - [anon_sym_LT_LT] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(430), - [anon_sym_LT_EQ] = ACTIONS(414), - [anon_sym_EQ_EQ] = ACTIONS(414), - [anon_sym_BANG_EQ] = ACTIONS(414), - [anon_sym_GT_EQ] = ACTIONS(414), - [anon_sym_GT] = ACTIONS(430), - [anon_sym_LT_GT] = ACTIONS(414), - [anon_sym_is] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(264), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(310), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_GT_GT] = ACTIONS(426), + [anon_sym_if] = ACTIONS(310), + [anon_sym_for] = ACTIONS(310), + [anon_sym_in] = ACTIONS(428), + [anon_sym_not] = ACTIONS(430), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(424), + [anon_sym_PERCENT] = ACTIONS(434), + [anon_sym_SLASH_SLASH] = ACTIONS(434), + [anon_sym_STAR_STAR] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_AMP] = ACTIONS(440), + [anon_sym_CARET] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LT_EQ] = ACTIONS(428), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_BANG_EQ] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_LT_GT] = ACTIONS(428), + [anon_sym_is] = ACTIONS(446), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, [67] = { - [anon_sym_RPAREN] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_as] = ACTIONS(296), - [anon_sym_if] = ACTIONS(296), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_else] = ACTIONS(296), - [anon_sym_for] = ACTIONS(296), - [anon_sym_EQ] = ACTIONS(296), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_RBRACK] = ACTIONS(296), - [anon_sym_RBRACE] = ACTIONS(296), + [anon_sym_RPAREN] = ACTIONS(310), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_as] = ACTIONS(310), + [anon_sym_if] = ACTIONS(310), + [anon_sym_COLON] = ACTIONS(310), + [anon_sym_else] = ACTIONS(310), + [anon_sym_for] = ACTIONS(310), + [anon_sym_EQ] = ACTIONS(310), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_RBRACK] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(310), [sym_comment] = ACTIONS(76), }, [68] = { - [aux_sym_tuple_repeat1] = STATE(243), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(396), + [aux_sym_tuple_repeat1] = STATE(249), + [anon_sym_RPAREN] = ACTIONS(408), + [anon_sym_COMMA] = ACTIONS(410), [sym_comment] = ACTIONS(76), }, [69] = { - [sym__expression] = STATE(261), + [sym__expression] = STATE(267), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -10906,7 +11016,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_yield] = STATE(262), + [sym_yield] = STATE(268), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -10923,8 +11033,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(438), + [anon_sym_RPAREN] = ACTIONS(450), + [anon_sym_COMMA] = ACTIONS(452), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), [anon_sym_not] = ACTIONS(92), @@ -10948,7 +11058,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [70] = { [sym__newline] = ACTIONS(114), - [anon_sym_from] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(114), [anon_sym_COMMA] = ACTIONS(114), @@ -10982,7 +11091,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(114), }, [71] = { - [sym__expression] = STATE(263), + [sym__expression] = STATE(269), [sym__primary_expression] = STATE(82), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -11027,7 +11136,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), }, [72] = { - [sym__expression] = STATE(264), + [sym__expression] = STATE(270), [sym__primary_expression] = STATE(82), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -11072,7 +11181,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), }, [73] = { - [sym__primary_expression] = STATE(265), + [sym__primary_expression] = STATE(271), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -11107,26 +11216,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), }, [74] = { - [sym_lambda_parameters] = STATE(267), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(440), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [sym_lambda_parameters] = STATE(273), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(454), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, [75] = { - [sym_list_splat] = STATE(270), - [sym__expression] = STATE(271), - [sym__primary_expression] = STATE(152), + [sym_list_splat] = STATE(276), + [sym__expression] = STATE(277), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -11149,69 +11258,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_COMMA] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(222), + [anon_sym_COMMA] = ACTIONS(456), + [anon_sym_STAR] = ACTIONS(236), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lambda] = ACTIONS(228), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(242), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(444), + [anon_sym_RBRACK] = ACTIONS(458), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(234), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, [76] = { - [sym__newline] = ACTIONS(236), - [anon_sym_from] = ACTIONS(236), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(236), + [sym__newline] = ACTIONS(250), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(250), }, [77] = { - [sym_list_splat] = STATE(274), - [sym_dictionary_splat] = STATE(275), - [sym__expression] = STATE(276), - [sym__primary_expression] = STATE(164), + [sym_list_splat] = STATE(280), + [sym_dictionary_splat] = STATE(281), + [sym__expression] = STATE(282), + [sym__primary_expression] = STATE(170), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -11225,7 +11333,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), [sym_dictionary_comprehension] = STATE(61), - [sym_pair] = STATE(277), + [sym_pair] = STATE(283), [sym_set] = STATE(61), [sym_set_comprehension] = STATE(61), [sym_parenthesized_expression] = STATE(61), @@ -11235,67 +11343,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_COMMA] = ACTIONS(446), - [anon_sym_STAR] = ACTIONS(242), + [anon_sym_COMMA] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(256), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_lambda] = ACTIONS(248), + [anon_sym_not] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(448), - [sym_string] = ACTIONS(252), + [anon_sym_RBRACE] = ACTIONS(462), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(254), + [anon_sym_await] = ACTIONS(268), [sym_comment] = ACTIONS(76), }, [78] = { - [aux_sym_concatenated_string_repeat1] = STATE(279), - [sym__newline] = ACTIONS(236), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(450), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(236), + [aux_sym_concatenated_string_repeat1] = STATE(285), + [sym__newline] = ACTIONS(250), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(464), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(250), }, [79] = { - [sym__expression] = STATE(168), + [sym__expression] = STATE(174), [sym__primary_expression] = STATE(82), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -11340,92 +11448,92 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), }, [80] = { - [aux_sym_print_statement_repeat1] = STATE(281), - [sym__newline] = ACTIONS(452), - [anon_sym_COMMA] = ACTIONS(454), + [aux_sym_print_statement_repeat1] = STATE(287), + [sym__newline] = ACTIONS(466), + [anon_sym_COMMA] = ACTIONS(468), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(452), + [sym__semicolon] = ACTIONS(466), }, [81] = { - [aux_sym_print_statement_repeat1] = STATE(281), - [sym__newline] = ACTIONS(452), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_if] = ACTIONS(456), - [anon_sym_and] = ACTIONS(458), - [anon_sym_or] = ACTIONS(460), + [aux_sym_print_statement_repeat1] = STATE(287), + [sym__newline] = ACTIONS(466), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_if] = ACTIONS(470), + [anon_sym_and] = ACTIONS(472), + [anon_sym_or] = ACTIONS(474), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(452), + [sym__semicolon] = ACTIONS(466), }, [82] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [aux_sym_comparison_operator_repeat1] = STATE(299), - [sym__newline] = ACTIONS(296), - [anon_sym_DOT] = ACTIONS(462), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(468), - [anon_sym_if] = ACTIONS(296), - [anon_sym_in] = ACTIONS(470), - [anon_sym_not] = ACTIONS(472), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_SLASH_SLASH] = ACTIONS(476), - [anon_sym_STAR_STAR] = ACTIONS(478), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_AMP] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_LT_LT] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(470), - [anon_sym_EQ_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(470), - [anon_sym_GT] = ACTIONS(486), - [anon_sym_LT_GT] = ACTIONS(470), - [anon_sym_is] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(490), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(296), + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [aux_sym_comparison_operator_repeat1] = STATE(305), + [sym__newline] = ACTIONS(310), + [anon_sym_DOT] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_if] = ACTIONS(310), + [anon_sym_in] = ACTIONS(484), + [anon_sym_not] = ACTIONS(486), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), + [anon_sym_CARET] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_EQ_EQ] = ACTIONS(484), + [anon_sym_BANG_EQ] = ACTIONS(484), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT_GT] = ACTIONS(484), + [anon_sym_is] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(504), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(310), }, [83] = { - [aux_sym_print_statement_repeat1] = STATE(301), - [sym__newline] = ACTIONS(492), - [anon_sym_COMMA] = ACTIONS(494), - [anon_sym_if] = ACTIONS(456), - [anon_sym_and] = ACTIONS(458), - [anon_sym_or] = ACTIONS(460), + [aux_sym_print_statement_repeat1] = STATE(307), + [sym__newline] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_if] = ACTIONS(470), + [anon_sym_and] = ACTIONS(472), + [anon_sym_or] = ACTIONS(474), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(492), + [sym__semicolon] = ACTIONS(506), }, [84] = { - [sym__newline] = ACTIONS(496), + [sym__newline] = ACTIONS(510), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(496), + [sym__semicolon] = ACTIONS(510), }, [85] = { - [aux_sym_print_statement_repeat1] = STATE(303), - [sym__newline] = ACTIONS(290), - [anon_sym_COMMA] = ACTIONS(498), - [anon_sym_if] = ACTIONS(456), - [anon_sym_and] = ACTIONS(458), - [anon_sym_or] = ACTIONS(460), + [aux_sym_print_statement_repeat1] = STATE(309), + [sym__newline] = ACTIONS(304), + [anon_sym_COMMA] = ACTIONS(512), + [anon_sym_if] = ACTIONS(470), + [anon_sym_and] = ACTIONS(472), + [anon_sym_or] = ACTIONS(474), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(290), + [sym__semicolon] = ACTIONS(304), }, [86] = { - [sym__newline] = ACTIONS(500), + [sym__newline] = ACTIONS(514), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(500), + [sym__semicolon] = ACTIONS(514), }, [87] = { - [sym__expression] = STATE(309), - [sym__primary_expression] = STATE(310), + [sym__expression] = STATE(315), + [sym__primary_expression] = STATE(316), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), [sym_binary_operator] = STATE(76), @@ -11450,384 +11558,209 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(502), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_lambda] = ACTIONS(506), + [anon_sym_not] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_lambda] = ACTIONS(520), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), [sym_true] = ACTIONS(132), [sym_false] = ACTIONS(132), [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(510), + [anon_sym_await] = ACTIONS(524), [sym_comment] = ACTIONS(76), }, [88] = { - [sym__expression] = STATE(311), - [sym__primary_expression] = STATE(95), - [sym_not_operator] = STATE(40), - [sym_boolean_operator] = STATE(40), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_comparison_operator] = STATE(40), - [sym_lambda] = STATE(40), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_conditional_expression] = STATE(40), - [sym_concatenated_string] = STATE(76), - [sym_await] = STATE(40), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_lambda] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(158), + [sym__expression] = STATE(319), + [sym__primary_expression] = STATE(66), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_yield] = STATE(320), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_RPAREN] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(528), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(92), + [anon_sym_PLUS] = ACTIONS(94), + [anon_sym_DASH] = ACTIONS(94), + [anon_sym_TILDE] = ACTIONS(94), + [anon_sym_lambda] = ACTIONS(96), + [anon_sym_yield] = ACTIONS(98), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(106), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(112), [sym_comment] = ACTIONS(76), }, [89] = { - [sym__primary_expression] = STATE(265), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_concatenated_string] = STATE(76), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), + [sym__newline] = ACTIONS(114), + [anon_sym_from] = ACTIONS(114), + [anon_sym_DOT] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(114), + [anon_sym_COMMA] = ACTIONS(114), + [anon_sym_STAR] = ACTIONS(116), + [anon_sym_GT_GT] = ACTIONS(114), + [anon_sym_if] = ACTIONS(114), + [anon_sym_in] = ACTIONS(114), + [anon_sym_not] = ACTIONS(114), + [anon_sym_and] = ACTIONS(114), + [anon_sym_or] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(116), + [anon_sym_PERCENT] = ACTIONS(114), + [anon_sym_SLASH_SLASH] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(114), + [anon_sym_AMP] = ACTIONS(114), + [anon_sym_CARET] = ACTIONS(114), + [anon_sym_LT_LT] = ACTIONS(114), + [anon_sym_LT] = ACTIONS(116), + [anon_sym_LT_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_GT_EQ] = ACTIONS(114), + [anon_sym_GT] = ACTIONS(116), + [anon_sym_LT_GT] = ACTIONS(114), + [anon_sym_is] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(114), [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(114), }, [90] = { - [sym_lambda_parameters] = STATE(313), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [sym__expression] = STATE(321), + [sym__primary_expression] = STATE(100), + [sym_not_operator] = STATE(101), + [sym_boolean_operator] = STATE(101), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_comparison_operator] = STATE(101), + [sym_lambda] = STATE(101), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_conditional_expression] = STATE(101), + [sym_concatenated_string] = STATE(94), + [sym_await] = STATE(101), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_not] = ACTIONS(154), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_lambda] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [anon_sym_await] = ACTIONS(172), [sym_comment] = ACTIONS(76), }, [91] = { - [aux_sym_concatenated_string_repeat1] = STATE(314), - [sym__newline] = ACTIONS(236), - [anon_sym_from] = ACTIONS(236), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(450), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(236), + [sym__primary_expression] = STATE(322), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_concatenated_string] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [sym_comment] = ACTIONS(76), }, [92] = { - [sym__expression] = STATE(168), - [sym__primary_expression] = STATE(95), - [sym_not_operator] = STATE(40), - [sym_boolean_operator] = STATE(40), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_comparison_operator] = STATE(40), - [sym_lambda] = STATE(40), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_conditional_expression] = STATE(40), - [sym_concatenated_string] = STATE(76), - [sym_await] = STATE(40), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_lambda] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(158), + [sym_lambda_parameters] = STATE(324), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(530), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, [93] = { - [sym__newline] = ACTIONS(514), - [anon_sym_from] = ACTIONS(516), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(514), - }, - [94] = { - [aux_sym_print_statement_repeat1] = STATE(320), - [sym__newline] = ACTIONS(290), - [anon_sym_from] = ACTIONS(290), - [anon_sym_COMMA] = ACTIONS(518), - [anon_sym_if] = ACTIONS(520), - [anon_sym_and] = ACTIONS(522), - [anon_sym_or] = ACTIONS(524), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(290), - }, - [95] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [aux_sym_comparison_operator_repeat1] = STATE(331), - [sym__newline] = ACTIONS(296), - [anon_sym_from] = ACTIONS(296), - [anon_sym_DOT] = ACTIONS(462), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(526), - [anon_sym_GT_GT] = ACTIONS(528), - [anon_sym_if] = ACTIONS(296), - [anon_sym_in] = ACTIONS(530), - [anon_sym_not] = ACTIONS(532), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_SLASH_SLASH] = ACTIONS(536), - [anon_sym_STAR_STAR] = ACTIONS(538), - [anon_sym_PIPE] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_LT_EQ] = ACTIONS(530), - [anon_sym_EQ_EQ] = ACTIONS(530), - [anon_sym_BANG_EQ] = ACTIONS(530), - [anon_sym_GT_EQ] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(546), - [anon_sym_LT_GT] = ACTIONS(530), - [anon_sym_is] = ACTIONS(548), - [anon_sym_LBRACK] = ACTIONS(490), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(296), - }, - [96] = { - [ts_builtin_sym_end] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_from] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_print] = ACTIONS(552), - [anon_sym_assert] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_del] = ACTIONS(552), - [anon_sym_raise] = ACTIONS(552), - [sym_pass_statement] = ACTIONS(552), - [sym_break_statement] = ACTIONS(552), - [sym_continue_statement] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_try] = ACTIONS(552), - [anon_sym_with] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_def] = ACTIONS(552), - [anon_sym_global] = ACTIONS(552), - [anon_sym_nonlocal] = ACTIONS(552), - [anon_sym_exec] = ACTIONS(552), - [anon_sym_class] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(550), - [anon_sym_not] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_TILDE] = ACTIONS(550), - [anon_sym_lambda] = ACTIONS(552), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_LBRACK] = ACTIONS(550), - [sym_ellipsis] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(550), - [sym_string] = ACTIONS(552), - [sym_integer] = ACTIONS(552), - [sym_float] = ACTIONS(552), - [sym_identifier] = ACTIONS(554), - [sym_true] = ACTIONS(552), - [sym_false] = ACTIONS(552), - [sym_none] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [sym_comment] = ACTIONS(76), - }, - [97] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), - [sym_expression_list] = STATE(37), - [sym__expression] = STATE(38), - [sym__primary_expression] = STATE(39), - [sym_not_operator] = STATE(40), - [sym_boolean_operator] = STATE(40), - [sym_binary_operator] = STATE(28), - [sym_unary_operator] = STATE(28), - [sym_comparison_operator] = STATE(40), - [sym_lambda] = STATE(40), - [sym_assignment] = STATE(41), - [sym_augmented_assignment] = STATE(41), - [sym_yield] = STATE(41), - [sym_attribute] = STATE(28), - [sym_subscript] = STATE(28), - [sym_call] = STATE(28), - [sym_list] = STATE(28), - [sym_list_comprehension] = STATE(28), - [sym_dictionary] = STATE(28), - [sym_dictionary_comprehension] = STATE(28), - [sym_set] = STATE(28), - [sym_set_comprehension] = STATE(28), - [sym_parenthesized_expression] = STATE(28), - [sym_tuple] = STATE(28), - [sym_generator_expression] = STATE(28), - [sym_conditional_expression] = STATE(40), - [sym_concatenated_string] = STATE(28), - [sym_await] = STATE(40), - [sym__newline] = ACTIONS(556), - [anon_sym_import] = ACTIONS(12), - [anon_sym_from] = ACTIONS(14), - [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(18), - [anon_sym_assert] = ACTIONS(20), - [anon_sym_return] = ACTIONS(22), - [anon_sym_del] = ACTIONS(24), - [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), - [anon_sym_global] = ACTIONS(44), - [anon_sym_nonlocal] = ACTIONS(46), - [anon_sym_exec] = ACTIONS(48), - [anon_sym_not] = ACTIONS(54), - [anon_sym_PLUS] = ACTIONS(56), - [anon_sym_DASH] = ACTIONS(56), - [anon_sym_TILDE] = ACTIONS(56), - [anon_sym_lambda] = ACTIONS(58), - [anon_sym_yield] = ACTIONS(60), - [anon_sym_LBRACK] = ACTIONS(62), - [sym_ellipsis] = ACTIONS(64), - [anon_sym_LBRACE] = ACTIONS(66), - [sym_string] = ACTIONS(68), - [sym_integer] = ACTIONS(70), - [sym_float] = ACTIONS(70), - [sym_identifier] = ACTIONS(72), - [sym_true] = ACTIONS(70), - [sym_false] = ACTIONS(70), - [sym_none] = ACTIONS(70), - [anon_sym_await] = ACTIONS(74), - [sym_comment] = ACTIONS(76), - }, - [98] = { - [aux_sym__simple_statements_repeat1] = STATE(335), - [sym__newline] = ACTIONS(556), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(560), - }, - [99] = { - [sym__expression] = STATE(336), - [sym__primary_expression] = STATE(105), + [sym_list_splat] = STATE(327), + [sym__expression] = STATE(328), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -11850,30 +11783,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_COMMA] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(236), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(242), [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_RBRACK] = ACTIONS(534), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, - [100] = { - [sym__primary_expression] = STATE(210), + [94] = { + [sym__newline] = ACTIONS(250), + [anon_sym_from] = ACTIONS(250), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(250), + }, + [95] = { + [sym_list_splat] = STATE(331), + [sym_dictionary_splat] = STATE(332), + [sym__expression] = STATE(333), + [sym__primary_expression] = STATE(170), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -11881,84 +11859,312 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), [sym_dictionary_comprehension] = STATE(61), + [sym_pair] = STATE(334), [sym_set] = STATE(61), [sym_set_comprehension] = STATE(61), [sym_parenthesized_expression] = STATE(61), [sym_tuple] = STATE(61), [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_COMMA] = ACTIONS(536), + [anon_sym_STAR] = ACTIONS(256), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_not] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(538), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(268), + [sym_comment] = ACTIONS(76), + }, + [96] = { + [aux_sym_concatenated_string_repeat1] = STATE(336), + [sym__newline] = ACTIONS(250), + [anon_sym_from] = ACTIONS(250), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(540), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(250), + }, + [97] = { + [sym__expression] = STATE(337), + [sym__primary_expression] = STATE(100), + [sym_not_operator] = STATE(101), + [sym_boolean_operator] = STATE(101), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_comparison_operator] = STATE(101), + [sym_lambda] = STATE(101), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_conditional_expression] = STATE(101), + [sym_concatenated_string] = STATE(94), + [sym_await] = STATE(101), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_not] = ACTIONS(154), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_lambda] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [anon_sym_await] = ACTIONS(172), [sym_comment] = ACTIONS(76), }, + [98] = { + [sym__newline] = ACTIONS(542), + [anon_sym_from] = ACTIONS(544), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(542), + }, + [99] = { + [aux_sym_print_statement_repeat1] = STATE(343), + [sym__newline] = ACTIONS(304), + [anon_sym_from] = ACTIONS(304), + [anon_sym_COMMA] = ACTIONS(546), + [anon_sym_if] = ACTIONS(548), + [anon_sym_and] = ACTIONS(550), + [anon_sym_or] = ACTIONS(552), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(304), + }, + [100] = { + [sym_argument_list] = STATE(357), + [sym_generator_expression] = STATE(357), + [aux_sym_comparison_operator_repeat1] = STATE(358), + [sym__newline] = ACTIONS(310), + [anon_sym_from] = ACTIONS(310), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_if] = ACTIONS(310), + [anon_sym_in] = ACTIONS(562), + [anon_sym_not] = ACTIONS(564), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_SLASH_SLASH] = ACTIONS(568), + [anon_sym_STAR_STAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(574), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(578), + [anon_sym_LT_GT] = ACTIONS(562), + [anon_sym_is] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(582), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(310), + }, [101] = { - [sym_lambda_parameters] = STATE(338), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(562), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [sym__newline] = ACTIONS(310), + [anon_sym_from] = ACTIONS(310), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_if] = ACTIONS(310), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(310), }, [102] = { - [aux_sym_concatenated_string_repeat1] = STATE(339), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_COLON] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [ts_builtin_sym_end] = ACTIONS(584), + [anon_sym_import] = ACTIONS(586), + [anon_sym_from] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_print] = ACTIONS(586), + [anon_sym_assert] = ACTIONS(586), + [anon_sym_return] = ACTIONS(586), + [anon_sym_del] = ACTIONS(586), + [anon_sym_raise] = ACTIONS(586), + [sym_pass_statement] = ACTIONS(586), + [sym_break_statement] = ACTIONS(586), + [sym_continue_statement] = ACTIONS(586), + [anon_sym_if] = ACTIONS(586), + [anon_sym_for] = ACTIONS(586), + [anon_sym_while] = ACTIONS(586), + [anon_sym_try] = ACTIONS(586), + [anon_sym_with] = ACTIONS(586), + [anon_sym_async] = ACTIONS(586), + [anon_sym_def] = ACTIONS(586), + [anon_sym_global] = ACTIONS(586), + [anon_sym_nonlocal] = ACTIONS(586), + [anon_sym_exec] = ACTIONS(586), + [anon_sym_class] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_not] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_TILDE] = ACTIONS(584), + [anon_sym_lambda] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(584), + [sym_ellipsis] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(584), + [sym_string] = ACTIONS(586), + [sym_integer] = ACTIONS(586), + [sym_float] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [sym_true] = ACTIONS(586), + [sym_false] = ACTIONS(586), + [sym_none] = ACTIONS(586), + [anon_sym_await] = ACTIONS(586), [sym_comment] = ACTIONS(76), }, [103] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(105), + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), + [sym_expression_list] = STATE(37), + [sym__expression] = STATE(38), + [sym__primary_expression] = STATE(39), + [sym_not_operator] = STATE(40), + [sym_boolean_operator] = STATE(40), + [sym_binary_operator] = STATE(28), + [sym_unary_operator] = STATE(28), + [sym_comparison_operator] = STATE(40), + [sym_lambda] = STATE(40), + [sym_assignment] = STATE(41), + [sym_augmented_assignment] = STATE(41), + [sym_yield] = STATE(41), + [sym_attribute] = STATE(28), + [sym_subscript] = STATE(28), + [sym_call] = STATE(28), + [sym_list] = STATE(28), + [sym_list_comprehension] = STATE(28), + [sym_dictionary] = STATE(28), + [sym_dictionary_comprehension] = STATE(28), + [sym_set] = STATE(28), + [sym_set_comprehension] = STATE(28), + [sym_parenthesized_expression] = STATE(28), + [sym_tuple] = STATE(28), + [sym_generator_expression] = STATE(28), + [sym_conditional_expression] = STATE(40), + [sym_concatenated_string] = STATE(28), + [sym_await] = STATE(40), + [sym__newline] = ACTIONS(590), + [anon_sym_import] = ACTIONS(12), + [anon_sym_from] = ACTIONS(14), + [anon_sym_LPAREN] = ACTIONS(16), + [anon_sym_print] = ACTIONS(18), + [anon_sym_assert] = ACTIONS(20), + [anon_sym_return] = ACTIONS(22), + [anon_sym_del] = ACTIONS(24), + [anon_sym_raise] = ACTIONS(26), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), + [anon_sym_global] = ACTIONS(44), + [anon_sym_nonlocal] = ACTIONS(46), + [anon_sym_exec] = ACTIONS(48), + [anon_sym_not] = ACTIONS(54), + [anon_sym_PLUS] = ACTIONS(56), + [anon_sym_DASH] = ACTIONS(56), + [anon_sym_TILDE] = ACTIONS(56), + [anon_sym_lambda] = ACTIONS(58), + [anon_sym_yield] = ACTIONS(60), + [anon_sym_LBRACK] = ACTIONS(62), + [sym_ellipsis] = ACTIONS(64), + [anon_sym_LBRACE] = ACTIONS(66), + [sym_string] = ACTIONS(68), + [sym_integer] = ACTIONS(70), + [sym_float] = ACTIONS(70), + [sym_identifier] = ACTIONS(72), + [sym_true] = ACTIONS(70), + [sym_false] = ACTIONS(70), + [sym_none] = ACTIONS(70), + [anon_sym_await] = ACTIONS(74), + [sym_comment] = ACTIONS(76), + }, + [104] = { + [aux_sym__simple_statements_repeat1] = STATE(362), + [sym__newline] = ACTIONS(590), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(594), + }, + [105] = { + [sym__expression] = STATE(363), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -11983,68 +12189,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), - [sym_comment] = ACTIONS(76), - }, - [104] = { - [anon_sym_if] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(566), - [anon_sym_and] = ACTIONS(568), - [anon_sym_or] = ACTIONS(570), - [sym_comment] = ACTIONS(76), - }, - [105] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(354), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(574), - [anon_sym_if] = ACTIONS(296), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_in] = ACTIONS(576), - [anon_sym_not] = ACTIONS(578), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_SLASH_SLASH] = ACTIONS(582), - [anon_sym_STAR_STAR] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_LT_GT] = ACTIONS(576), - [anon_sym_is] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, [106] = { - [sym__primary_expression] = STATE(210), + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -12063,13 +12227,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(176), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -12079,75 +12243,248 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), }, [107] = { - [aux_sym_concatenated_string_repeat1] = STATE(355), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [sym_lambda_parameters] = STATE(365), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, [108] = { - [anon_sym_in] = ACTIONS(596), + [aux_sym_concatenated_string_repeat1] = STATE(366), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_COLON] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, [109] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_variables_repeat1] = STATE(365), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(598), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_in] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_SLASH_SLASH] = ACTIONS(608), - [anon_sym_STAR_STAR] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_AMP] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(616), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_LBRACK] = ACTIONS(434), + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(111), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(184), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, [110] = { - [anon_sym_if] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(618), - [anon_sym_and] = ACTIONS(568), - [anon_sym_or] = ACTIONS(570), + [anon_sym_if] = ACTIONS(598), + [anon_sym_COLON] = ACTIONS(600), + [anon_sym_and] = ACTIONS(602), + [anon_sym_or] = ACTIONS(604), [sym_comment] = ACTIONS(76), }, [111] = { - [sym__simple_statements] = STATE(369), - [sym_import_statement] = STATE(368), - [sym_import_from_statement] = STATE(368), - [sym_print_statement] = STATE(368), - [sym_assert_statement] = STATE(368), - [sym_expression_statement] = STATE(368), - [sym_return_statement] = STATE(368), - [sym_delete_statement] = STATE(368), - [sym_raise_statement] = STATE(368), - [sym_global_statement] = STATE(368), - [sym_nonlocal_statement] = STATE(368), - [sym_exec_statement] = STATE(368), - [sym__suite] = STATE(370), + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(381), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_if] = ACTIONS(310), + [anon_sym_COLON] = ACTIONS(310), + [anon_sym_in] = ACTIONS(610), + [anon_sym_not] = ACTIONS(612), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(616), + [anon_sym_SLASH_SLASH] = ACTIONS(616), + [anon_sym_STAR_STAR] = ACTIONS(618), + [anon_sym_PIPE] = ACTIONS(620), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT_GT] = ACTIONS(610), + [anon_sym_is] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(448), + [sym_comment] = ACTIONS(76), + }, + [112] = { + [sym__primary_expression] = STATE(216), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_concatenated_string] = STATE(61), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(190), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [sym_comment] = ACTIONS(76), + }, + [113] = { + [aux_sym_concatenated_string_repeat1] = STATE(382), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(406), + [sym_comment] = ACTIONS(76), + }, + [114] = { + [anon_sym_in] = ACTIONS(630), + [sym_comment] = ACTIONS(76), + }, + [115] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_variables_repeat1] = STATE(392), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(632), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_GT_GT] = ACTIONS(636), + [anon_sym_in] = ACTIONS(638), + [anon_sym_PLUS] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(640), + [anon_sym_SLASH] = ACTIONS(634), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_SLASH_SLASH] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(448), + [sym_comment] = ACTIONS(76), + }, + [116] = { + [anon_sym_if] = ACTIONS(598), + [anon_sym_COLON] = ACTIONS(652), + [anon_sym_and] = ACTIONS(602), + [anon_sym_or] = ACTIONS(604), + [sym_comment] = ACTIONS(76), + }, + [117] = { + [sym__simple_statements] = STATE(396), + [sym_import_statement] = STATE(395), + [sym_import_from_statement] = STATE(395), + [sym_print_statement] = STATE(395), + [sym_assert_statement] = STATE(395), + [sym_expression_statement] = STATE(395), + [sym_return_statement] = STATE(395), + [sym_delete_statement] = STATE(395), + [sym_raise_statement] = STATE(395), + [sym_global_statement] = STATE(395), + [sym_nonlocal_statement] = STATE(395), + [sym_exec_statement] = STATE(395), + [sym__suite] = STATE(397), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -12175,7 +12512,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(620), + [sym__indent] = ACTIONS(654), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -12184,9 +12521,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(622), - [sym_break_statement] = ACTIONS(622), - [sym_continue_statement] = ACTIONS(622), + [sym_pass_statement] = ACTIONS(656), + [sym_break_statement] = ACTIONS(656), + [sym_continue_statement] = ACTIONS(656), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -12209,9 +12546,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [112] = { - [sym__expression] = STATE(371), - [sym__primary_expression] = STATE(119), + [118] = { + [sym__expression] = STATE(398), + [sym__primary_expression] = STATE(125), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -12236,26 +12573,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_lambda] = ACTIONS(184), + [anon_sym_not] = ACTIONS(194), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_lambda] = ACTIONS(198), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(188), + [anon_sym_await] = ACTIONS(202), [sym_comment] = ACTIONS(76), }, - [113] = { - [sym__primary_expression] = STATE(210), + [119] = { + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -12274,13 +12611,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -12289,62 +12626,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [114] = { - [sym_lambda_parameters] = STATE(373), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(624), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [120] = { + [sym_lambda_parameters] = STATE(400), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(658), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [115] = { - [aux_sym_concatenated_string_repeat1] = STATE(374), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_as] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_COLON] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [121] = { + [aux_sym_concatenated_string_repeat1] = STATE(401), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_as] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_COLON] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [116] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(119), + [122] = { + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(125), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -12369,165 +12706,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_lambda] = ACTIONS(184), + [anon_sym_not] = ACTIONS(194), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_lambda] = ACTIONS(198), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(188), + [anon_sym_await] = ACTIONS(202), [sym_comment] = ACTIONS(76), }, - [117] = { - [aux_sym_with_statement_repeat1] = STATE(377), - [anon_sym_COMMA] = ACTIONS(626), - [anon_sym_COLON] = ACTIONS(628), + [123] = { + [aux_sym_with_statement_repeat1] = STATE(404), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_COLON] = ACTIONS(662), [sym_comment] = ACTIONS(76), }, - [118] = { - [anon_sym_COMMA] = ACTIONS(630), - [anon_sym_as] = ACTIONS(632), - [anon_sym_if] = ACTIONS(634), - [anon_sym_COLON] = ACTIONS(630), - [anon_sym_and] = ACTIONS(636), - [anon_sym_or] = ACTIONS(638), + [124] = { + [anon_sym_COMMA] = ACTIONS(664), + [anon_sym_as] = ACTIONS(666), + [anon_sym_if] = ACTIONS(668), + [anon_sym_COLON] = ACTIONS(664), + [anon_sym_and] = ACTIONS(670), + [anon_sym_or] = ACTIONS(672), [sym_comment] = ACTIONS(76), }, - [119] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(392), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_as] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(640), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_if] = ACTIONS(296), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_in] = ACTIONS(644), - [anon_sym_not] = ACTIONS(646), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(648), - [anon_sym_SLASH] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_SLASH_SLASH] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_LT_LT] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(660), - [anon_sym_LT_GT] = ACTIONS(644), - [anon_sym_is] = ACTIONS(662), - [anon_sym_LBRACK] = ACTIONS(434), + [125] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(419), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_as] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(676), + [anon_sym_if] = ACTIONS(310), + [anon_sym_COLON] = ACTIONS(310), + [anon_sym_in] = ACTIONS(678), + [anon_sym_not] = ACTIONS(680), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(684), + [anon_sym_SLASH_SLASH] = ACTIONS(684), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_LT_LT] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(678), + [anon_sym_EQ_EQ] = ACTIONS(678), + [anon_sym_BANG_EQ] = ACTIONS(678), + [anon_sym_GT_EQ] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_LT_GT] = ACTIONS(678), + [anon_sym_is] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [120] = { - [ts_builtin_sym_end] = ACTIONS(664), - [anon_sym_import] = ACTIONS(666), - [anon_sym_from] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_print] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_del] = ACTIONS(666), - [anon_sym_raise] = ACTIONS(666), - [sym_pass_statement] = ACTIONS(666), - [sym_break_statement] = ACTIONS(666), - [sym_continue_statement] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_try] = ACTIONS(666), - [anon_sym_with] = ACTIONS(666), - [anon_sym_async] = ACTIONS(666), - [anon_sym_def] = ACTIONS(666), - [anon_sym_global] = ACTIONS(666), - [anon_sym_nonlocal] = ACTIONS(666), - [anon_sym_exec] = ACTIONS(666), - [anon_sym_class] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(664), - [anon_sym_not] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(664), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_lambda] = ACTIONS(666), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(664), - [sym_ellipsis] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(664), - [sym_string] = ACTIONS(666), - [sym_integer] = ACTIONS(666), - [sym_float] = ACTIONS(666), - [sym_identifier] = ACTIONS(668), - [sym_true] = ACTIONS(666), - [sym_false] = ACTIONS(666), - [sym_none] = ACTIONS(666), - [anon_sym_await] = ACTIONS(666), + [126] = { + [ts_builtin_sym_end] = ACTIONS(698), + [anon_sym_import] = ACTIONS(700), + [anon_sym_from] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_print] = ACTIONS(700), + [anon_sym_assert] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_del] = ACTIONS(700), + [anon_sym_raise] = ACTIONS(700), + [sym_pass_statement] = ACTIONS(700), + [sym_break_statement] = ACTIONS(700), + [sym_continue_statement] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [anon_sym_try] = ACTIONS(700), + [anon_sym_with] = ACTIONS(700), + [anon_sym_async] = ACTIONS(700), + [anon_sym_def] = ACTIONS(700), + [anon_sym_global] = ACTIONS(700), + [anon_sym_nonlocal] = ACTIONS(700), + [anon_sym_exec] = ACTIONS(700), + [anon_sym_class] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(698), + [anon_sym_not] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_lambda] = ACTIONS(700), + [anon_sym_yield] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(698), + [sym_ellipsis] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(698), + [sym_string] = ACTIONS(700), + [sym_integer] = ACTIONS(700), + [sym_float] = ACTIONS(700), + [sym_identifier] = ACTIONS(702), + [sym_true] = ACTIONS(700), + [sym_false] = ACTIONS(700), + [sym_none] = ACTIONS(700), + [anon_sym_await] = ACTIONS(700), [sym_comment] = ACTIONS(76), }, - [121] = { - [sym_parameters] = STATE(394), - [anon_sym_LPAREN] = ACTIONS(670), + [127] = { + [sym_parameters] = STATE(421), + [anon_sym_LPAREN] = ACTIONS(704), [sym_comment] = ACTIONS(76), }, - [122] = { - [aux_sym_global_statement_repeat1] = STATE(396), - [sym__newline] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(674), + [128] = { + [aux_sym_global_statement_repeat1] = STATE(423), + [sym__newline] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(708), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(672), + [sym__semicolon] = ACTIONS(706), }, - [123] = { - [aux_sym_global_statement_repeat1] = STATE(397), - [sym__newline] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(674), + [129] = { + [aux_sym_global_statement_repeat1] = STATE(424), + [sym__newline] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(708), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(676), + [sym__semicolon] = ACTIONS(710), }, - [124] = { - [sym__newline] = ACTIONS(678), - [anon_sym_in] = ACTIONS(680), + [130] = { + [sym__newline] = ACTIONS(712), + [anon_sym_in] = ACTIONS(714), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(678), + [sym__semicolon] = ACTIONS(712), }, - [125] = { - [sym_argument_list] = STATE(401), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_COLON] = ACTIONS(684), + [131] = { + [sym_argument_list] = STATE(428), + [anon_sym_LPAREN] = ACTIONS(716), + [anon_sym_COLON] = ACTIONS(718), [sym_comment] = ACTIONS(76), }, - [126] = { - [aux_sym_dotted_name_repeat1] = STATE(402), - [sym__newline] = ACTIONS(334), - [anon_sym_DOT] = ACTIONS(336), - [anon_sym_LPAREN] = ACTIONS(334), + [132] = { + [aux_sym_dotted_name_repeat1] = STATE(430), + [sym__newline] = ACTIONS(348), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(348), [sym_comment] = ACTIONS(76), }, - [127] = { - [sym_argument_list] = STATE(405), - [sym__newline] = ACTIONS(686), - [anon_sym_LPAREN] = ACTIONS(688), + [133] = { + [sym_argument_list] = STATE(433), + [sym__newline] = ACTIONS(722), + [anon_sym_LPAREN] = ACTIONS(724), [sym_comment] = ACTIONS(76), }, - [128] = { + [134] = { [sym__newline] = ACTIONS(114), [anon_sym_DOT] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(114), @@ -12574,87 +12911,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), [sym__semicolon] = ACTIONS(114), }, - [129] = { - [sym__newline] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_and] = ACTIONS(292), - [anon_sym_or] = ACTIONS(294), - [anon_sym_PLUS_EQ] = ACTIONS(690), - [anon_sym_DASH_EQ] = ACTIONS(690), - [anon_sym_STAR_EQ] = ACTIONS(690), - [anon_sym_SLASH_EQ] = ACTIONS(690), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(690), - [anon_sym_PERCENT_EQ] = ACTIONS(690), - [anon_sym_STAR_STAR_EQ] = ACTIONS(690), - [anon_sym_GT_GT_EQ] = ACTIONS(690), - [anon_sym_LT_LT_EQ] = ACTIONS(690), - [anon_sym_AMP_EQ] = ACTIONS(690), - [anon_sym_CARET_EQ] = ACTIONS(690), - [anon_sym_PIPE_EQ] = ACTIONS(690), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(690), + [135] = { + [sym__newline] = ACTIONS(726), + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_EQ] = ACTIONS(726), + [anon_sym_and] = ACTIONS(306), + [anon_sym_or] = ACTIONS(308), + [anon_sym_PLUS_EQ] = ACTIONS(726), + [anon_sym_DASH_EQ] = ACTIONS(726), + [anon_sym_STAR_EQ] = ACTIONS(726), + [anon_sym_SLASH_EQ] = ACTIONS(726), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(726), + [anon_sym_PERCENT_EQ] = ACTIONS(726), + [anon_sym_STAR_STAR_EQ] = ACTIONS(726), + [anon_sym_GT_GT_EQ] = ACTIONS(726), + [anon_sym_LT_LT_EQ] = ACTIONS(726), + [anon_sym_AMP_EQ] = ACTIONS(726), + [anon_sym_CARET_EQ] = ACTIONS(726), + [anon_sym_PIPE_EQ] = ACTIONS(726), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(726), }, - [130] = { - [sym_argument_list] = STATE(189), - [sym_generator_expression] = STATE(189), - [sym__newline] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(692), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_COMMA] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_if] = ACTIONS(692), - [anon_sym_in] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_not] = ACTIONS(692), - [anon_sym_and] = ACTIONS(692), - [anon_sym_or] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(694), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(692), - [anon_sym_EQ_EQ] = ACTIONS(692), - [anon_sym_BANG_EQ] = ACTIONS(692), - [anon_sym_GT_EQ] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_LT_GT] = ACTIONS(692), - [anon_sym_is] = ACTIONS(692), - [anon_sym_PLUS_EQ] = ACTIONS(692), - [anon_sym_DASH_EQ] = ACTIONS(692), - [anon_sym_STAR_EQ] = ACTIONS(692), - [anon_sym_SLASH_EQ] = ACTIONS(692), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(692), - [anon_sym_PERCENT_EQ] = ACTIONS(692), - [anon_sym_STAR_STAR_EQ] = ACTIONS(692), - [anon_sym_GT_GT_EQ] = ACTIONS(692), - [anon_sym_LT_LT_EQ] = ACTIONS(692), - [anon_sym_AMP_EQ] = ACTIONS(692), - [anon_sym_CARET_EQ] = ACTIONS(692), - [anon_sym_PIPE_EQ] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(692), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(692), + [136] = { + [sym_argument_list] = STATE(195), + [sym_generator_expression] = STATE(195), + [sym__newline] = ACTIONS(728), + [anon_sym_DOT] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_COMMA] = ACTIONS(728), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_GT_GT] = ACTIONS(730), + [anon_sym_if] = ACTIONS(728), + [anon_sym_in] = ACTIONS(728), + [anon_sym_EQ] = ACTIONS(730), + [anon_sym_not] = ACTIONS(728), + [anon_sym_and] = ACTIONS(728), + [anon_sym_or] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(730), + [anon_sym_SLASH] = ACTIONS(730), + [anon_sym_PERCENT] = ACTIONS(730), + [anon_sym_SLASH_SLASH] = ACTIONS(730), + [anon_sym_STAR_STAR] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(730), + [anon_sym_AMP] = ACTIONS(730), + [anon_sym_CARET] = ACTIONS(730), + [anon_sym_LT_LT] = ACTIONS(730), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(728), + [anon_sym_EQ_EQ] = ACTIONS(728), + [anon_sym_BANG_EQ] = ACTIONS(728), + [anon_sym_GT_EQ] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_LT_GT] = ACTIONS(728), + [anon_sym_is] = ACTIONS(728), + [anon_sym_PLUS_EQ] = ACTIONS(728), + [anon_sym_DASH_EQ] = ACTIONS(728), + [anon_sym_STAR_EQ] = ACTIONS(728), + [anon_sym_SLASH_EQ] = ACTIONS(728), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(728), + [anon_sym_PERCENT_EQ] = ACTIONS(728), + [anon_sym_STAR_STAR_EQ] = ACTIONS(728), + [anon_sym_GT_GT_EQ] = ACTIONS(728), + [anon_sym_LT_LT_EQ] = ACTIONS(728), + [anon_sym_AMP_EQ] = ACTIONS(728), + [anon_sym_CARET_EQ] = ACTIONS(728), + [anon_sym_PIPE_EQ] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(728), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(728), }, - [131] = { - [sym__expression] = STATE(406), - [sym__primary_expression] = STATE(221), + [137] = { + [sym__expression] = STATE(434), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_yield] = STATE(407), + [sym_yield] = STATE(435), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -12671,32 +13008,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(360), - [anon_sym_COMMA] = ACTIONS(362), + [anon_sym_RPAREN] = ACTIONS(374), + [anon_sym_COMMA] = ACTIONS(376), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_yield] = ACTIONS(98), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [132] = { - [sym__expression] = STATE(414), - [sym__primary_expression] = STATE(415), + [138] = { + [sym__expression] = STATE(442), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -12719,38 +13056,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_COMMA] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(732), + [anon_sym_STAR] = ACTIONS(734), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(696), + [anon_sym_COLON] = ACTIONS(732), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [133] = { - [aux_sym__parameters_repeat1] = STATE(419), - [anon_sym_COMMA] = ACTIONS(710), - [anon_sym_COLON] = ACTIONS(712), - [anon_sym_EQ] = ACTIONS(714), + [139] = { + [aux_sym__parameters_repeat1] = STATE(447), + [anon_sym_COMMA] = ACTIONS(746), + [anon_sym_COLON] = ACTIONS(748), + [anon_sym_EQ] = ACTIONS(750), [sym_comment] = ACTIONS(76), }, - [134] = { - [sym__expression] = STATE(420), + [140] = { + [sym__expression] = STATE(448), [sym__primary_expression] = STATE(39), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -12774,8 +13111,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), @@ -12794,36 +13131,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [135] = { - [aux_sym__parameters_repeat1] = STATE(424), - [anon_sym_COMMA] = ACTIONS(716), - [anon_sym_COLON] = ACTIONS(718), - [anon_sym_EQ] = ACTIONS(720), + [141] = { + [aux_sym__parameters_repeat1] = STATE(452), + [anon_sym_COMMA] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(754), + [anon_sym_EQ] = ACTIONS(756), [sym_comment] = ACTIONS(76), }, - [136] = { - [anon_sym_COLON] = ACTIONS(722), + [142] = { + [anon_sym_COLON] = ACTIONS(758), [sym_comment] = ACTIONS(76), }, - [137] = { - [anon_sym_COLON] = ACTIONS(724), + [143] = { + [anon_sym_COLON] = ACTIONS(760), [sym_comment] = ACTIONS(76), }, - [138] = { - [aux_sym__parameters_repeat1] = STATE(424), - [anon_sym_COMMA] = ACTIONS(716), - [anon_sym_COLON] = ACTIONS(718), + [144] = { + [aux_sym__parameters_repeat1] = STATE(452), + [anon_sym_COMMA] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(754), [sym_comment] = ACTIONS(76), }, - [139] = { - [aux_sym__parameters_repeat1] = STATE(424), - [anon_sym_COMMA] = ACTIONS(716), - [anon_sym_COLON] = ACTIONS(718), + [145] = { + [aux_sym__parameters_repeat1] = STATE(452), + [anon_sym_COMMA] = ACTIONS(752), + [anon_sym_COLON] = ACTIONS(754), [sym_comment] = ACTIONS(76), }, - [140] = { - [sym__expression] = STATE(427), - [sym__primary_expression] = STATE(310), + [146] = { + [sym__expression] = STATE(455), + [sym__primary_expression] = STATE(316), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), [sym_binary_operator] = STATE(76), @@ -12848,36 +13185,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(502), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_lambda] = ACTIONS(506), + [anon_sym_not] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_lambda] = ACTIONS(520), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), [sym_true] = ACTIONS(132), [sym_false] = ACTIONS(132), [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(510), + [anon_sym_await] = ACTIONS(524), [sym_comment] = ACTIONS(76), }, - [141] = { - [sym__newline] = ACTIONS(726), + [147] = { + [sym__newline] = ACTIONS(762), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(726), + [sym__semicolon] = ACTIONS(762), }, - [142] = { - [anon_sym_RBRACK] = ACTIONS(728), + [148] = { + [anon_sym_RBRACK] = ACTIONS(764), [sym_comment] = ACTIONS(76), }, - [143] = { - [sym__expression] = STATE(434), - [sym__primary_expression] = STATE(435), + [149] = { + [sym__expression] = STATE(462), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -12900,31 +13237,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_COMMA] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(732), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(696), + [anon_sym_RBRACK] = ACTIONS(732), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [144] = { - [sym__expression] = STATE(436), - [sym__primary_expression] = STATE(152), + [150] = { + [sym__expression] = STATE(464), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -12949,26 +13286,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lambda] = ACTIONS(228), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(242), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(234), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, - [145] = { - [sym__primary_expression] = STATE(210), + [151] = { + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -12987,13 +13324,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -13002,109 +13339,109 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [146] = { - [sym_lambda_parameters] = STATE(438), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [152] = { + [sym_lambda_parameters] = STATE(466), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(776), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [147] = { - [sym__newline] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_GT_GT] = ACTIONS(744), - [anon_sym_if] = ACTIONS(742), - [anon_sym_in] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(744), - [anon_sym_not] = ACTIONS(742), - [anon_sym_and] = ACTIONS(742), - [anon_sym_or] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_SLASH] = ACTIONS(744), - [anon_sym_PERCENT] = ACTIONS(744), - [anon_sym_SLASH_SLASH] = ACTIONS(744), - [anon_sym_STAR_STAR] = ACTIONS(744), - [anon_sym_PIPE] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_CARET] = ACTIONS(744), - [anon_sym_LT_LT] = ACTIONS(744), - [anon_sym_LT] = ACTIONS(744), - [anon_sym_LT_EQ] = ACTIONS(742), - [anon_sym_EQ_EQ] = ACTIONS(742), - [anon_sym_BANG_EQ] = ACTIONS(742), - [anon_sym_GT_EQ] = ACTIONS(742), - [anon_sym_GT] = ACTIONS(744), - [anon_sym_LT_GT] = ACTIONS(742), - [anon_sym_is] = ACTIONS(742), - [anon_sym_PLUS_EQ] = ACTIONS(742), - [anon_sym_DASH_EQ] = ACTIONS(742), - [anon_sym_STAR_EQ] = ACTIONS(742), - [anon_sym_SLASH_EQ] = ACTIONS(742), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(742), - [anon_sym_PERCENT_EQ] = ACTIONS(742), - [anon_sym_STAR_STAR_EQ] = ACTIONS(742), - [anon_sym_GT_GT_EQ] = ACTIONS(742), - [anon_sym_LT_LT_EQ] = ACTIONS(742), - [anon_sym_AMP_EQ] = ACTIONS(742), - [anon_sym_CARET_EQ] = ACTIONS(742), - [anon_sym_PIPE_EQ] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(742), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(742), + [153] = { + [sym__newline] = ACTIONS(778), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(778), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_GT_GT] = ACTIONS(780), + [anon_sym_if] = ACTIONS(778), + [anon_sym_in] = ACTIONS(778), + [anon_sym_EQ] = ACTIONS(780), + [anon_sym_not] = ACTIONS(778), + [anon_sym_and] = ACTIONS(778), + [anon_sym_or] = ACTIONS(778), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_PERCENT] = ACTIONS(780), + [anon_sym_SLASH_SLASH] = ACTIONS(780), + [anon_sym_STAR_STAR] = ACTIONS(780), + [anon_sym_PIPE] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(780), + [anon_sym_CARET] = ACTIONS(780), + [anon_sym_LT_LT] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(780), + [anon_sym_LT_EQ] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(778), + [anon_sym_BANG_EQ] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_GT] = ACTIONS(780), + [anon_sym_LT_GT] = ACTIONS(778), + [anon_sym_is] = ACTIONS(778), + [anon_sym_PLUS_EQ] = ACTIONS(778), + [anon_sym_DASH_EQ] = ACTIONS(778), + [anon_sym_STAR_EQ] = ACTIONS(778), + [anon_sym_SLASH_EQ] = ACTIONS(778), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(778), + [anon_sym_PERCENT_EQ] = ACTIONS(778), + [anon_sym_STAR_STAR_EQ] = ACTIONS(778), + [anon_sym_GT_GT_EQ] = ACTIONS(778), + [anon_sym_LT_LT_EQ] = ACTIONS(778), + [anon_sym_AMP_EQ] = ACTIONS(778), + [anon_sym_CARET_EQ] = ACTIONS(778), + [anon_sym_PIPE_EQ] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(778), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(778), }, - [148] = { - [aux_sym_concatenated_string_repeat1] = STATE(439), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_for] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [anon_sym_RBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [154] = { + [aux_sym_concatenated_string_repeat1] = STATE(467), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_for] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [anon_sym_RBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [149] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(152), + [155] = { + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -13129,86 +13466,86 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lambda] = ACTIONS(228), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(242), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(234), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, - [150] = { - [aux_sym_list_repeat1] = STATE(441), - [anon_sym_COMMA] = ACTIONS(746), - [anon_sym_RBRACK] = ACTIONS(728), + [156] = { + [aux_sym_list_repeat1] = STATE(469), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(764), [sym_comment] = ACTIONS(76), }, - [151] = { - [sym__comprehension_body] = STATE(446), - [sym_for_in_clause] = STATE(447), - [aux_sym_list_repeat1] = STATE(441), - [anon_sym_COMMA] = ACTIONS(746), - [anon_sym_if] = ACTIONS(748), - [anon_sym_for] = ACTIONS(750), - [anon_sym_and] = ACTIONS(752), - [anon_sym_or] = ACTIONS(754), - [anon_sym_RBRACK] = ACTIONS(728), + [157] = { + [sym__comprehension_body] = STATE(474), + [sym_for_in_clause] = STATE(475), + [aux_sym_list_repeat1] = STATE(469), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_if] = ACTIONS(784), + [anon_sym_for] = ACTIONS(786), + [anon_sym_and] = ACTIONS(788), + [anon_sym_or] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(764), [sym_comment] = ACTIONS(76), }, - [152] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(458), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_GT_GT] = ACTIONS(758), - [anon_sym_if] = ACTIONS(296), - [anon_sym_for] = ACTIONS(296), - [anon_sym_in] = ACTIONS(760), - [anon_sym_not] = ACTIONS(762), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_PERCENT] = ACTIONS(766), - [anon_sym_SLASH_SLASH] = ACTIONS(766), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(758), - [anon_sym_LT] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(760), - [anon_sym_EQ_EQ] = ACTIONS(760), - [anon_sym_BANG_EQ] = ACTIONS(760), - [anon_sym_GT_EQ] = ACTIONS(760), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_LT_GT] = ACTIONS(760), - [anon_sym_is] = ACTIONS(778), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACK] = ACTIONS(296), + [158] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(486), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_if] = ACTIONS(310), + [anon_sym_for] = ACTIONS(310), + [anon_sym_in] = ACTIONS(796), + [anon_sym_not] = ACTIONS(798), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(792), + [anon_sym_PERCENT] = ACTIONS(802), + [anon_sym_SLASH_SLASH] = ACTIONS(802), + [anon_sym_STAR_STAR] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(812), + [anon_sym_LT_EQ] = ACTIONS(796), + [anon_sym_EQ_EQ] = ACTIONS(796), + [anon_sym_BANG_EQ] = ACTIONS(796), + [anon_sym_GT_EQ] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(812), + [anon_sym_LT_GT] = ACTIONS(796), + [anon_sym_is] = ACTIONS(814), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACK] = ACTIONS(310), [sym_comment] = ACTIONS(76), }, - [153] = { - [anon_sym_RBRACE] = ACTIONS(780), + [159] = { + [anon_sym_RBRACE] = ACTIONS(816), [sym_comment] = ACTIONS(76), }, - [154] = { - [sym__expression] = STATE(466), - [sym__primary_expression] = STATE(467), + [160] = { + [sym__expression] = STATE(494), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -13231,32 +13568,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_COMMA] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(782), + [anon_sym_COMMA] = ACTIONS(732), + [anon_sym_STAR] = ACTIONS(818), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(696), - [sym_string] = ACTIONS(790), + [anon_sym_RBRACE] = ACTIONS(732), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [155] = { - [sym__expression] = STATE(468), - [sym__primary_expression] = STATE(164), + [161] = { + [sym__expression] = STATE(496), + [sym__primary_expression] = STATE(170), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -13281,26 +13618,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_lambda] = ACTIONS(248), + [anon_sym_not] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(254), + [anon_sym_await] = ACTIONS(268), [sym_comment] = ACTIONS(76), }, - [156] = { - [sym__primary_expression] = STATE(210), + [162] = { + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -13319,13 +13656,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -13334,110 +13671,110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [157] = { - [sym_lambda_parameters] = STATE(470), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(794), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [163] = { + [sym_lambda_parameters] = STATE(498), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(830), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [158] = { - [sym__newline] = ACTIONS(796), - [anon_sym_DOT] = ACTIONS(796), - [anon_sym_LPAREN] = ACTIONS(796), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_STAR] = ACTIONS(798), - [anon_sym_GT_GT] = ACTIONS(798), - [anon_sym_if] = ACTIONS(796), - [anon_sym_in] = ACTIONS(796), - [anon_sym_EQ] = ACTIONS(798), - [anon_sym_not] = ACTIONS(796), - [anon_sym_and] = ACTIONS(796), - [anon_sym_or] = ACTIONS(796), - [anon_sym_PLUS] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(798), - [anon_sym_SLASH] = ACTIONS(798), - [anon_sym_PERCENT] = ACTIONS(798), - [anon_sym_SLASH_SLASH] = ACTIONS(798), - [anon_sym_STAR_STAR] = ACTIONS(798), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_CARET] = ACTIONS(798), - [anon_sym_LT_LT] = ACTIONS(798), - [anon_sym_LT] = ACTIONS(798), - [anon_sym_LT_EQ] = ACTIONS(796), - [anon_sym_EQ_EQ] = ACTIONS(796), - [anon_sym_BANG_EQ] = ACTIONS(796), - [anon_sym_GT_EQ] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(798), - [anon_sym_LT_GT] = ACTIONS(796), - [anon_sym_is] = ACTIONS(796), - [anon_sym_PLUS_EQ] = ACTIONS(796), - [anon_sym_DASH_EQ] = ACTIONS(796), - [anon_sym_STAR_EQ] = ACTIONS(796), - [anon_sym_SLASH_EQ] = ACTIONS(796), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(796), - [anon_sym_PERCENT_EQ] = ACTIONS(796), - [anon_sym_STAR_STAR_EQ] = ACTIONS(796), - [anon_sym_GT_GT_EQ] = ACTIONS(796), - [anon_sym_LT_LT_EQ] = ACTIONS(796), - [anon_sym_AMP_EQ] = ACTIONS(796), - [anon_sym_CARET_EQ] = ACTIONS(796), - [anon_sym_PIPE_EQ] = ACTIONS(796), - [anon_sym_LBRACK] = ACTIONS(796), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(796), + [164] = { + [sym__newline] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_COMMA] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_if] = ACTIONS(832), + [anon_sym_in] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_not] = ACTIONS(832), + [anon_sym_and] = ACTIONS(832), + [anon_sym_or] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(834), + [anon_sym_SLASH_SLASH] = ACTIONS(834), + [anon_sym_STAR_STAR] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_AMP] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_LT_LT] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_LT_EQ] = ACTIONS(832), + [anon_sym_EQ_EQ] = ACTIONS(832), + [anon_sym_BANG_EQ] = ACTIONS(832), + [anon_sym_GT_EQ] = ACTIONS(832), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_LT_GT] = ACTIONS(832), + [anon_sym_is] = ACTIONS(832), + [anon_sym_PLUS_EQ] = ACTIONS(832), + [anon_sym_DASH_EQ] = ACTIONS(832), + [anon_sym_STAR_EQ] = ACTIONS(832), + [anon_sym_SLASH_EQ] = ACTIONS(832), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(832), + [anon_sym_PERCENT_EQ] = ACTIONS(832), + [anon_sym_STAR_STAR_EQ] = ACTIONS(832), + [anon_sym_GT_GT_EQ] = ACTIONS(832), + [anon_sym_LT_LT_EQ] = ACTIONS(832), + [anon_sym_AMP_EQ] = ACTIONS(832), + [anon_sym_CARET_EQ] = ACTIONS(832), + [anon_sym_PIPE_EQ] = ACTIONS(832), + [anon_sym_LBRACK] = ACTIONS(832), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(832), }, - [159] = { - [aux_sym_concatenated_string_repeat1] = STATE(471), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_COLON] = ACTIONS(236), - [anon_sym_for] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [anon_sym_RBRACE] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [165] = { + [aux_sym_concatenated_string_repeat1] = STATE(499), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_COLON] = ACTIONS(250), + [anon_sym_for] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [anon_sym_RBRACE] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [160] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(164), + [166] = { + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(170), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -13462,219 +13799,218 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_lambda] = ACTIONS(248), + [anon_sym_not] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(254), + [anon_sym_await] = ACTIONS(268), [sym_comment] = ACTIONS(76), }, - [161] = { - [aux_sym_list_repeat1] = STATE(474), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_RBRACE] = ACTIONS(802), + [167] = { + [aux_sym_list_repeat1] = STATE(502), + [anon_sym_COMMA] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(838), [sym_comment] = ACTIONS(76), }, - [162] = { - [aux_sym_dictionary_repeat1] = STATE(476), - [anon_sym_COMMA] = ACTIONS(804), - [anon_sym_RBRACE] = ACTIONS(780), + [168] = { + [aux_sym_dictionary_repeat1] = STATE(504), + [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_RBRACE] = ACTIONS(816), [sym_comment] = ACTIONS(76), }, - [163] = { - [sym__comprehension_body] = STATE(482), - [sym_for_in_clause] = STATE(483), - [aux_sym_list_repeat1] = STATE(474), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_if] = ACTIONS(806), - [anon_sym_COLON] = ACTIONS(808), - [anon_sym_for] = ACTIONS(810), - [anon_sym_and] = ACTIONS(812), - [anon_sym_or] = ACTIONS(814), - [anon_sym_RBRACE] = ACTIONS(802), + [169] = { + [sym__comprehension_body] = STATE(510), + [sym_for_in_clause] = STATE(511), + [aux_sym_list_repeat1] = STATE(502), + [anon_sym_COMMA] = ACTIONS(836), + [anon_sym_if] = ACTIONS(842), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_for] = ACTIONS(846), + [anon_sym_and] = ACTIONS(848), + [anon_sym_or] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(838), [sym_comment] = ACTIONS(76), }, - [164] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(494), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_if] = ACTIONS(296), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_for] = ACTIONS(296), - [anon_sym_in] = ACTIONS(820), - [anon_sym_not] = ACTIONS(822), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_SLASH] = ACTIONS(816), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_SLASH_SLASH] = ACTIONS(826), - [anon_sym_STAR_STAR] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_GT_EQ] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(820), - [anon_sym_is] = ACTIONS(838), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(296), + [170] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(522), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(854), + [anon_sym_if] = ACTIONS(310), + [anon_sym_COLON] = ACTIONS(310), + [anon_sym_for] = ACTIONS(310), + [anon_sym_in] = ACTIONS(856), + [anon_sym_not] = ACTIONS(858), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_STAR_STAR] = ACTIONS(864), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(868), + [anon_sym_CARET] = ACTIONS(870), + [anon_sym_LT_LT] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(872), + [anon_sym_LT_EQ] = ACTIONS(856), + [anon_sym_EQ_EQ] = ACTIONS(856), + [anon_sym_BANG_EQ] = ACTIONS(856), + [anon_sym_GT_EQ] = ACTIONS(856), + [anon_sym_GT] = ACTIONS(872), + [anon_sym_LT_GT] = ACTIONS(856), + [anon_sym_is] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(310), [sym_comment] = ACTIONS(76), }, - [165] = { - [sym__comprehension_body] = STATE(495), - [sym_for_in_clause] = STATE(483), - [aux_sym_dictionary_repeat1] = STATE(476), - [anon_sym_COMMA] = ACTIONS(804), - [anon_sym_for] = ACTIONS(810), - [anon_sym_RBRACE] = ACTIONS(780), + [171] = { + [sym__comprehension_body] = STATE(523), + [sym_for_in_clause] = STATE(511), + [aux_sym_dictionary_repeat1] = STATE(504), + [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_for] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(816), [sym_comment] = ACTIONS(76), }, - [166] = { - [sym__newline] = ACTIONS(840), - [anon_sym_DOT] = ACTIONS(840), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_COMMA] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_GT_GT] = ACTIONS(842), - [anon_sym_if] = ACTIONS(840), - [anon_sym_in] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(842), - [anon_sym_not] = ACTIONS(840), - [anon_sym_and] = ACTIONS(840), - [anon_sym_or] = ACTIONS(840), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_SLASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_SLASH_SLASH] = ACTIONS(842), - [anon_sym_STAR_STAR] = ACTIONS(842), - [anon_sym_PIPE] = ACTIONS(842), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_CARET] = ACTIONS(842), - [anon_sym_LT_LT] = ACTIONS(842), - [anon_sym_LT] = ACTIONS(842), - [anon_sym_LT_EQ] = ACTIONS(840), - [anon_sym_EQ_EQ] = ACTIONS(840), - [anon_sym_BANG_EQ] = ACTIONS(840), - [anon_sym_GT_EQ] = ACTIONS(840), - [anon_sym_GT] = ACTIONS(842), - [anon_sym_LT_GT] = ACTIONS(840), - [anon_sym_is] = ACTIONS(840), - [anon_sym_PLUS_EQ] = ACTIONS(840), - [anon_sym_DASH_EQ] = ACTIONS(840), - [anon_sym_STAR_EQ] = ACTIONS(840), - [anon_sym_SLASH_EQ] = ACTIONS(840), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(840), - [anon_sym_PERCENT_EQ] = ACTIONS(840), - [anon_sym_STAR_STAR_EQ] = ACTIONS(840), - [anon_sym_GT_GT_EQ] = ACTIONS(840), - [anon_sym_LT_LT_EQ] = ACTIONS(840), - [anon_sym_AMP_EQ] = ACTIONS(840), - [anon_sym_CARET_EQ] = ACTIONS(840), - [anon_sym_PIPE_EQ] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(840), - [sym_string] = ACTIONS(842), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(840), + [172] = { + [sym__newline] = ACTIONS(876), + [anon_sym_DOT] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(876), + [anon_sym_COMMA] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(878), + [anon_sym_if] = ACTIONS(876), + [anon_sym_in] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_not] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(878), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_PERCENT] = ACTIONS(878), + [anon_sym_SLASH_SLASH] = ACTIONS(878), + [anon_sym_STAR_STAR] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_CARET] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_GT_EQ] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_LT_GT] = ACTIONS(876), + [anon_sym_is] = ACTIONS(876), + [anon_sym_PLUS_EQ] = ACTIONS(876), + [anon_sym_DASH_EQ] = ACTIONS(876), + [anon_sym_STAR_EQ] = ACTIONS(876), + [anon_sym_SLASH_EQ] = ACTIONS(876), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(876), + [anon_sym_PERCENT_EQ] = ACTIONS(876), + [anon_sym_STAR_STAR_EQ] = ACTIONS(876), + [anon_sym_GT_GT_EQ] = ACTIONS(876), + [anon_sym_LT_LT_EQ] = ACTIONS(876), + [anon_sym_AMP_EQ] = ACTIONS(876), + [anon_sym_CARET_EQ] = ACTIONS(876), + [anon_sym_PIPE_EQ] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(876), + [sym_string] = ACTIONS(878), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(876), }, - [167] = { - [aux_sym_concatenated_string_repeat1] = STATE(496), - [sym__newline] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(846), - [anon_sym_if] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_EQ] = ACTIONS(846), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(846), - [anon_sym_SLASH_SLASH] = ACTIONS(846), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(846), - [anon_sym_CARET] = ACTIONS(846), - [anon_sym_LT_LT] = ACTIONS(846), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_PLUS_EQ] = ACTIONS(844), - [anon_sym_DASH_EQ] = ACTIONS(844), - [anon_sym_STAR_EQ] = ACTIONS(844), - [anon_sym_SLASH_EQ] = ACTIONS(844), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(844), - [anon_sym_PERCENT_EQ] = ACTIONS(844), - [anon_sym_STAR_STAR_EQ] = ACTIONS(844), - [anon_sym_GT_GT_EQ] = ACTIONS(844), - [anon_sym_LT_LT_EQ] = ACTIONS(844), - [anon_sym_AMP_EQ] = ACTIONS(844), - [anon_sym_CARET_EQ] = ACTIONS(844), - [anon_sym_PIPE_EQ] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(256), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(844), + [173] = { + [aux_sym_concatenated_string_repeat1] = STATE(524), + [sym__newline] = ACTIONS(880), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [anon_sym_if] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(882), + [anon_sym_SLASH_SLASH] = ACTIONS(882), + [anon_sym_STAR_STAR] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_CARET] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_PLUS_EQ] = ACTIONS(880), + [anon_sym_DASH_EQ] = ACTIONS(880), + [anon_sym_STAR_EQ] = ACTIONS(880), + [anon_sym_SLASH_EQ] = ACTIONS(880), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(880), + [anon_sym_PERCENT_EQ] = ACTIONS(880), + [anon_sym_STAR_STAR_EQ] = ACTIONS(880), + [anon_sym_GT_GT_EQ] = ACTIONS(880), + [anon_sym_LT_LT_EQ] = ACTIONS(880), + [anon_sym_AMP_EQ] = ACTIONS(880), + [anon_sym_CARET_EQ] = ACTIONS(880), + [anon_sym_PIPE_EQ] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(270), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(880), }, - [168] = { - [sym__newline] = ACTIONS(848), - [anon_sym_from] = ACTIONS(848), - [anon_sym_COMMA] = ACTIONS(848), - [anon_sym_if] = ACTIONS(848), - [anon_sym_EQ] = ACTIONS(848), - [anon_sym_and] = ACTIONS(848), - [anon_sym_or] = ACTIONS(848), - [anon_sym_PLUS_EQ] = ACTIONS(848), - [anon_sym_DASH_EQ] = ACTIONS(848), - [anon_sym_STAR_EQ] = ACTIONS(848), - [anon_sym_SLASH_EQ] = ACTIONS(848), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(848), - [anon_sym_PERCENT_EQ] = ACTIONS(848), - [anon_sym_STAR_STAR_EQ] = ACTIONS(848), - [anon_sym_GT_GT_EQ] = ACTIONS(848), - [anon_sym_LT_LT_EQ] = ACTIONS(848), - [anon_sym_AMP_EQ] = ACTIONS(848), - [anon_sym_CARET_EQ] = ACTIONS(848), - [anon_sym_PIPE_EQ] = ACTIONS(848), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(848), + [174] = { + [sym__newline] = ACTIONS(884), + [anon_sym_COMMA] = ACTIONS(884), + [anon_sym_if] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(884), + [anon_sym_and] = ACTIONS(884), + [anon_sym_or] = ACTIONS(884), + [anon_sym_PLUS_EQ] = ACTIONS(884), + [anon_sym_DASH_EQ] = ACTIONS(884), + [anon_sym_STAR_EQ] = ACTIONS(884), + [anon_sym_SLASH_EQ] = ACTIONS(884), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(884), + [anon_sym_PERCENT_EQ] = ACTIONS(884), + [anon_sym_STAR_STAR_EQ] = ACTIONS(884), + [anon_sym_GT_GT_EQ] = ACTIONS(884), + [anon_sym_LT_LT_EQ] = ACTIONS(884), + [anon_sym_AMP_EQ] = ACTIONS(884), + [anon_sym_CARET_EQ] = ACTIONS(884), + [anon_sym_PIPE_EQ] = ACTIONS(884), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(884), }, - [169] = { - [sym_expression_list] = STATE(497), - [sym__expression] = STATE(498), + [175] = { + [sym_expression_list] = STATE(525), + [sym__expression] = STATE(526), [sym__primary_expression] = STATE(39), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -13682,10 +14018,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_operator] = STATE(28), [sym_comparison_operator] = STATE(40), [sym_lambda] = STATE(40), - [sym_assignment] = STATE(499), - [sym_augmented_assignment] = STATE(499), - [sym__right_hand_side] = STATE(500), - [sym_yield] = STATE(499), + [sym_assignment] = STATE(527), + [sym_augmented_assignment] = STATE(527), + [sym__right_hand_side] = STATE(528), + [sym_yield] = STATE(527), [sym_attribute] = STATE(28), [sym_subscript] = STATE(28), [sym_call] = STATE(28), @@ -13702,8 +14038,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), @@ -13723,9 +14059,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [170] = { - [sym_expression_list] = STATE(497), - [sym__expression] = STATE(498), + [176] = { + [sym_expression_list] = STATE(525), + [sym__expression] = STATE(526), [sym__primary_expression] = STATE(39), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -13733,10 +14069,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_operator] = STATE(28), [sym_comparison_operator] = STATE(40), [sym_lambda] = STATE(40), - [sym_assignment] = STATE(499), - [sym_augmented_assignment] = STATE(499), - [sym__right_hand_side] = STATE(501), - [sym_yield] = STATE(499), + [sym_assignment] = STATE(527), + [sym_augmented_assignment] = STATE(527), + [sym__right_hand_side] = STATE(529), + [sym_yield] = STATE(527), [sym_attribute] = STATE(28), [sym_subscript] = STATE(28), [sym_call] = STATE(28), @@ -13753,8 +14089,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), @@ -13774,8 +14110,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [171] = { - [sym__expression] = STATE(502), + [177] = { + [sym__expression] = STATE(530), [sym__primary_expression] = STATE(39), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -13798,28 +14134,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(850), + [sym__newline] = ACTIONS(886), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_EQ] = ACTIONS(852), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_EQ] = ACTIONS(888), + [anon_sym_exec] = ACTIONS(218), [anon_sym_not] = ACTIONS(54), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(890), [anon_sym_TILDE] = ACTIONS(56), [anon_sym_lambda] = ACTIONS(58), - [anon_sym_PLUS_EQ] = ACTIONS(852), - [anon_sym_DASH_EQ] = ACTIONS(852), - [anon_sym_STAR_EQ] = ACTIONS(852), - [anon_sym_SLASH_EQ] = ACTIONS(852), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(852), - [anon_sym_PERCENT_EQ] = ACTIONS(852), - [anon_sym_STAR_STAR_EQ] = ACTIONS(852), - [anon_sym_GT_GT_EQ] = ACTIONS(852), - [anon_sym_LT_LT_EQ] = ACTIONS(852), - [anon_sym_AMP_EQ] = ACTIONS(852), - [anon_sym_CARET_EQ] = ACTIONS(852), - [anon_sym_PIPE_EQ] = ACTIONS(852), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), [anon_sym_LBRACK] = ACTIONS(62), [sym_ellipsis] = ACTIONS(64), [anon_sym_LBRACE] = ACTIONS(66), @@ -13832,11 +14168,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(70), [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(850), + [sym__semicolon] = ACTIONS(886), }, - [172] = { - [sym__expression] = STATE(508), - [sym__primary_expression] = STATE(509), + [178] = { + [sym__expression] = STATE(536), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -13861,26 +14197,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [173] = { - [sym__expression] = STATE(510), + [179] = { + [sym__expression] = STATE(538), [sym__primary_expression] = STATE(39), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -13904,8 +14240,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), @@ -13924,8 +14260,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [174] = { - [sym__expression] = STATE(511), + [180] = { + [sym__expression] = STATE(539), [sym__primary_expression] = STATE(39), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -13949,8 +14285,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), @@ -13969,34 +14305,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [175] = { - [aux_sym_print_statement_repeat1] = STATE(513), - [sym__newline] = ACTIONS(850), - [anon_sym_COMMA] = ACTIONS(866), - [anon_sym_EQ] = ACTIONS(852), - [anon_sym_PLUS_EQ] = ACTIONS(852), - [anon_sym_DASH_EQ] = ACTIONS(852), - [anon_sym_STAR_EQ] = ACTIONS(852), - [anon_sym_SLASH_EQ] = ACTIONS(852), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(852), - [anon_sym_PERCENT_EQ] = ACTIONS(852), - [anon_sym_STAR_STAR_EQ] = ACTIONS(852), - [anon_sym_GT_GT_EQ] = ACTIONS(852), - [anon_sym_LT_LT_EQ] = ACTIONS(852), - [anon_sym_AMP_EQ] = ACTIONS(852), - [anon_sym_CARET_EQ] = ACTIONS(852), - [anon_sym_PIPE_EQ] = ACTIONS(852), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(850), + [181] = { + [aux_sym_print_statement_repeat1] = STATE(541), + [sym__newline] = ACTIONS(886), + [anon_sym_COMMA] = ACTIONS(902), + [anon_sym_EQ] = ACTIONS(888), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(886), }, - [176] = { - [sym_identifier] = ACTIONS(868), + [182] = { + [sym_identifier] = ACTIONS(904), [sym_comment] = ACTIONS(76), }, - [177] = { - [sym_list_splat] = STATE(520), - [sym_dictionary_splat] = STATE(520), - [sym__expression] = STATE(521), + [183] = { + [sym_list_splat] = STATE(548), + [sym_dictionary_splat] = STATE(548), + [sym__expression] = STATE(549), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -14007,7 +14343,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_keyword_argument] = STATE(520), + [sym_keyword_argument] = STATE(548), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -14021,11 +14357,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(870), - [anon_sym_COMMA] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_print] = ACTIONS(876), - [anon_sym_exec] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(906), + [anon_sym_COMMA] = ACTIONS(908), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), [anon_sym_not] = ACTIONS(92), [anon_sym_PLUS] = ACTIONS(94), [anon_sym_DASH] = ACTIONS(94), @@ -14037,15 +14373,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string] = ACTIONS(106), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(878), + [sym_identifier] = ACTIONS(914), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), [anon_sym_await] = ACTIONS(112), [sym_comment] = ACTIONS(76), }, - [178] = { - [sym__primary_expression] = STATE(522), + [184] = { + [sym__primary_expression] = STATE(550), [sym_binary_operator] = STATE(28), [sym_unary_operator] = STATE(28), [sym_attribute] = STATE(28), @@ -14062,8 +14398,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_generator_expression] = STATE(28), [sym_concatenated_string] = STATE(28), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), [anon_sym_TILDE] = ACTIONS(56), @@ -14079,8 +14415,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(70), [sym_comment] = ACTIONS(76), }, - [179] = { - [sym__primary_expression] = STATE(523), + [185] = { + [sym__primary_expression] = STATE(551), [sym_binary_operator] = STATE(28), [sym_unary_operator] = STATE(28), [sym_attribute] = STATE(28), @@ -14097,8 +14433,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_generator_expression] = STATE(28), [sym_concatenated_string] = STATE(28), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), [anon_sym_TILDE] = ACTIONS(56), @@ -14114,8 +14450,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(70), [sym_comment] = ACTIONS(76), }, - [180] = { - [sym__primary_expression] = STATE(524), + [186] = { + [sym__primary_expression] = STATE(552), [sym_binary_operator] = STATE(28), [sym_unary_operator] = STATE(28), [sym_attribute] = STATE(28), @@ -14132,8 +14468,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_generator_expression] = STATE(28), [sym_concatenated_string] = STATE(28), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), [anon_sym_TILDE] = ACTIONS(56), @@ -14149,12 +14485,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(70), [sym_comment] = ACTIONS(76), }, - [181] = { - [anon_sym_in] = ACTIONS(880), + [187] = { + [anon_sym_in] = ACTIONS(916), [sym_comment] = ACTIONS(76), }, - [182] = { - [sym__primary_expression] = STATE(526), + [188] = { + [sym__primary_expression] = STATE(554), [sym_binary_operator] = STATE(28), [sym_unary_operator] = STATE(28), [sym_attribute] = STATE(28), @@ -14171,8 +14507,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_generator_expression] = STATE(28), [sym_concatenated_string] = STATE(28), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), [anon_sym_TILDE] = ACTIONS(56), @@ -14188,8 +14524,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(70), [sym_comment] = ACTIONS(76), }, - [183] = { - [sym__primary_expression] = STATE(527), + [189] = { + [sym__primary_expression] = STATE(555), [sym_binary_operator] = STATE(28), [sym_unary_operator] = STATE(28), [sym_attribute] = STATE(28), @@ -14206,8 +14542,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_generator_expression] = STATE(28), [sym_concatenated_string] = STATE(28), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), [anon_sym_TILDE] = ACTIONS(56), @@ -14223,8 +14559,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(70), [sym_comment] = ACTIONS(76), }, - [184] = { - [sym__primary_expression] = STATE(528), + [190] = { + [sym__primary_expression] = STATE(556), [sym_binary_operator] = STATE(28), [sym_unary_operator] = STATE(28), [sym_attribute] = STATE(28), @@ -14241,8 +14577,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_generator_expression] = STATE(28), [sym_concatenated_string] = STATE(28), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), [anon_sym_TILDE] = ACTIONS(56), @@ -14258,8 +14594,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(70), [sym_comment] = ACTIONS(76), }, - [185] = { - [sym__primary_expression] = STATE(529), + [191] = { + [sym__primary_expression] = STATE(557), [sym_binary_operator] = STATE(28), [sym_unary_operator] = STATE(28), [sym_attribute] = STATE(28), @@ -14276,8 +14612,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_generator_expression] = STATE(28), [sym_concatenated_string] = STATE(28), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), [anon_sym_TILDE] = ACTIONS(56), @@ -14293,8 +14629,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(70), [sym_comment] = ACTIONS(76), }, - [186] = { - [sym__primary_expression] = STATE(530), + [192] = { + [sym__primary_expression] = STATE(558), [sym_binary_operator] = STATE(28), [sym_unary_operator] = STATE(28), [sym_attribute] = STATE(28), @@ -14311,8 +14647,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_generator_expression] = STATE(28), [sym_concatenated_string] = STATE(28), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), [anon_sym_TILDE] = ACTIONS(56), @@ -14328,8 +14664,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(70), [sym_comment] = ACTIONS(76), }, - [187] = { - [sym__primary_expression] = STATE(524), + [193] = { + [sym__primary_expression] = STATE(552), [sym_binary_operator] = STATE(28), [sym_unary_operator] = STATE(28), [sym_attribute] = STATE(28), @@ -14346,9 +14682,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_generator_expression] = STATE(28), [sym_concatenated_string] = STATE(28), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), - [anon_sym_not] = ACTIONS(882), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), + [anon_sym_not] = ACTIONS(918), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), [anon_sym_TILDE] = ACTIONS(56), @@ -14364,9 +14700,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(70), [sym_comment] = ACTIONS(76), }, - [188] = { - [sym__expression] = STATE(537), - [sym__primary_expression] = STATE(538), + [194] = { + [sym__expression] = STATE(565), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -14375,7 +14711,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_lambda] = STATE(67), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), - [sym_slice] = STATE(539), + [sym_slice] = STATE(567), [sym_call] = STATE(61), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), @@ -14391,107 +14727,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(920), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [189] = { - [sym__newline] = ACTIONS(896), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_COMMA] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_GT_GT] = ACTIONS(898), - [anon_sym_if] = ACTIONS(896), - [anon_sym_in] = ACTIONS(896), - [anon_sym_EQ] = ACTIONS(898), - [anon_sym_not] = ACTIONS(896), - [anon_sym_and] = ACTIONS(896), - [anon_sym_or] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_SLASH] = ACTIONS(898), - [anon_sym_PERCENT] = ACTIONS(898), - [anon_sym_SLASH_SLASH] = ACTIONS(898), - [anon_sym_STAR_STAR] = ACTIONS(898), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_CARET] = ACTIONS(898), - [anon_sym_LT_LT] = ACTIONS(898), - [anon_sym_LT] = ACTIONS(898), - [anon_sym_LT_EQ] = ACTIONS(896), - [anon_sym_EQ_EQ] = ACTIONS(896), - [anon_sym_BANG_EQ] = ACTIONS(896), - [anon_sym_GT_EQ] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_LT_GT] = ACTIONS(896), - [anon_sym_is] = ACTIONS(896), - [anon_sym_PLUS_EQ] = ACTIONS(896), - [anon_sym_DASH_EQ] = ACTIONS(896), - [anon_sym_STAR_EQ] = ACTIONS(896), - [anon_sym_SLASH_EQ] = ACTIONS(896), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(896), - [anon_sym_PERCENT_EQ] = ACTIONS(896), - [anon_sym_STAR_STAR_EQ] = ACTIONS(896), - [anon_sym_GT_GT_EQ] = ACTIONS(896), - [anon_sym_LT_LT_EQ] = ACTIONS(896), - [anon_sym_AMP_EQ] = ACTIONS(896), - [anon_sym_CARET_EQ] = ACTIONS(896), - [anon_sym_PIPE_EQ] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(896), + [195] = { + [sym__newline] = ACTIONS(932), + [anon_sym_DOT] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_COMMA] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_GT_GT] = ACTIONS(934), + [anon_sym_if] = ACTIONS(932), + [anon_sym_in] = ACTIONS(932), + [anon_sym_EQ] = ACTIONS(934), + [anon_sym_not] = ACTIONS(932), + [anon_sym_and] = ACTIONS(932), + [anon_sym_or] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_PERCENT] = ACTIONS(934), + [anon_sym_SLASH_SLASH] = ACTIONS(934), + [anon_sym_STAR_STAR] = ACTIONS(934), + [anon_sym_PIPE] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_CARET] = ACTIONS(934), + [anon_sym_LT_LT] = ACTIONS(934), + [anon_sym_LT] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(932), + [anon_sym_EQ_EQ] = ACTIONS(932), + [anon_sym_BANG_EQ] = ACTIONS(932), + [anon_sym_GT_EQ] = ACTIONS(932), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_LT_GT] = ACTIONS(932), + [anon_sym_is] = ACTIONS(932), + [anon_sym_PLUS_EQ] = ACTIONS(932), + [anon_sym_DASH_EQ] = ACTIONS(932), + [anon_sym_STAR_EQ] = ACTIONS(932), + [anon_sym_SLASH_EQ] = ACTIONS(932), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(932), + [anon_sym_PERCENT_EQ] = ACTIONS(932), + [anon_sym_STAR_STAR_EQ] = ACTIONS(932), + [anon_sym_GT_GT_EQ] = ACTIONS(932), + [anon_sym_LT_LT_EQ] = ACTIONS(932), + [anon_sym_AMP_EQ] = ACTIONS(932), + [anon_sym_CARET_EQ] = ACTIONS(932), + [anon_sym_PIPE_EQ] = ACTIONS(932), + [anon_sym_LBRACK] = ACTIONS(932), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(932), }, - [190] = { - [aux_sym_comparison_operator_repeat1] = STATE(540), - [sym__newline] = ACTIONS(900), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_in] = ACTIONS(306), - [anon_sym_EQ] = ACTIONS(902), - [anon_sym_not] = ACTIONS(310), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(322), - [anon_sym_LT_EQ] = ACTIONS(306), - [anon_sym_EQ_EQ] = ACTIONS(306), - [anon_sym_BANG_EQ] = ACTIONS(306), - [anon_sym_GT_EQ] = ACTIONS(306), - [anon_sym_GT] = ACTIONS(322), - [anon_sym_LT_GT] = ACTIONS(306), - [anon_sym_is] = ACTIONS(324), - [anon_sym_PLUS_EQ] = ACTIONS(900), - [anon_sym_DASH_EQ] = ACTIONS(900), - [anon_sym_STAR_EQ] = ACTIONS(900), - [anon_sym_SLASH_EQ] = ACTIONS(900), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(900), - [anon_sym_PERCENT_EQ] = ACTIONS(900), - [anon_sym_STAR_STAR_EQ] = ACTIONS(900), - [anon_sym_GT_GT_EQ] = ACTIONS(900), - [anon_sym_LT_LT_EQ] = ACTIONS(900), - [anon_sym_AMP_EQ] = ACTIONS(900), - [anon_sym_CARET_EQ] = ACTIONS(900), - [anon_sym_PIPE_EQ] = ACTIONS(900), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(900), + [196] = { + [aux_sym_comparison_operator_repeat1] = STATE(568), + [sym__newline] = ACTIONS(936), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_in] = ACTIONS(320), + [anon_sym_EQ] = ACTIONS(938), + [anon_sym_not] = ACTIONS(324), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(336), + [anon_sym_LT_GT] = ACTIONS(320), + [anon_sym_is] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(936), + [anon_sym_DASH_EQ] = ACTIONS(936), + [anon_sym_STAR_EQ] = ACTIONS(936), + [anon_sym_SLASH_EQ] = ACTIONS(936), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(936), + [anon_sym_PERCENT_EQ] = ACTIONS(936), + [anon_sym_STAR_STAR_EQ] = ACTIONS(936), + [anon_sym_GT_GT_EQ] = ACTIONS(936), + [anon_sym_LT_LT_EQ] = ACTIONS(936), + [anon_sym_AMP_EQ] = ACTIONS(936), + [anon_sym_CARET_EQ] = ACTIONS(936), + [anon_sym_PIPE_EQ] = ACTIONS(936), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(936), }, - [191] = { + [197] = { [sym__statement] = STATE(33), [sym__simple_statements] = STATE(34), [sym_import_statement] = STATE(10), @@ -14543,424 +14879,330 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(191), + [aux_sym_module_repeat1] = STATE(197), [aux_sym_decorated_definition_repeat1] = STATE(43), - [ts_builtin_sym_end] = ACTIONS(904), - [anon_sym_import] = ACTIONS(906), - [anon_sym_from] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_print] = ACTIONS(915), - [anon_sym_assert] = ACTIONS(918), - [anon_sym_return] = ACTIONS(921), - [anon_sym_del] = ACTIONS(924), - [anon_sym_raise] = ACTIONS(927), - [sym_pass_statement] = ACTIONS(930), - [sym_break_statement] = ACTIONS(930), - [sym_continue_statement] = ACTIONS(930), - [anon_sym_if] = ACTIONS(933), - [anon_sym_for] = ACTIONS(936), - [anon_sym_while] = ACTIONS(939), - [anon_sym_try] = ACTIONS(942), - [anon_sym_with] = ACTIONS(945), - [anon_sym_async] = ACTIONS(948), - [anon_sym_def] = ACTIONS(951), - [anon_sym_global] = ACTIONS(954), - [anon_sym_nonlocal] = ACTIONS(957), - [anon_sym_exec] = ACTIONS(960), - [anon_sym_class] = ACTIONS(963), - [anon_sym_AT] = ACTIONS(966), - [anon_sym_not] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_lambda] = ACTIONS(975), - [anon_sym_yield] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(981), - [sym_ellipsis] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(987), - [sym_string] = ACTIONS(990), - [sym_integer] = ACTIONS(993), - [sym_float] = ACTIONS(993), - [sym_identifier] = ACTIONS(996), - [sym_true] = ACTIONS(993), - [sym_false] = ACTIONS(993), - [sym_none] = ACTIONS(993), - [anon_sym_await] = ACTIONS(999), - [sym_comment] = ACTIONS(76), - }, - [192] = { - [ts_builtin_sym_end] = ACTIONS(1002), - [anon_sym_import] = ACTIONS(1004), - [anon_sym_from] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_print] = ACTIONS(1004), - [anon_sym_assert] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_del] = ACTIONS(1004), - [anon_sym_raise] = ACTIONS(1004), - [sym_pass_statement] = ACTIONS(1004), - [sym_break_statement] = ACTIONS(1004), - [sym_continue_statement] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_with] = ACTIONS(1004), - [anon_sym_async] = ACTIONS(1004), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_global] = ACTIONS(1004), - [anon_sym_nonlocal] = ACTIONS(1004), - [anon_sym_exec] = ACTIONS(1004), - [anon_sym_class] = ACTIONS(1004), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_from] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_print] = ACTIONS(951), + [anon_sym_assert] = ACTIONS(954), + [anon_sym_return] = ACTIONS(957), + [anon_sym_del] = ACTIONS(960), + [anon_sym_raise] = ACTIONS(963), + [sym_pass_statement] = ACTIONS(966), + [sym_break_statement] = ACTIONS(966), + [sym_continue_statement] = ACTIONS(966), + [anon_sym_if] = ACTIONS(969), + [anon_sym_for] = ACTIONS(972), + [anon_sym_while] = ACTIONS(975), + [anon_sym_try] = ACTIONS(978), + [anon_sym_with] = ACTIONS(981), + [anon_sym_async] = ACTIONS(984), + [anon_sym_def] = ACTIONS(987), + [anon_sym_global] = ACTIONS(990), + [anon_sym_nonlocal] = ACTIONS(993), + [anon_sym_exec] = ACTIONS(996), + [anon_sym_class] = ACTIONS(999), [anon_sym_AT] = ACTIONS(1002), - [anon_sym_not] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_lambda] = ACTIONS(1004), - [anon_sym_yield] = ACTIONS(1004), - [anon_sym_LBRACK] = ACTIONS(1002), - [sym_ellipsis] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1002), - [sym_string] = ACTIONS(1004), - [sym_integer] = ACTIONS(1004), - [sym_float] = ACTIONS(1004), - [sym_identifier] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_none] = ACTIONS(1004), - [anon_sym_await] = ACTIONS(1004), - [sym_comment] = ACTIONS(76), - }, - [193] = { - [sym_decorator] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(193), - [anon_sym_async] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1008), - [anon_sym_class] = ACTIONS(1008), - [anon_sym_AT] = ACTIONS(1010), - [sym_comment] = ACTIONS(76), - }, - [194] = { - [sym_identifier] = ACTIONS(1013), - [sym_comment] = ACTIONS(76), - }, - [195] = { - [aux_sym_dotted_name_repeat1] = STATE(542), - [sym__newline] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(336), - [anon_sym_COMMA] = ACTIONS(1015), - [anon_sym_as] = ACTIONS(1015), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1015), - }, - [196] = { - [sym_aliased_import] = STATE(543), - [sym_dotted_name] = STATE(544), - [sym__newline] = ACTIONS(1017), - [sym_identifier] = ACTIONS(78), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1017), - }, - [197] = { - [aux_sym__import_list_repeat1] = STATE(546), - [sym__newline] = ACTIONS(1017), - [anon_sym_COMMA] = ACTIONS(1019), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_TILDE] = ACTIONS(1008), + [anon_sym_lambda] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1017), + [sym_ellipsis] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1023), + [sym_string] = ACTIONS(1026), + [sym_integer] = ACTIONS(1029), + [sym_float] = ACTIONS(1029), + [sym_identifier] = ACTIONS(1032), + [sym_true] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [sym_none] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(1035), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1017), }, [198] = { - [sym_identifier] = ACTIONS(1021), + [ts_builtin_sym_end] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_print] = ACTIONS(1040), + [anon_sym_assert] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_del] = ACTIONS(1040), + [anon_sym_raise] = ACTIONS(1040), + [sym_pass_statement] = ACTIONS(1040), + [sym_break_statement] = ACTIONS(1040), + [sym_continue_statement] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_try] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1040), + [anon_sym_def] = ACTIONS(1040), + [anon_sym_global] = ACTIONS(1040), + [anon_sym_nonlocal] = ACTIONS(1040), + [anon_sym_exec] = ACTIONS(1040), + [anon_sym_class] = ACTIONS(1040), + [anon_sym_AT] = ACTIONS(1038), + [anon_sym_not] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_lambda] = ACTIONS(1040), + [anon_sym_yield] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1038), + [sym_ellipsis] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [sym_string] = ACTIONS(1040), + [sym_integer] = ACTIONS(1040), + [sym_float] = ACTIONS(1040), + [sym_identifier] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_none] = ACTIONS(1040), + [anon_sym_await] = ACTIONS(1040), [sym_comment] = ACTIONS(76), }, [199] = { - [sym_identifier] = ACTIONS(1023), + [sym_decorator] = STATE(36), + [aux_sym_decorated_definition_repeat1] = STATE(199), + [anon_sym_async] = ACTIONS(1044), + [anon_sym_def] = ACTIONS(1044), + [anon_sym_class] = ACTIONS(1044), + [anon_sym_AT] = ACTIONS(1046), [sym_comment] = ACTIONS(76), }, [200] = { - [aux_sym_dotted_name_repeat1] = STATE(549), - [anon_sym_import] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(352), + [sym_identifier] = ACTIONS(1049), [sym_comment] = ACTIONS(76), }, [201] = { - [sym__import_list] = STATE(552), - [sym_aliased_import] = STATE(46), - [sym_wildcard_import] = STATE(552), - [sym_dotted_name] = STATE(47), - [anon_sym_LPAREN] = ACTIONS(1025), - [anon_sym_STAR] = ACTIONS(1027), - [sym_identifier] = ACTIONS(78), + [aux_sym_dotted_name_repeat1] = STATE(570), + [sym__newline] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(350), + [anon_sym_COMMA] = ACTIONS(1051), + [anon_sym_as] = ACTIONS(1051), [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1051), }, [202] = { - [anon_sym_import] = ACTIONS(1029), + [sym_aliased_import] = STATE(571), + [sym_dotted_name] = STATE(572), + [sym__newline] = ACTIONS(1053), + [sym_identifier] = ACTIONS(78), [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1053), }, [203] = { - [aux_sym_import_from_statement_repeat1] = STATE(203), - [anon_sym_import] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(1033), - [sym_identifier] = ACTIONS(1036), + [aux_sym__import_list_repeat1] = STATE(574), + [sym__newline] = ACTIONS(1053), + [anon_sym_COMMA] = ACTIONS(1055), [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1053), }, [204] = { - [anon_sym_DOT] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_RPAREN] = ACTIONS(364), - [anon_sym_COMMA] = ACTIONS(364), - [anon_sym_as] = ACTIONS(364), - [anon_sym_STAR] = ACTIONS(366), - [anon_sym_GT_GT] = ACTIONS(364), - [anon_sym_if] = ACTIONS(364), - [anon_sym_COLON] = ACTIONS(364), - [anon_sym_else] = ACTIONS(364), - [anon_sym_for] = ACTIONS(364), - [anon_sym_in] = ACTIONS(364), - [anon_sym_EQ] = ACTIONS(366), - [anon_sym_not] = ACTIONS(364), - [anon_sym_and] = ACTIONS(364), - [anon_sym_or] = ACTIONS(364), - [anon_sym_PLUS] = ACTIONS(364), - [anon_sym_DASH] = ACTIONS(364), - [anon_sym_SLASH] = ACTIONS(366), - [anon_sym_PERCENT] = ACTIONS(364), - [anon_sym_SLASH_SLASH] = ACTIONS(364), - [anon_sym_STAR_STAR] = ACTIONS(364), - [anon_sym_PIPE] = ACTIONS(364), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_LT_LT] = ACTIONS(364), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_LT_EQ] = ACTIONS(364), - [anon_sym_EQ_EQ] = ACTIONS(364), - [anon_sym_BANG_EQ] = ACTIONS(364), - [anon_sym_GT_EQ] = ACTIONS(364), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT_GT] = ACTIONS(364), - [anon_sym_is] = ACTIONS(364), - [anon_sym_LBRACK] = ACTIONS(364), - [anon_sym_RBRACK] = ACTIONS(364), - [anon_sym_RBRACE] = ACTIONS(364), + [sym_identifier] = ACTIONS(1057), [sym_comment] = ACTIONS(76), }, [205] = { - [anon_sym_RPAREN] = ACTIONS(1038), + [sym_identifier] = ACTIONS(1059), [sym_comment] = ACTIONS(76), }, [206] = { - [sym__comprehension_body] = STATE(557), - [sym_for_in_clause] = STATE(242), - [aux_sym_tuple_repeat1] = STATE(558), - [anon_sym_RPAREN] = ACTIONS(1040), - [anon_sym_COMMA] = ACTIONS(1042), - [anon_sym_if] = ACTIONS(398), - [anon_sym_for] = ACTIONS(400), - [anon_sym_and] = ACTIONS(402), - [anon_sym_or] = ACTIONS(404), + [aux_sym_dotted_name_repeat1] = STATE(577), + [anon_sym_import] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(366), [sym_comment] = ACTIONS(76), }, [207] = { - [aux_sym_tuple_repeat1] = STATE(558), - [anon_sym_RPAREN] = ACTIONS(1040), - [anon_sym_COMMA] = ACTIONS(1042), + [sym__import_list] = STATE(580), + [sym_aliased_import] = STATE(46), + [sym_wildcard_import] = STATE(580), + [sym_dotted_name] = STATE(47), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1063), + [sym_identifier] = ACTIONS(78), [sym_comment] = ACTIONS(76), }, [208] = { - [sym__newline] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_not] = ACTIONS(1044), - [anon_sym_and] = ACTIONS(1044), - [anon_sym_or] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH_SLASH] = ACTIONS(1046), - [anon_sym_STAR_STAR] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_GT] = ACTIONS(1044), - [anon_sym_is] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1044), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1044), + [anon_sym_import] = ACTIONS(1065), + [sym_comment] = ACTIONS(76), }, [209] = { - [anon_sym_RPAREN] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_for] = ACTIONS(690), - [anon_sym_and] = ACTIONS(402), - [anon_sym_or] = ACTIONS(404), + [aux_sym_import_from_statement_repeat1] = STATE(209), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_DOT] = ACTIONS(1069), + [sym_identifier] = ACTIONS(1072), [sym_comment] = ACTIONS(76), }, [210] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(692), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(692), - [anon_sym_as] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_COLON] = ACTIONS(692), - [anon_sym_else] = ACTIONS(692), - [anon_sym_for] = ACTIONS(692), - [anon_sym_in] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(694), - [anon_sym_not] = ACTIONS(692), - [anon_sym_and] = ACTIONS(692), - [anon_sym_or] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_SLASH_SLASH] = ACTIONS(692), - [anon_sym_STAR_STAR] = ACTIONS(692), - [anon_sym_PIPE] = ACTIONS(692), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_CARET] = ACTIONS(692), - [anon_sym_LT_LT] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(692), - [anon_sym_EQ_EQ] = ACTIONS(692), - [anon_sym_BANG_EQ] = ACTIONS(692), - [anon_sym_GT_EQ] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_LT_GT] = ACTIONS(692), - [anon_sym_is] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(692), - [anon_sym_RBRACK] = ACTIONS(692), - [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(378), + [anon_sym_LPAREN] = ACTIONS(378), + [anon_sym_RPAREN] = ACTIONS(378), + [anon_sym_COMMA] = ACTIONS(378), + [anon_sym_as] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_if] = ACTIONS(378), + [anon_sym_COLON] = ACTIONS(378), + [anon_sym_else] = ACTIONS(378), + [anon_sym_for] = ACTIONS(378), + [anon_sym_in] = ACTIONS(378), + [anon_sym_EQ] = ACTIONS(380), + [anon_sym_not] = ACTIONS(378), + [anon_sym_and] = ACTIONS(378), + [anon_sym_or] = ACTIONS(378), + [anon_sym_PLUS] = ACTIONS(378), + [anon_sym_DASH] = ACTIONS(378), + [anon_sym_SLASH] = ACTIONS(380), + [anon_sym_PERCENT] = ACTIONS(378), + [anon_sym_SLASH_SLASH] = ACTIONS(378), + [anon_sym_STAR_STAR] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(378), + [anon_sym_AMP] = ACTIONS(378), + [anon_sym_CARET] = ACTIONS(378), + [anon_sym_LT_LT] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(378), + [anon_sym_EQ_EQ] = ACTIONS(378), + [anon_sym_BANG_EQ] = ACTIONS(378), + [anon_sym_GT_EQ] = ACTIONS(378), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_LT_GT] = ACTIONS(378), + [anon_sym_is] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(378), + [anon_sym_RBRACK] = ACTIONS(378), + [anon_sym_RBRACE] = ACTIONS(378), [sym_comment] = ACTIONS(76), }, [211] = { - [sym__expression] = STATE(559), - [sym__primary_expression] = STATE(66), - [sym_not_operator] = STATE(67), - [sym_boolean_operator] = STATE(67), - [sym_binary_operator] = STATE(61), - [sym_unary_operator] = STATE(61), - [sym_comparison_operator] = STATE(67), - [sym_lambda] = STATE(67), - [sym_attribute] = STATE(61), - [sym_subscript] = STATE(61), - [sym_call] = STATE(61), - [sym_list] = STATE(61), - [sym_list_comprehension] = STATE(61), - [sym_dictionary] = STATE(61), - [sym_dictionary_comprehension] = STATE(61), - [sym_set] = STATE(61), - [sym_set_comprehension] = STATE(61), - [sym_parenthesized_expression] = STATE(61), - [sym_tuple] = STATE(61), - [sym_generator_expression] = STATE(61), - [sym_conditional_expression] = STATE(67), - [sym_concatenated_string] = STATE(61), - [sym_await] = STATE(67), - [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_print] = ACTIONS(90), - [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(92), - [anon_sym_PLUS] = ACTIONS(94), - [anon_sym_DASH] = ACTIONS(94), - [anon_sym_TILDE] = ACTIONS(94), - [anon_sym_lambda] = ACTIONS(96), - [anon_sym_LBRACK] = ACTIONS(100), - [sym_ellipsis] = ACTIONS(102), - [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(106), - [sym_integer] = ACTIONS(108), - [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(110), - [sym_true] = ACTIONS(108), - [sym_false] = ACTIONS(108), - [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(112), + [anon_sym_RPAREN] = ACTIONS(1074), [sym_comment] = ACTIONS(76), }, [212] = { - [anon_sym_COLON] = ACTIONS(1048), + [sym__comprehension_body] = STATE(585), + [sym_for_in_clause] = STATE(248), + [aux_sym_tuple_repeat1] = STATE(586), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(412), + [anon_sym_for] = ACTIONS(414), + [anon_sym_and] = ACTIONS(416), + [anon_sym_or] = ACTIONS(418), [sym_comment] = ACTIONS(76), }, [213] = { - [sym__expression] = STATE(561), - [sym__primary_expression] = STATE(221), - [sym_not_operator] = STATE(67), - [sym_boolean_operator] = STATE(67), - [sym_binary_operator] = STATE(61), - [sym_unary_operator] = STATE(61), - [sym_comparison_operator] = STATE(67), - [sym_lambda] = STATE(67), - [sym_attribute] = STATE(61), - [sym_subscript] = STATE(61), - [sym_call] = STATE(61), - [sym_list] = STATE(61), - [sym_list_comprehension] = STATE(61), - [sym_dictionary] = STATE(61), - [sym_dictionary_comprehension] = STATE(61), - [sym_set] = STATE(61), - [sym_set_comprehension] = STATE(61), - [sym_parenthesized_expression] = STATE(61), - [sym_tuple] = STATE(61), - [sym_generator_expression] = STATE(61), - [sym_conditional_expression] = STATE(67), - [sym_concatenated_string] = STATE(61), - [sym_await] = STATE(67), - [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_print] = ACTIONS(90), - [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), - [anon_sym_LBRACK] = ACTIONS(100), - [sym_ellipsis] = ACTIONS(102), - [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), - [sym_integer] = ACTIONS(108), - [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(110), - [sym_true] = ACTIONS(108), - [sym_false] = ACTIONS(108), - [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [aux_sym_tuple_repeat1] = STATE(586), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1078), [sym_comment] = ACTIONS(76), }, [214] = { - [sym__expression] = STATE(562), - [sym__primary_expression] = STATE(221), + [sym__newline] = ACTIONS(1080), + [anon_sym_DOT] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_in] = ACTIONS(1080), + [anon_sym_EQ] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1080), + [anon_sym_and] = ACTIONS(1080), + [anon_sym_or] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_SLASH_SLASH] = ACTIONS(1082), + [anon_sym_STAR_STAR] = ACTIONS(1082), + [anon_sym_PIPE] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_CARET] = ACTIONS(1082), + [anon_sym_LT_LT] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(1080), + [anon_sym_BANG_EQ] = ACTIONS(1080), + [anon_sym_GT_EQ] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_LT_GT] = ACTIONS(1080), + [anon_sym_is] = ACTIONS(1080), + [anon_sym_PLUS_EQ] = ACTIONS(1080), + [anon_sym_DASH_EQ] = ACTIONS(1080), + [anon_sym_STAR_EQ] = ACTIONS(1080), + [anon_sym_SLASH_EQ] = ACTIONS(1080), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1080), + [anon_sym_PERCENT_EQ] = ACTIONS(1080), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1080), + [anon_sym_GT_GT_EQ] = ACTIONS(1080), + [anon_sym_LT_LT_EQ] = ACTIONS(1080), + [anon_sym_AMP_EQ] = ACTIONS(1080), + [anon_sym_CARET_EQ] = ACTIONS(1080), + [anon_sym_PIPE_EQ] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1080), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1080), + }, + [215] = { + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_and] = ACTIONS(416), + [anon_sym_or] = ACTIONS(418), + [sym_comment] = ACTIONS(76), + }, + [216] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(728), + [anon_sym_as] = ACTIONS(728), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_GT_GT] = ACTIONS(728), + [anon_sym_if] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(728), + [anon_sym_else] = ACTIONS(728), + [anon_sym_for] = ACTIONS(728), + [anon_sym_in] = ACTIONS(728), + [anon_sym_EQ] = ACTIONS(730), + [anon_sym_not] = ACTIONS(728), + [anon_sym_and] = ACTIONS(728), + [anon_sym_or] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_SLASH] = ACTIONS(730), + [anon_sym_PERCENT] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(728), + [anon_sym_STAR_STAR] = ACTIONS(728), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_AMP] = ACTIONS(728), + [anon_sym_CARET] = ACTIONS(728), + [anon_sym_LT_LT] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(728), + [anon_sym_EQ_EQ] = ACTIONS(728), + [anon_sym_BANG_EQ] = ACTIONS(728), + [anon_sym_GT_EQ] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_LT_GT] = ACTIONS(728), + [anon_sym_is] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(728), + [anon_sym_RBRACK] = ACTIONS(728), + [anon_sym_RBRACE] = ACTIONS(728), + [sym_comment] = ACTIONS(76), + }, + [217] = { + [sym__expression] = STATE(587), + [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -14985,28 +15227,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(92), + [anon_sym_PLUS] = ACTIONS(94), + [anon_sym_DASH] = ACTIONS(94), + [anon_sym_TILDE] = ACTIONS(94), + [anon_sym_lambda] = ACTIONS(96), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(106), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(112), [sym_comment] = ACTIONS(76), }, - [215] = { - [sym__primary_expression] = STATE(210), + [218] = { + [anon_sym_COLON] = ACTIONS(1084), + [sym_comment] = ACTIONS(76), + }, + [219] = { + [sym__expression] = STATE(589), + [sym__primary_expression] = STATE(227), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -15019,80 +15270,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(61), [sym_tuple] = STATE(61), [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [216] = { - [sym_lambda_parameters] = STATE(564), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), - [sym_comment] = ACTIONS(76), - }, - [217] = { - [aux_sym_concatenated_string_repeat1] = STATE(565), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_RPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(392), - [sym_comment] = ACTIONS(76), - }, - [218] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(221), + [220] = { + [sym__expression] = STATE(590), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -15117,363 +15321,495 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), - [sym_comment] = ACTIONS(76), - }, - [219] = { - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_COMMA] = ACTIONS(726), - [sym_comment] = ACTIONS(76), - }, - [220] = { - [aux_sym_print_statement_repeat1] = STATE(570), - [anon_sym_RPAREN] = ACTIONS(290), - [anon_sym_COMMA] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, [221] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(581), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1062), - [anon_sym_if] = ACTIONS(296), - [anon_sym_in] = ACTIONS(1064), - [anon_sym_not] = ACTIONS(1066), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_PERCENT] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_LT_LT] = ACTIONS(1062), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_LT_EQ] = ACTIONS(1064), - [anon_sym_EQ_EQ] = ACTIONS(1064), - [anon_sym_BANG_EQ] = ACTIONS(1064), - [anon_sym_GT_EQ] = ACTIONS(1064), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_LT_GT] = ACTIONS(1064), - [anon_sym_is] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(434), + [sym__primary_expression] = STATE(216), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_concatenated_string] = STATE(61), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(394), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, [222] = { - [anon_sym_RBRACK] = ACTIONS(1084), + [sym_lambda_parameters] = STATE(592), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(1086), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, [223] = { - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_as] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_GT_GT] = ACTIONS(742), - [anon_sym_if] = ACTIONS(742), - [anon_sym_COLON] = ACTIONS(742), - [anon_sym_else] = ACTIONS(742), - [anon_sym_for] = ACTIONS(742), - [anon_sym_in] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(744), - [anon_sym_not] = ACTIONS(742), - [anon_sym_and] = ACTIONS(742), - [anon_sym_or] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(744), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_SLASH_SLASH] = ACTIONS(742), - [anon_sym_STAR_STAR] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym_LT_LT] = ACTIONS(742), - [anon_sym_LT] = ACTIONS(744), - [anon_sym_LT_EQ] = ACTIONS(742), - [anon_sym_EQ_EQ] = ACTIONS(742), - [anon_sym_BANG_EQ] = ACTIONS(742), - [anon_sym_GT_EQ] = ACTIONS(742), - [anon_sym_GT] = ACTIONS(744), - [anon_sym_LT_GT] = ACTIONS(742), - [anon_sym_is] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(742), - [anon_sym_RBRACK] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), + [aux_sym_concatenated_string_repeat1] = STATE(593), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_RPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, [224] = { - [aux_sym_list_repeat1] = STATE(584), - [anon_sym_COMMA] = ACTIONS(1086), - [anon_sym_RBRACK] = ACTIONS(1084), + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(227), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(394), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, [225] = { - [sym__comprehension_body] = STATE(585), - [sym_for_in_clause] = STATE(447), - [aux_sym_list_repeat1] = STATE(584), - [anon_sym_COMMA] = ACTIONS(1086), - [anon_sym_if] = ACTIONS(748), - [anon_sym_for] = ACTIONS(750), - [anon_sym_and] = ACTIONS(752), - [anon_sym_or] = ACTIONS(754), - [anon_sym_RBRACK] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(762), + [anon_sym_COMMA] = ACTIONS(762), [sym_comment] = ACTIONS(76), }, [226] = { - [anon_sym_RBRACE] = ACTIONS(1088), + [aux_sym_print_statement_repeat1] = STATE(598), + [anon_sym_RPAREN] = ACTIONS(304), + [anon_sym_COMMA] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, [227] = { - [anon_sym_DOT] = ACTIONS(796), - [anon_sym_LPAREN] = ACTIONS(796), - [anon_sym_RPAREN] = ACTIONS(796), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_as] = ACTIONS(796), - [anon_sym_STAR] = ACTIONS(798), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_if] = ACTIONS(796), - [anon_sym_COLON] = ACTIONS(796), - [anon_sym_else] = ACTIONS(796), - [anon_sym_for] = ACTIONS(796), - [anon_sym_in] = ACTIONS(796), - [anon_sym_EQ] = ACTIONS(798), - [anon_sym_not] = ACTIONS(796), - [anon_sym_and] = ACTIONS(796), - [anon_sym_or] = ACTIONS(796), - [anon_sym_PLUS] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_SLASH] = ACTIONS(798), - [anon_sym_PERCENT] = ACTIONS(796), - [anon_sym_SLASH_SLASH] = ACTIONS(796), - [anon_sym_STAR_STAR] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_CARET] = ACTIONS(796), - [anon_sym_LT_LT] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(798), - [anon_sym_LT_EQ] = ACTIONS(796), - [anon_sym_EQ_EQ] = ACTIONS(796), - [anon_sym_BANG_EQ] = ACTIONS(796), - [anon_sym_GT_EQ] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(798), - [anon_sym_LT_GT] = ACTIONS(796), - [anon_sym_is] = ACTIONS(796), - [anon_sym_LBRACK] = ACTIONS(796), - [anon_sym_RBRACK] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(796), + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(609), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(310), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_GT_GT] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(310), + [anon_sym_in] = ACTIONS(1100), + [anon_sym_not] = ACTIONS(1102), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_SLASH] = ACTIONS(1096), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_SLASH_SLASH] = ACTIONS(1106), + [anon_sym_STAR_STAR] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_CARET] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1116), + [anon_sym_LT_EQ] = ACTIONS(1100), + [anon_sym_EQ_EQ] = ACTIONS(1100), + [anon_sym_BANG_EQ] = ACTIONS(1100), + [anon_sym_GT_EQ] = ACTIONS(1100), + [anon_sym_GT] = ACTIONS(1116), + [anon_sym_LT_GT] = ACTIONS(1100), + [anon_sym_is] = ACTIONS(1118), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, [228] = { - [aux_sym_list_repeat1] = STATE(589), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1120), [sym_comment] = ACTIONS(76), }, [229] = { - [aux_sym_dictionary_repeat1] = STATE(591), - [anon_sym_COMMA] = ACTIONS(1094), - [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(778), + [anon_sym_RPAREN] = ACTIONS(778), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_as] = ACTIONS(778), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_GT_GT] = ACTIONS(778), + [anon_sym_if] = ACTIONS(778), + [anon_sym_COLON] = ACTIONS(778), + [anon_sym_else] = ACTIONS(778), + [anon_sym_for] = ACTIONS(778), + [anon_sym_in] = ACTIONS(778), + [anon_sym_EQ] = ACTIONS(780), + [anon_sym_not] = ACTIONS(778), + [anon_sym_and] = ACTIONS(778), + [anon_sym_or] = ACTIONS(778), + [anon_sym_PLUS] = ACTIONS(778), + [anon_sym_DASH] = ACTIONS(778), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_PERCENT] = ACTIONS(778), + [anon_sym_SLASH_SLASH] = ACTIONS(778), + [anon_sym_STAR_STAR] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), + [anon_sym_CARET] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_LT] = ACTIONS(780), + [anon_sym_LT_EQ] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(778), + [anon_sym_BANG_EQ] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_GT] = ACTIONS(780), + [anon_sym_LT_GT] = ACTIONS(778), + [anon_sym_is] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(778), + [anon_sym_RBRACK] = ACTIONS(778), + [anon_sym_RBRACE] = ACTIONS(778), [sym_comment] = ACTIONS(76), }, [230] = { - [sym__comprehension_body] = STATE(592), - [sym_for_in_clause] = STATE(483), - [aux_sym_list_repeat1] = STATE(589), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_if] = ACTIONS(806), - [anon_sym_COLON] = ACTIONS(808), - [anon_sym_for] = ACTIONS(810), - [anon_sym_and] = ACTIONS(812), - [anon_sym_or] = ACTIONS(814), - [anon_sym_RBRACE] = ACTIONS(1092), + [aux_sym_list_repeat1] = STATE(612), + [anon_sym_COMMA] = ACTIONS(1122), + [anon_sym_RBRACK] = ACTIONS(1120), [sym_comment] = ACTIONS(76), }, [231] = { - [sym__comprehension_body] = STATE(593), - [sym_for_in_clause] = STATE(483), - [aux_sym_dictionary_repeat1] = STATE(591), - [anon_sym_COMMA] = ACTIONS(1094), - [anon_sym_for] = ACTIONS(810), - [anon_sym_RBRACE] = ACTIONS(1088), + [sym__comprehension_body] = STATE(613), + [sym_for_in_clause] = STATE(475), + [aux_sym_list_repeat1] = STATE(612), + [anon_sym_COMMA] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(784), + [anon_sym_for] = ACTIONS(786), + [anon_sym_and] = ACTIONS(788), + [anon_sym_or] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1120), [sym_comment] = ACTIONS(76), }, [232] = { - [anon_sym_DOT] = ACTIONS(840), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_RPAREN] = ACTIONS(840), - [anon_sym_COMMA] = ACTIONS(840), - [anon_sym_as] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_GT_GT] = ACTIONS(840), - [anon_sym_if] = ACTIONS(840), - [anon_sym_COLON] = ACTIONS(840), - [anon_sym_else] = ACTIONS(840), - [anon_sym_for] = ACTIONS(840), - [anon_sym_in] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(842), - [anon_sym_not] = ACTIONS(840), - [anon_sym_and] = ACTIONS(840), - [anon_sym_or] = ACTIONS(840), - [anon_sym_PLUS] = ACTIONS(840), - [anon_sym_DASH] = ACTIONS(840), - [anon_sym_SLASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(840), - [anon_sym_SLASH_SLASH] = ACTIONS(840), - [anon_sym_STAR_STAR] = ACTIONS(840), - [anon_sym_PIPE] = ACTIONS(840), - [anon_sym_AMP] = ACTIONS(840), - [anon_sym_CARET] = ACTIONS(840), - [anon_sym_LT_LT] = ACTIONS(840), - [anon_sym_LT] = ACTIONS(842), - [anon_sym_LT_EQ] = ACTIONS(840), - [anon_sym_EQ_EQ] = ACTIONS(840), - [anon_sym_BANG_EQ] = ACTIONS(840), - [anon_sym_GT_EQ] = ACTIONS(840), - [anon_sym_GT] = ACTIONS(842), - [anon_sym_LT_GT] = ACTIONS(840), - [anon_sym_is] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_RBRACK] = ACTIONS(840), - [anon_sym_RBRACE] = ACTIONS(840), - [sym_string] = ACTIONS(842), + [anon_sym_RBRACE] = ACTIONS(1124), [sym_comment] = ACTIONS(76), }, [233] = { - [aux_sym_concatenated_string_repeat1] = STATE(594), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_RPAREN] = ACTIONS(832), + [anon_sym_COMMA] = ACTIONS(832), + [anon_sym_as] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_if] = ACTIONS(832), + [anon_sym_COLON] = ACTIONS(832), + [anon_sym_else] = ACTIONS(832), + [anon_sym_for] = ACTIONS(832), + [anon_sym_in] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_not] = ACTIONS(832), + [anon_sym_and] = ACTIONS(832), + [anon_sym_or] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(832), + [anon_sym_SLASH_SLASH] = ACTIONS(832), + [anon_sym_STAR_STAR] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_CARET] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_LT_EQ] = ACTIONS(832), + [anon_sym_EQ_EQ] = ACTIONS(832), + [anon_sym_BANG_EQ] = ACTIONS(832), + [anon_sym_GT_EQ] = ACTIONS(832), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_LT_GT] = ACTIONS(832), + [anon_sym_is] = ACTIONS(832), + [anon_sym_LBRACK] = ACTIONS(832), + [anon_sym_RBRACK] = ACTIONS(832), + [anon_sym_RBRACE] = ACTIONS(832), [sym_comment] = ACTIONS(76), }, [234] = { - [anon_sym_RPAREN] = ACTIONS(848), - [anon_sym_COMMA] = ACTIONS(848), - [anon_sym_as] = ACTIONS(848), - [anon_sym_if] = ACTIONS(848), - [anon_sym_COLON] = ACTIONS(848), - [anon_sym_else] = ACTIONS(848), - [anon_sym_for] = ACTIONS(848), - [anon_sym_EQ] = ACTIONS(848), - [anon_sym_and] = ACTIONS(848), - [anon_sym_or] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(848), - [anon_sym_RBRACE] = ACTIONS(848), + [aux_sym_list_repeat1] = STATE(617), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1128), [sym_comment] = ACTIONS(76), }, [235] = { - [sym__newline] = ACTIONS(1096), - [anon_sym_DOT] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1096), - [anon_sym_COMMA] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_in] = ACTIONS(1096), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1096), - [anon_sym_and] = ACTIONS(1096), - [anon_sym_or] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_SLASH_SLASH] = ACTIONS(1098), - [anon_sym_STAR_STAR] = ACTIONS(1098), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1096), - [anon_sym_BANG_EQ] = ACTIONS(1096), - [anon_sym_GT_EQ] = ACTIONS(1096), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_GT] = ACTIONS(1096), - [anon_sym_is] = ACTIONS(1096), - [anon_sym_PLUS_EQ] = ACTIONS(1096), - [anon_sym_DASH_EQ] = ACTIONS(1096), - [anon_sym_STAR_EQ] = ACTIONS(1096), - [anon_sym_SLASH_EQ] = ACTIONS(1096), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1096), - [anon_sym_PERCENT_EQ] = ACTIONS(1096), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1096), - [anon_sym_GT_GT_EQ] = ACTIONS(1096), - [anon_sym_LT_LT_EQ] = ACTIONS(1096), - [anon_sym_AMP_EQ] = ACTIONS(1096), - [anon_sym_CARET_EQ] = ACTIONS(1096), - [anon_sym_PIPE_EQ] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(1096), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1096), + [aux_sym_dictionary_repeat1] = STATE(619), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1124), + [sym_comment] = ACTIONS(76), }, [236] = { - [sym__expression] = STATE(596), - [sym__primary_expression] = STATE(221), + [sym__comprehension_body] = STATE(620), + [sym_for_in_clause] = STATE(511), + [aux_sym_list_repeat1] = STATE(617), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(842), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_for] = ACTIONS(846), + [anon_sym_and] = ACTIONS(848), + [anon_sym_or] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(1128), + [sym_comment] = ACTIONS(76), + }, + [237] = { + [sym__comprehension_body] = STATE(621), + [sym_for_in_clause] = STATE(511), + [aux_sym_dictionary_repeat1] = STATE(619), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(1124), + [sym_comment] = ACTIONS(76), + }, + [238] = { + [anon_sym_DOT] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(876), + [anon_sym_COMMA] = ACTIONS(876), + [anon_sym_as] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(876), + [anon_sym_if] = ACTIONS(876), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_else] = ACTIONS(876), + [anon_sym_for] = ACTIONS(876), + [anon_sym_in] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(878), + [anon_sym_not] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_PERCENT] = ACTIONS(876), + [anon_sym_SLASH_SLASH] = ACTIONS(876), + [anon_sym_STAR_STAR] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_CARET] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_GT_EQ] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_LT_GT] = ACTIONS(876), + [anon_sym_is] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_RBRACK] = ACTIONS(876), + [anon_sym_RBRACE] = ACTIONS(876), + [sym_string] = ACTIONS(878), + [sym_comment] = ACTIONS(76), + }, + [239] = { + [aux_sym_concatenated_string_repeat1] = STATE(622), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_for] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(406), + [sym_comment] = ACTIONS(76), + }, + [240] = { + [anon_sym_RPAREN] = ACTIONS(884), + [anon_sym_COMMA] = ACTIONS(884), + [anon_sym_as] = ACTIONS(884), + [anon_sym_if] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(884), + [anon_sym_else] = ACTIONS(884), + [anon_sym_for] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(884), + [anon_sym_and] = ACTIONS(884), + [anon_sym_or] = ACTIONS(884), + [anon_sym_RBRACK] = ACTIONS(884), + [anon_sym_RBRACE] = ACTIONS(884), + [sym_comment] = ACTIONS(76), + }, + [241] = { + [sym__newline] = ACTIONS(1132), + [anon_sym_DOT] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_GT_GT] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_in] = ACTIONS(1132), + [anon_sym_EQ] = ACTIONS(1134), + [anon_sym_not] = ACTIONS(1132), + [anon_sym_and] = ACTIONS(1132), + [anon_sym_or] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_SLASH] = ACTIONS(1134), + [anon_sym_PERCENT] = ACTIONS(1134), + [anon_sym_SLASH_SLASH] = ACTIONS(1134), + [anon_sym_STAR_STAR] = ACTIONS(1134), + [anon_sym_PIPE] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_CARET] = ACTIONS(1134), + [anon_sym_LT_LT] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_LT_EQ] = ACTIONS(1132), + [anon_sym_EQ_EQ] = ACTIONS(1132), + [anon_sym_BANG_EQ] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1134), + [anon_sym_LT_GT] = ACTIONS(1132), + [anon_sym_is] = ACTIONS(1132), + [anon_sym_PLUS_EQ] = ACTIONS(1132), + [anon_sym_DASH_EQ] = ACTIONS(1132), + [anon_sym_STAR_EQ] = ACTIONS(1132), + [anon_sym_SLASH_EQ] = ACTIONS(1132), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1132), + [anon_sym_PERCENT_EQ] = ACTIONS(1132), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1132), + [anon_sym_GT_GT_EQ] = ACTIONS(1132), + [anon_sym_LT_LT_EQ] = ACTIONS(1132), + [anon_sym_AMP_EQ] = ACTIONS(1132), + [anon_sym_CARET_EQ] = ACTIONS(1132), + [anon_sym_PIPE_EQ] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1132), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1132), + }, + [242] = { + [sym__expression] = STATE(624), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_yield] = STATE(597), + [sym_yield] = STATE(625), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -15490,31 +15826,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(1100), + [anon_sym_RPAREN] = ACTIONS(1136), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_yield] = ACTIONS(98), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [237] = { - [sym__expression] = STATE(598), - [sym__primary_expression] = STATE(509), + [243] = { + [sym__expression] = STATE(626), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -15539,27 +15875,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [238] = { - [sym_variables] = STATE(599), - [sym__primary_expression] = STATE(109), + [244] = { + [sym_variables] = STATE(627), + [sym__primary_expression] = STATE(115), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -15578,13 +15914,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(176), + [sym_string] = ACTIONS(190), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -15593,8 +15929,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [239] = { - [sym__expression] = STATE(600), + [245] = { + [sym__expression] = STATE(628), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -15638,8 +15974,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(112), [sym_comment] = ACTIONS(76), }, - [240] = { - [sym__expression] = STATE(601), + [246] = { + [sym__expression] = STATE(629), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -15683,33 +16019,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(112), [sym_comment] = ACTIONS(76), }, - [241] = { - [anon_sym_RPAREN] = ACTIONS(1102), + [247] = { + [anon_sym_RPAREN] = ACTIONS(1138), [sym_comment] = ACTIONS(76), }, - [242] = { - [sym_for_in_clause] = STATE(604), - [sym_if_clause] = STATE(604), - [aux_sym__comprehension_body_repeat1] = STATE(605), - [anon_sym_RPAREN] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(400), + [248] = { + [sym_for_in_clause] = STATE(632), + [sym_if_clause] = STATE(632), + [aux_sym__comprehension_body_repeat1] = STATE(633), + [anon_sym_RPAREN] = ACTIONS(1140), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(414), [sym_comment] = ACTIONS(76), }, - [243] = { - [aux_sym_tuple_repeat1] = STATE(607), - [anon_sym_RPAREN] = ACTIONS(1100), - [anon_sym_COMMA] = ACTIONS(1108), + [249] = { + [aux_sym_tuple_repeat1] = STATE(635), + [anon_sym_RPAREN] = ACTIONS(1136), + [anon_sym_COMMA] = ACTIONS(1144), [sym_comment] = ACTIONS(76), }, - [244] = { - [sym_identifier] = ACTIONS(1110), + [250] = { + [sym_identifier] = ACTIONS(1146), [sym_comment] = ACTIONS(76), }, - [245] = { - [sym_list_splat] = STATE(611), - [sym_dictionary_splat] = STATE(611), - [sym__expression] = STATE(612), + [251] = { + [sym_list_splat] = STATE(639), + [sym_dictionary_splat] = STATE(639), + [sym__expression] = STATE(640), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -15720,7 +16056,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_keyword_argument] = STATE(611), + [sym_keyword_argument] = STATE(639), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -15734,11 +16070,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1114), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_print] = ACTIONS(876), - [anon_sym_exec] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(1148), + [anon_sym_COMMA] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), [anon_sym_not] = ACTIONS(92), [anon_sym_PLUS] = ACTIONS(94), [anon_sym_DASH] = ACTIONS(94), @@ -15750,15 +16086,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string] = ACTIONS(106), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(878), + [sym_identifier] = ACTIONS(914), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), [anon_sym_await] = ACTIONS(112), [sym_comment] = ACTIONS(76), }, - [246] = { - [sym__primary_expression] = STATE(613), + [252] = { + [sym__primary_expression] = STATE(641), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -15792,8 +16128,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [247] = { - [sym__primary_expression] = STATE(614), + [253] = { + [sym__primary_expression] = STATE(642), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -15827,8 +16163,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [248] = { - [sym__primary_expression] = STATE(615), + [254] = { + [sym__primary_expression] = STATE(643), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -15862,12 +16198,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [249] = { - [anon_sym_in] = ACTIONS(1116), + [255] = { + [anon_sym_in] = ACTIONS(1152), [sym_comment] = ACTIONS(76), }, - [250] = { - [sym__primary_expression] = STATE(617), + [256] = { + [sym__primary_expression] = STATE(645), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -15901,8 +16237,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [251] = { - [sym__primary_expression] = STATE(618), + [257] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -15936,8 +16272,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [252] = { - [sym__primary_expression] = STATE(619), + [258] = { + [sym__primary_expression] = STATE(647), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -15971,8 +16307,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [253] = { - [sym__primary_expression] = STATE(620), + [259] = { + [sym__primary_expression] = STATE(648), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -16006,8 +16342,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [254] = { - [sym__primary_expression] = STATE(621), + [260] = { + [sym__primary_expression] = STATE(649), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -16041,8 +16377,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [255] = { - [sym__primary_expression] = STATE(615), + [261] = { + [sym__primary_expression] = STATE(643), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -16061,7 +16397,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1118), + [anon_sym_not] = ACTIONS(1154), [anon_sym_PLUS] = ACTIONS(94), [anon_sym_DASH] = ACTIONS(94), [anon_sym_TILDE] = ACTIONS(94), @@ -16077,9 +16413,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [256] = { - [sym__expression] = STATE(622), - [sym__primary_expression] = STATE(538), + [262] = { + [sym__expression] = STATE(650), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -16088,7 +16424,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_lambda] = STATE(67), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), - [sym_slice] = STATE(623), + [sym_slice] = STATE(651), [sym_call] = STATE(61), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), @@ -16104,200 +16440,198 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(920), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [257] = { - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_RPAREN] = ACTIONS(896), - [anon_sym_COMMA] = ACTIONS(896), - [anon_sym_as] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_GT_GT] = ACTIONS(896), - [anon_sym_if] = ACTIONS(896), - [anon_sym_COLON] = ACTIONS(896), - [anon_sym_else] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_in] = ACTIONS(896), - [anon_sym_EQ] = ACTIONS(898), - [anon_sym_not] = ACTIONS(896), - [anon_sym_and] = ACTIONS(896), - [anon_sym_or] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_SLASH] = ACTIONS(898), - [anon_sym_PERCENT] = ACTIONS(896), - [anon_sym_SLASH_SLASH] = ACTIONS(896), - [anon_sym_STAR_STAR] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LT_LT] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(898), - [anon_sym_LT_EQ] = ACTIONS(896), - [anon_sym_EQ_EQ] = ACTIONS(896), - [anon_sym_BANG_EQ] = ACTIONS(896), - [anon_sym_GT_EQ] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_LT_GT] = ACTIONS(896), - [anon_sym_is] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_RBRACK] = ACTIONS(896), - [anon_sym_RBRACE] = ACTIONS(896), + [263] = { + [anon_sym_DOT] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_RPAREN] = ACTIONS(932), + [anon_sym_COMMA] = ACTIONS(932), + [anon_sym_as] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_GT_GT] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_COLON] = ACTIONS(932), + [anon_sym_else] = ACTIONS(932), + [anon_sym_for] = ACTIONS(932), + [anon_sym_in] = ACTIONS(932), + [anon_sym_EQ] = ACTIONS(934), + [anon_sym_not] = ACTIONS(932), + [anon_sym_and] = ACTIONS(932), + [anon_sym_or] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_PERCENT] = ACTIONS(932), + [anon_sym_SLASH_SLASH] = ACTIONS(932), + [anon_sym_STAR_STAR] = ACTIONS(932), + [anon_sym_PIPE] = ACTIONS(932), + [anon_sym_AMP] = ACTIONS(932), + [anon_sym_CARET] = ACTIONS(932), + [anon_sym_LT_LT] = ACTIONS(932), + [anon_sym_LT] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(932), + [anon_sym_EQ_EQ] = ACTIONS(932), + [anon_sym_BANG_EQ] = ACTIONS(932), + [anon_sym_GT_EQ] = ACTIONS(932), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_LT_GT] = ACTIONS(932), + [anon_sym_is] = ACTIONS(932), + [anon_sym_LBRACK] = ACTIONS(932), + [anon_sym_RBRACK] = ACTIONS(932), + [anon_sym_RBRACE] = ACTIONS(932), [sym_comment] = ACTIONS(76), }, - [258] = { - [aux_sym_comparison_operator_repeat1] = STATE(624), - [anon_sym_RPAREN] = ACTIONS(900), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_in] = ACTIONS(414), - [anon_sym_not] = ACTIONS(416), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(430), - [anon_sym_LT_EQ] = ACTIONS(414), - [anon_sym_EQ_EQ] = ACTIONS(414), - [anon_sym_BANG_EQ] = ACTIONS(414), - [anon_sym_GT_EQ] = ACTIONS(414), - [anon_sym_GT] = ACTIONS(430), - [anon_sym_LT_GT] = ACTIONS(414), - [anon_sym_is] = ACTIONS(432), + [264] = { + [aux_sym_comparison_operator_repeat1] = STATE(652), + [anon_sym_RPAREN] = ACTIONS(936), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_in] = ACTIONS(428), + [anon_sym_not] = ACTIONS(430), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LT_EQ] = ACTIONS(428), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_BANG_EQ] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_LT_GT] = ACTIONS(428), + [anon_sym_is] = ACTIONS(446), [sym_comment] = ACTIONS(76), }, - [259] = { - [sym__newline] = ACTIONS(364), - [anon_sym_from] = ACTIONS(364), - [anon_sym_DOT] = ACTIONS(364), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_COMMA] = ACTIONS(364), - [anon_sym_STAR] = ACTIONS(366), - [anon_sym_GT_GT] = ACTIONS(364), - [anon_sym_if] = ACTIONS(364), - [anon_sym_in] = ACTIONS(364), - [anon_sym_not] = ACTIONS(364), - [anon_sym_and] = ACTIONS(364), - [anon_sym_or] = ACTIONS(364), - [anon_sym_PLUS] = ACTIONS(364), - [anon_sym_DASH] = ACTIONS(364), - [anon_sym_SLASH] = ACTIONS(366), - [anon_sym_PERCENT] = ACTIONS(364), - [anon_sym_SLASH_SLASH] = ACTIONS(364), - [anon_sym_STAR_STAR] = ACTIONS(364), - [anon_sym_PIPE] = ACTIONS(364), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_LT_LT] = ACTIONS(364), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_LT_EQ] = ACTIONS(364), - [anon_sym_EQ_EQ] = ACTIONS(364), - [anon_sym_BANG_EQ] = ACTIONS(364), - [anon_sym_GT_EQ] = ACTIONS(364), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT_GT] = ACTIONS(364), - [anon_sym_is] = ACTIONS(364), - [anon_sym_LBRACK] = ACTIONS(364), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(364), + [265] = { + [sym__newline] = ACTIONS(378), + [anon_sym_DOT] = ACTIONS(378), + [anon_sym_LPAREN] = ACTIONS(378), + [anon_sym_COMMA] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_if] = ACTIONS(378), + [anon_sym_in] = ACTIONS(378), + [anon_sym_not] = ACTIONS(378), + [anon_sym_and] = ACTIONS(378), + [anon_sym_or] = ACTIONS(378), + [anon_sym_PLUS] = ACTIONS(378), + [anon_sym_DASH] = ACTIONS(378), + [anon_sym_SLASH] = ACTIONS(380), + [anon_sym_PERCENT] = ACTIONS(378), + [anon_sym_SLASH_SLASH] = ACTIONS(378), + [anon_sym_STAR_STAR] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(378), + [anon_sym_AMP] = ACTIONS(378), + [anon_sym_CARET] = ACTIONS(378), + [anon_sym_LT_LT] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(378), + [anon_sym_EQ_EQ] = ACTIONS(378), + [anon_sym_BANG_EQ] = ACTIONS(378), + [anon_sym_GT_EQ] = ACTIONS(378), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_LT_GT] = ACTIONS(378), + [anon_sym_is] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(378), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(378), }, - [260] = { - [anon_sym_RPAREN] = ACTIONS(1120), + [266] = { + [anon_sym_RPAREN] = ACTIONS(1156), [sym_comment] = ACTIONS(76), }, - [261] = { - [sym__comprehension_body] = STATE(628), - [sym_for_in_clause] = STATE(242), - [aux_sym_tuple_repeat1] = STATE(629), - [anon_sym_RPAREN] = ACTIONS(1122), - [anon_sym_COMMA] = ACTIONS(1124), - [anon_sym_if] = ACTIONS(398), - [anon_sym_for] = ACTIONS(400), - [anon_sym_and] = ACTIONS(402), - [anon_sym_or] = ACTIONS(404), + [267] = { + [sym__comprehension_body] = STATE(656), + [sym_for_in_clause] = STATE(248), + [aux_sym_tuple_repeat1] = STATE(657), + [anon_sym_RPAREN] = ACTIONS(1158), + [anon_sym_COMMA] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(412), + [anon_sym_for] = ACTIONS(414), + [anon_sym_and] = ACTIONS(416), + [anon_sym_or] = ACTIONS(418), [sym_comment] = ACTIONS(76), }, - [262] = { - [aux_sym_tuple_repeat1] = STATE(629), - [anon_sym_RPAREN] = ACTIONS(1122), - [anon_sym_COMMA] = ACTIONS(1124), + [268] = { + [aux_sym_tuple_repeat1] = STATE(657), + [anon_sym_RPAREN] = ACTIONS(1158), + [anon_sym_COMMA] = ACTIONS(1160), [sym_comment] = ACTIONS(76), }, - [263] = { - [sym__newline] = ACTIONS(1126), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_if] = ACTIONS(456), - [anon_sym_and] = ACTIONS(458), - [anon_sym_or] = ACTIONS(460), + [269] = { + [sym__newline] = ACTIONS(1162), + [anon_sym_COMMA] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(470), + [anon_sym_and] = ACTIONS(472), + [anon_sym_or] = ACTIONS(474), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1126), + [sym__semicolon] = ACTIONS(1162), }, - [264] = { - [sym__newline] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_and] = ACTIONS(458), - [anon_sym_or] = ACTIONS(460), + [270] = { + [sym__newline] = ACTIONS(726), + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_and] = ACTIONS(472), + [anon_sym_or] = ACTIONS(474), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(690), + [sym__semicolon] = ACTIONS(726), }, - [265] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(692), - [anon_sym_from] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(692), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(692), - [anon_sym_if] = ACTIONS(692), - [anon_sym_in] = ACTIONS(692), - [anon_sym_not] = ACTIONS(692), - [anon_sym_and] = ACTIONS(692), - [anon_sym_or] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(692), - [anon_sym_SLASH_SLASH] = ACTIONS(692), - [anon_sym_STAR_STAR] = ACTIONS(692), - [anon_sym_PIPE] = ACTIONS(692), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_CARET] = ACTIONS(692), - [anon_sym_LT_LT] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(694), - [anon_sym_LT_EQ] = ACTIONS(692), - [anon_sym_EQ_EQ] = ACTIONS(692), - [anon_sym_BANG_EQ] = ACTIONS(692), - [anon_sym_GT_EQ] = ACTIONS(692), - [anon_sym_GT] = ACTIONS(694), - [anon_sym_LT_GT] = ACTIONS(692), - [anon_sym_is] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(692), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(692), + [271] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(728), + [anon_sym_DOT] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(728), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_GT_GT] = ACTIONS(728), + [anon_sym_if] = ACTIONS(728), + [anon_sym_in] = ACTIONS(728), + [anon_sym_not] = ACTIONS(728), + [anon_sym_and] = ACTIONS(728), + [anon_sym_or] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_SLASH] = ACTIONS(730), + [anon_sym_PERCENT] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(728), + [anon_sym_STAR_STAR] = ACTIONS(728), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_AMP] = ACTIONS(728), + [anon_sym_CARET] = ACTIONS(728), + [anon_sym_LT_LT] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(728), + [anon_sym_EQ_EQ] = ACTIONS(728), + [anon_sym_BANG_EQ] = ACTIONS(728), + [anon_sym_GT_EQ] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_LT_GT] = ACTIONS(728), + [anon_sym_is] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(728), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(728), }, - [266] = { - [sym__expression] = STATE(630), + [272] = { + [sym__expression] = STATE(658), [sym__primary_expression] = STATE(82), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -16341,214 +16675,211 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(136), [sym_comment] = ACTIONS(76), }, - [267] = { - [anon_sym_COLON] = ACTIONS(1128), + [273] = { + [anon_sym_COLON] = ACTIONS(1164), [sym_comment] = ACTIONS(76), }, - [268] = { - [anon_sym_RBRACK] = ACTIONS(1130), + [274] = { + [anon_sym_RBRACK] = ACTIONS(1166), [sym_comment] = ACTIONS(76), }, - [269] = { - [sym__newline] = ACTIONS(742), - [anon_sym_from] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(742), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_GT_GT] = ACTIONS(742), - [anon_sym_if] = ACTIONS(742), - [anon_sym_in] = ACTIONS(742), - [anon_sym_not] = ACTIONS(742), - [anon_sym_and] = ACTIONS(742), - [anon_sym_or] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(744), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_SLASH_SLASH] = ACTIONS(742), - [anon_sym_STAR_STAR] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_CARET] = ACTIONS(742), - [anon_sym_LT_LT] = ACTIONS(742), - [anon_sym_LT] = ACTIONS(744), - [anon_sym_LT_EQ] = ACTIONS(742), - [anon_sym_EQ_EQ] = ACTIONS(742), - [anon_sym_BANG_EQ] = ACTIONS(742), - [anon_sym_GT_EQ] = ACTIONS(742), - [anon_sym_GT] = ACTIONS(744), - [anon_sym_LT_GT] = ACTIONS(742), - [anon_sym_is] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(742), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(742), - }, - [270] = { - [aux_sym_list_repeat1] = STATE(634), - [anon_sym_COMMA] = ACTIONS(1132), - [anon_sym_RBRACK] = ACTIONS(1130), + [275] = { + [sym__newline] = ACTIONS(778), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(778), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_GT_GT] = ACTIONS(778), + [anon_sym_if] = ACTIONS(778), + [anon_sym_in] = ACTIONS(778), + [anon_sym_not] = ACTIONS(778), + [anon_sym_and] = ACTIONS(778), + [anon_sym_or] = ACTIONS(778), + [anon_sym_PLUS] = ACTIONS(778), + [anon_sym_DASH] = ACTIONS(778), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_PERCENT] = ACTIONS(778), + [anon_sym_SLASH_SLASH] = ACTIONS(778), + [anon_sym_STAR_STAR] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), + [anon_sym_CARET] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_LT] = ACTIONS(780), + [anon_sym_LT_EQ] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(778), + [anon_sym_BANG_EQ] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_GT] = ACTIONS(780), + [anon_sym_LT_GT] = ACTIONS(778), + [anon_sym_is] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(778), [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(778), }, - [271] = { - [sym__comprehension_body] = STATE(635), - [sym_for_in_clause] = STATE(447), - [aux_sym_list_repeat1] = STATE(634), - [anon_sym_COMMA] = ACTIONS(1132), - [anon_sym_if] = ACTIONS(748), - [anon_sym_for] = ACTIONS(750), - [anon_sym_and] = ACTIONS(752), - [anon_sym_or] = ACTIONS(754), - [anon_sym_RBRACK] = ACTIONS(1130), + [276] = { + [aux_sym_list_repeat1] = STATE(662), + [anon_sym_COMMA] = ACTIONS(1168), + [anon_sym_RBRACK] = ACTIONS(1166), [sym_comment] = ACTIONS(76), }, - [272] = { - [anon_sym_RBRACE] = ACTIONS(1134), + [277] = { + [sym__comprehension_body] = STATE(663), + [sym_for_in_clause] = STATE(475), + [aux_sym_list_repeat1] = STATE(662), + [anon_sym_COMMA] = ACTIONS(1168), + [anon_sym_if] = ACTIONS(784), + [anon_sym_for] = ACTIONS(786), + [anon_sym_and] = ACTIONS(788), + [anon_sym_or] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1166), [sym_comment] = ACTIONS(76), }, - [273] = { - [sym__newline] = ACTIONS(796), - [anon_sym_from] = ACTIONS(796), - [anon_sym_DOT] = ACTIONS(796), - [anon_sym_LPAREN] = ACTIONS(796), - [anon_sym_COMMA] = ACTIONS(796), - [anon_sym_STAR] = ACTIONS(798), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_if] = ACTIONS(796), - [anon_sym_in] = ACTIONS(796), - [anon_sym_not] = ACTIONS(796), - [anon_sym_and] = ACTIONS(796), - [anon_sym_or] = ACTIONS(796), - [anon_sym_PLUS] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_SLASH] = ACTIONS(798), - [anon_sym_PERCENT] = ACTIONS(796), - [anon_sym_SLASH_SLASH] = ACTIONS(796), - [anon_sym_STAR_STAR] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_CARET] = ACTIONS(796), - [anon_sym_LT_LT] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(798), - [anon_sym_LT_EQ] = ACTIONS(796), - [anon_sym_EQ_EQ] = ACTIONS(796), - [anon_sym_BANG_EQ] = ACTIONS(796), - [anon_sym_GT_EQ] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(798), - [anon_sym_LT_GT] = ACTIONS(796), - [anon_sym_is] = ACTIONS(796), - [anon_sym_LBRACK] = ACTIONS(796), + [278] = { + [anon_sym_RBRACE] = ACTIONS(1170), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(796), }, - [274] = { - [aux_sym_list_repeat1] = STATE(639), - [anon_sym_COMMA] = ACTIONS(1136), - [anon_sym_RBRACE] = ACTIONS(1138), + [279] = { + [sym__newline] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_COMMA] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_if] = ACTIONS(832), + [anon_sym_in] = ACTIONS(832), + [anon_sym_not] = ACTIONS(832), + [anon_sym_and] = ACTIONS(832), + [anon_sym_or] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(832), + [anon_sym_SLASH_SLASH] = ACTIONS(832), + [anon_sym_STAR_STAR] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_CARET] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_LT_EQ] = ACTIONS(832), + [anon_sym_EQ_EQ] = ACTIONS(832), + [anon_sym_BANG_EQ] = ACTIONS(832), + [anon_sym_GT_EQ] = ACTIONS(832), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_LT_GT] = ACTIONS(832), + [anon_sym_is] = ACTIONS(832), + [anon_sym_LBRACK] = ACTIONS(832), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(832), + }, + [280] = { + [aux_sym_list_repeat1] = STATE(667), + [anon_sym_COMMA] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1174), [sym_comment] = ACTIONS(76), }, - [275] = { - [aux_sym_dictionary_repeat1] = STATE(641), - [anon_sym_COMMA] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1134), + [281] = { + [aux_sym_dictionary_repeat1] = STATE(669), + [anon_sym_COMMA] = ACTIONS(1176), + [anon_sym_RBRACE] = ACTIONS(1170), [sym_comment] = ACTIONS(76), }, - [276] = { - [sym__comprehension_body] = STATE(642), - [sym_for_in_clause] = STATE(483), - [aux_sym_list_repeat1] = STATE(639), - [anon_sym_COMMA] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(806), - [anon_sym_COLON] = ACTIONS(808), - [anon_sym_for] = ACTIONS(810), - [anon_sym_and] = ACTIONS(812), - [anon_sym_or] = ACTIONS(814), - [anon_sym_RBRACE] = ACTIONS(1138), + [282] = { + [sym__comprehension_body] = STATE(670), + [sym_for_in_clause] = STATE(511), + [aux_sym_list_repeat1] = STATE(667), + [anon_sym_COMMA] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(842), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_for] = ACTIONS(846), + [anon_sym_and] = ACTIONS(848), + [anon_sym_or] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(1174), [sym_comment] = ACTIONS(76), }, - [277] = { - [sym__comprehension_body] = STATE(643), - [sym_for_in_clause] = STATE(483), - [aux_sym_dictionary_repeat1] = STATE(641), - [anon_sym_COMMA] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(810), - [anon_sym_RBRACE] = ACTIONS(1134), + [283] = { + [sym__comprehension_body] = STATE(671), + [sym_for_in_clause] = STATE(511), + [aux_sym_dictionary_repeat1] = STATE(669), + [anon_sym_COMMA] = ACTIONS(1176), + [anon_sym_for] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(1170), [sym_comment] = ACTIONS(76), }, - [278] = { - [sym__newline] = ACTIONS(840), - [anon_sym_from] = ACTIONS(840), - [anon_sym_DOT] = ACTIONS(840), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_COMMA] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(842), - [anon_sym_GT_GT] = ACTIONS(840), - [anon_sym_if] = ACTIONS(840), - [anon_sym_in] = ACTIONS(840), - [anon_sym_not] = ACTIONS(840), - [anon_sym_and] = ACTIONS(840), - [anon_sym_or] = ACTIONS(840), - [anon_sym_PLUS] = ACTIONS(840), - [anon_sym_DASH] = ACTIONS(840), - [anon_sym_SLASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(840), - [anon_sym_SLASH_SLASH] = ACTIONS(840), - [anon_sym_STAR_STAR] = ACTIONS(840), - [anon_sym_PIPE] = ACTIONS(840), - [anon_sym_AMP] = ACTIONS(840), - [anon_sym_CARET] = ACTIONS(840), - [anon_sym_LT_LT] = ACTIONS(840), - [anon_sym_LT] = ACTIONS(842), - [anon_sym_LT_EQ] = ACTIONS(840), - [anon_sym_EQ_EQ] = ACTIONS(840), - [anon_sym_BANG_EQ] = ACTIONS(840), - [anon_sym_GT_EQ] = ACTIONS(840), - [anon_sym_GT] = ACTIONS(842), - [anon_sym_LT_GT] = ACTIONS(840), - [anon_sym_is] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(840), - [sym_string] = ACTIONS(842), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(840), + [284] = { + [sym__newline] = ACTIONS(876), + [anon_sym_DOT] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(876), + [anon_sym_COMMA] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(876), + [anon_sym_if] = ACTIONS(876), + [anon_sym_in] = ACTIONS(876), + [anon_sym_not] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_PERCENT] = ACTIONS(876), + [anon_sym_SLASH_SLASH] = ACTIONS(876), + [anon_sym_STAR_STAR] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_CARET] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_GT_EQ] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_LT_GT] = ACTIONS(876), + [anon_sym_is] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(876), + [sym_string] = ACTIONS(878), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(876), }, - [279] = { - [aux_sym_concatenated_string_repeat1] = STATE(644), - [sym__newline] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(450), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(844), + [285] = { + [aux_sym_concatenated_string_repeat1] = STATE(672), + [sym__newline] = ACTIONS(880), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(464), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(880), }, - [280] = { - [sym__expression] = STATE(645), + [286] = { + [sym__expression] = STATE(673), [sym__primary_expression] = STATE(82), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -16571,7 +16902,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(76), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(1142), + [sym__newline] = ACTIONS(1178), [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), @@ -16592,18 +16923,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [anon_sym_await] = ACTIONS(136), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1142), + [sym__semicolon] = ACTIONS(1178), }, - [281] = { - [aux_sym_print_statement_repeat1] = STATE(647), - [sym__newline] = ACTIONS(1142), - [anon_sym_COMMA] = ACTIONS(1144), + [287] = { + [aux_sym_print_statement_repeat1] = STATE(675), + [sym__newline] = ACTIONS(1178), + [anon_sym_COMMA] = ACTIONS(1180), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1142), + [sym__semicolon] = ACTIONS(1178), }, - [282] = { - [sym__expression] = STATE(648), - [sym__primary_expression] = STATE(509), + [288] = { + [sym__expression] = STATE(676), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -16628,26 +16959,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [283] = { - [sym__expression] = STATE(510), + [289] = { + [sym__expression] = STATE(538), [sym__primary_expression] = STATE(82), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -16691,8 +17022,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(136), [sym_comment] = ACTIONS(76), }, - [284] = { - [sym__expression] = STATE(649), + [290] = { + [sym__expression] = STATE(677), [sym__primary_expression] = STATE(82), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -16736,14 +17067,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(136), [sym_comment] = ACTIONS(76), }, - [285] = { - [sym_identifier] = ACTIONS(1146), + [291] = { + [sym_identifier] = ACTIONS(1182), [sym_comment] = ACTIONS(76), }, - [286] = { - [sym_list_splat] = STATE(653), - [sym_dictionary_splat] = STATE(653), - [sym__expression] = STATE(654), + [292] = { + [sym_list_splat] = STATE(681), + [sym_dictionary_splat] = STATE(681), + [sym__expression] = STATE(682), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -16754,7 +17085,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_keyword_argument] = STATE(653), + [sym_keyword_argument] = STATE(681), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -16768,11 +17099,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(1148), - [anon_sym_COMMA] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_print] = ACTIONS(876), - [anon_sym_exec] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(1184), + [anon_sym_COMMA] = ACTIONS(1186), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), [anon_sym_not] = ACTIONS(92), [anon_sym_PLUS] = ACTIONS(94), [anon_sym_DASH] = ACTIONS(94), @@ -16784,15 +17115,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_string] = ACTIONS(106), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(878), + [sym_identifier] = ACTIONS(914), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), [anon_sym_await] = ACTIONS(112), [sym_comment] = ACTIONS(76), }, - [287] = { - [sym__primary_expression] = STATE(655), + [293] = { + [sym__primary_expression] = STATE(683), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -16826,8 +17157,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [288] = { - [sym__primary_expression] = STATE(656), + [294] = { + [sym__primary_expression] = STATE(684), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -16861,8 +17192,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [289] = { - [sym__primary_expression] = STATE(657), + [295] = { + [sym__primary_expression] = STATE(685), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -16896,12 +17227,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [290] = { - [anon_sym_in] = ACTIONS(1152), + [296] = { + [anon_sym_in] = ACTIONS(1188), [sym_comment] = ACTIONS(76), }, - [291] = { - [sym__primary_expression] = STATE(659), + [297] = { + [sym__primary_expression] = STATE(687), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -16935,8 +17266,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [292] = { - [sym__primary_expression] = STATE(660), + [298] = { + [sym__primary_expression] = STATE(688), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -16970,8 +17301,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [293] = { - [sym__primary_expression] = STATE(661), + [299] = { + [sym__primary_expression] = STATE(689), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -17005,8 +17336,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [294] = { - [sym__primary_expression] = STATE(662), + [300] = { + [sym__primary_expression] = STATE(690), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -17040,8 +17371,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [295] = { - [sym__primary_expression] = STATE(663), + [301] = { + [sym__primary_expression] = STATE(691), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -17075,8 +17406,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [296] = { - [sym__primary_expression] = STATE(657), + [302] = { + [sym__primary_expression] = STATE(685), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -17095,7 +17426,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(1154), + [anon_sym_not] = ACTIONS(1190), [anon_sym_PLUS] = ACTIONS(122), [anon_sym_DASH] = ACTIONS(122), [anon_sym_TILDE] = ACTIONS(122), @@ -17111,9 +17442,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [297] = { - [sym__expression] = STATE(664), - [sym__primary_expression] = STATE(538), + [303] = { + [sym__expression] = STATE(692), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -17122,7 +17453,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_lambda] = STATE(67), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), - [sym_slice] = STATE(665), + [sym_slice] = STATE(693), [sym_call] = STATE(61), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), @@ -17138,83 +17469,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(920), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [298] = { - [sym__newline] = ACTIONS(896), - [anon_sym_from] = ACTIONS(896), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_COMMA] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_GT_GT] = ACTIONS(896), - [anon_sym_if] = ACTIONS(896), - [anon_sym_in] = ACTIONS(896), - [anon_sym_not] = ACTIONS(896), - [anon_sym_and] = ACTIONS(896), - [anon_sym_or] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_SLASH] = ACTIONS(898), - [anon_sym_PERCENT] = ACTIONS(896), - [anon_sym_SLASH_SLASH] = ACTIONS(896), - [anon_sym_STAR_STAR] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_LT_LT] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(898), - [anon_sym_LT_EQ] = ACTIONS(896), - [anon_sym_EQ_EQ] = ACTIONS(896), - [anon_sym_BANG_EQ] = ACTIONS(896), - [anon_sym_GT_EQ] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_LT_GT] = ACTIONS(896), - [anon_sym_is] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(896), + [304] = { + [sym__newline] = ACTIONS(932), + [anon_sym_DOT] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_COMMA] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_GT_GT] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_in] = ACTIONS(932), + [anon_sym_not] = ACTIONS(932), + [anon_sym_and] = ACTIONS(932), + [anon_sym_or] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_PERCENT] = ACTIONS(932), + [anon_sym_SLASH_SLASH] = ACTIONS(932), + [anon_sym_STAR_STAR] = ACTIONS(932), + [anon_sym_PIPE] = ACTIONS(932), + [anon_sym_AMP] = ACTIONS(932), + [anon_sym_CARET] = ACTIONS(932), + [anon_sym_LT_LT] = ACTIONS(932), + [anon_sym_LT] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(932), + [anon_sym_EQ_EQ] = ACTIONS(932), + [anon_sym_BANG_EQ] = ACTIONS(932), + [anon_sym_GT_EQ] = ACTIONS(932), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_LT_GT] = ACTIONS(932), + [anon_sym_is] = ACTIONS(932), + [anon_sym_LBRACK] = ACTIONS(932), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(932), }, - [299] = { - [aux_sym_comparison_operator_repeat1] = STATE(666), - [sym__newline] = ACTIONS(900), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_in] = ACTIONS(470), - [anon_sym_not] = ACTIONS(472), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(470), - [anon_sym_EQ_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(470), - [anon_sym_GT] = ACTIONS(486), - [anon_sym_LT_GT] = ACTIONS(470), - [anon_sym_is] = ACTIONS(488), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(900), + [305] = { + [aux_sym_comparison_operator_repeat1] = STATE(694), + [sym__newline] = ACTIONS(936), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_in] = ACTIONS(484), + [anon_sym_not] = ACTIONS(486), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_EQ_EQ] = ACTIONS(484), + [anon_sym_BANG_EQ] = ACTIONS(484), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT_GT] = ACTIONS(484), + [anon_sym_is] = ACTIONS(502), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(936), }, - [300] = { - [sym__expression] = STATE(645), + [306] = { + [sym__expression] = STATE(673), [sym__primary_expression] = STATE(82), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -17258,15 +17588,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(136), [sym_comment] = ACTIONS(76), }, - [301] = { - [aux_sym_print_statement_repeat1] = STATE(647), - [sym__newline] = ACTIONS(1156), - [anon_sym_COMMA] = ACTIONS(494), + [307] = { + [aux_sym_print_statement_repeat1] = STATE(675), + [sym__newline] = ACTIONS(1192), + [anon_sym_COMMA] = ACTIONS(508), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1156), + [sym__semicolon] = ACTIONS(1192), }, - [302] = { - [sym__expression] = STATE(645), + [308] = { + [sym__expression] = STATE(673), [sym__primary_expression] = STATE(82), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -17289,7 +17619,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(76), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(852), + [sym__newline] = ACTIONS(888), [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), @@ -17310,18 +17640,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [anon_sym_await] = ACTIONS(136), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(852), + [sym__semicolon] = ACTIONS(888), }, - [303] = { - [aux_sym_print_statement_repeat1] = STATE(647), - [sym__newline] = ACTIONS(852), - [anon_sym_COMMA] = ACTIONS(1158), + [309] = { + [aux_sym_print_statement_repeat1] = STATE(675), + [sym__newline] = ACTIONS(888), + [anon_sym_COMMA] = ACTIONS(1194), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(852), + [sym__semicolon] = ACTIONS(888), }, - [304] = { - [sym__expression] = STATE(668), - [sym__primary_expression] = STATE(310), + [310] = { + [sym__expression] = STATE(696), + [sym__primary_expression] = STATE(316), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), [sym_binary_operator] = STATE(76), @@ -17346,26 +17676,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(502), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_lambda] = ACTIONS(506), + [anon_sym_not] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_lambda] = ACTIONS(520), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), [sym_true] = ACTIONS(132), [sym_false] = ACTIONS(132), [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(510), + [anon_sym_await] = ACTIONS(524), [sym_comment] = ACTIONS(76), }, - [305] = { - [sym__primary_expression] = STATE(265), + [311] = { + [sym__primary_expression] = STATE(271), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -17384,13 +17714,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), @@ -17399,61 +17729,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [306] = { - [sym_lambda_parameters] = STATE(670), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(1160), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [312] = { + [sym_lambda_parameters] = STATE(698), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(1196), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [307] = { - [aux_sym_concatenated_string_repeat1] = STATE(671), - [sym__newline] = ACTIONS(236), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(450), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(236), + [313] = { + [aux_sym_concatenated_string_repeat1] = STATE(699), + [sym__newline] = ACTIONS(250), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(464), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(250), }, - [308] = { - [sym__expression] = STATE(168), - [sym__primary_expression] = STATE(310), + [314] = { + [sym__expression] = STATE(174), + [sym__primary_expression] = STATE(316), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), [sym_binary_operator] = STATE(76), @@ -17478,305 +17808,437 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(502), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_lambda] = ACTIONS(506), + [anon_sym_not] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_lambda] = ACTIONS(520), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), [sym_true] = ACTIONS(132), [sym_false] = ACTIONS(132), [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(510), + [anon_sym_await] = ACTIONS(524), [sym_comment] = ACTIONS(76), }, - [309] = { - [sym__newline] = ACTIONS(1162), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_and] = ACTIONS(1166), - [anon_sym_or] = ACTIONS(1168), + [315] = { + [sym__newline] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_and] = ACTIONS(1202), + [anon_sym_or] = ACTIONS(1204), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1162), + [sym__semicolon] = ACTIONS(1198), }, - [310] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [aux_sym_comparison_operator_repeat1] = STATE(685), - [sym__newline] = ACTIONS(296), - [anon_sym_DOT] = ACTIONS(462), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(296), - [anon_sym_in] = ACTIONS(1174), - [anon_sym_not] = ACTIONS(1176), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_SLASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1180), - [anon_sym_SLASH_SLASH] = ACTIONS(1180), - [anon_sym_STAR_STAR] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1172), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1174), - [anon_sym_EQ_EQ] = ACTIONS(1174), - [anon_sym_BANG_EQ] = ACTIONS(1174), - [anon_sym_GT_EQ] = ACTIONS(1174), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_LT_GT] = ACTIONS(1174), - [anon_sym_is] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(490), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(296), + [316] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [aux_sym_comparison_operator_repeat1] = STATE(713), + [sym__newline] = ACTIONS(310), + [anon_sym_DOT] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(310), + [anon_sym_in] = ACTIONS(1210), + [anon_sym_not] = ACTIONS(1212), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_SLASH] = ACTIONS(1206), + [anon_sym_PERCENT] = ACTIONS(1216), + [anon_sym_SLASH_SLASH] = ACTIONS(1216), + [anon_sym_STAR_STAR] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1224), + [anon_sym_LT_LT] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_LT_EQ] = ACTIONS(1210), + [anon_sym_EQ_EQ] = ACTIONS(1210), + [anon_sym_BANG_EQ] = ACTIONS(1210), + [anon_sym_GT_EQ] = ACTIONS(1210), + [anon_sym_GT] = ACTIONS(1226), + [anon_sym_LT_GT] = ACTIONS(1210), + [anon_sym_is] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(504), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(310), }, - [311] = { - [sym__newline] = ACTIONS(690), - [anon_sym_from] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_and] = ACTIONS(522), - [anon_sym_or] = ACTIONS(524), + [317] = { + [sym__newline] = ACTIONS(378), + [anon_sym_from] = ACTIONS(378), + [anon_sym_DOT] = ACTIONS(378), + [anon_sym_LPAREN] = ACTIONS(378), + [anon_sym_COMMA] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_if] = ACTIONS(378), + [anon_sym_in] = ACTIONS(378), + [anon_sym_not] = ACTIONS(378), + [anon_sym_and] = ACTIONS(378), + [anon_sym_or] = ACTIONS(378), + [anon_sym_PLUS] = ACTIONS(378), + [anon_sym_DASH] = ACTIONS(378), + [anon_sym_SLASH] = ACTIONS(380), + [anon_sym_PERCENT] = ACTIONS(378), + [anon_sym_SLASH_SLASH] = ACTIONS(378), + [anon_sym_STAR_STAR] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(378), + [anon_sym_AMP] = ACTIONS(378), + [anon_sym_CARET] = ACTIONS(378), + [anon_sym_LT_LT] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(378), + [anon_sym_EQ_EQ] = ACTIONS(378), + [anon_sym_BANG_EQ] = ACTIONS(378), + [anon_sym_GT_EQ] = ACTIONS(378), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_LT_GT] = ACTIONS(378), + [anon_sym_is] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(378), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(378), + }, + [318] = { + [anon_sym_RPAREN] = ACTIONS(1230), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(690), }, - [312] = { - [sym__expression] = STATE(686), - [sym__primary_expression] = STATE(95), - [sym_not_operator] = STATE(40), - [sym_boolean_operator] = STATE(40), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_comparison_operator] = STATE(40), - [sym_lambda] = STATE(40), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_conditional_expression] = STATE(40), - [sym_concatenated_string] = STATE(76), - [sym_await] = STATE(40), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_lambda] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(158), + [319] = { + [sym__comprehension_body] = STATE(717), + [sym_for_in_clause] = STATE(248), + [aux_sym_tuple_repeat1] = STATE(718), + [anon_sym_RPAREN] = ACTIONS(1232), + [anon_sym_COMMA] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(412), + [anon_sym_for] = ACTIONS(414), + [anon_sym_and] = ACTIONS(416), + [anon_sym_or] = ACTIONS(418), [sym_comment] = ACTIONS(76), }, - [313] = { - [anon_sym_COLON] = ACTIONS(1194), + [320] = { + [aux_sym_tuple_repeat1] = STATE(718), + [anon_sym_RPAREN] = ACTIONS(1232), + [anon_sym_COMMA] = ACTIONS(1234), [sym_comment] = ACTIONS(76), }, - [314] = { - [aux_sym_concatenated_string_repeat1] = STATE(688), - [sym__newline] = ACTIONS(844), - [anon_sym_from] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(450), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(844), + [321] = { + [sym__newline] = ACTIONS(726), + [anon_sym_from] = ACTIONS(726), + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_and] = ACTIONS(550), + [anon_sym_or] = ACTIONS(552), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(726), }, - [315] = { - [sym__expression] = STATE(689), - [sym__primary_expression] = STATE(310), - [sym_not_operator] = STATE(40), - [sym_boolean_operator] = STATE(40), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_comparison_operator] = STATE(40), - [sym_lambda] = STATE(40), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_conditional_expression] = STATE(40), - [sym_concatenated_string] = STATE(76), - [sym_await] = STATE(40), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(502), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_lambda] = ACTIONS(506), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(510), + [322] = { + [sym_argument_list] = STATE(357), + [sym_generator_expression] = STATE(357), + [sym__newline] = ACTIONS(728), + [anon_sym_from] = ACTIONS(728), + [anon_sym_DOT] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(728), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_GT_GT] = ACTIONS(728), + [anon_sym_if] = ACTIONS(728), + [anon_sym_in] = ACTIONS(728), + [anon_sym_not] = ACTIONS(728), + [anon_sym_and] = ACTIONS(728), + [anon_sym_or] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_SLASH] = ACTIONS(730), + [anon_sym_PERCENT] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(728), + [anon_sym_STAR_STAR] = ACTIONS(728), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_AMP] = ACTIONS(728), + [anon_sym_CARET] = ACTIONS(728), + [anon_sym_LT_LT] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_LT_EQ] = ACTIONS(728), + [anon_sym_EQ_EQ] = ACTIONS(728), + [anon_sym_BANG_EQ] = ACTIONS(728), + [anon_sym_GT_EQ] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(730), + [anon_sym_LT_GT] = ACTIONS(728), + [anon_sym_is] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(728), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(728), + }, + [323] = { + [sym__expression] = STATE(719), + [sym__primary_expression] = STATE(100), + [sym_not_operator] = STATE(101), + [sym_boolean_operator] = STATE(101), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_comparison_operator] = STATE(101), + [sym_lambda] = STATE(101), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_conditional_expression] = STATE(101), + [sym_concatenated_string] = STATE(94), + [sym_await] = STATE(101), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_not] = ACTIONS(154), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_lambda] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [anon_sym_await] = ACTIONS(172), [sym_comment] = ACTIONS(76), }, - [316] = { - [sym__expression] = STATE(690), - [sym__primary_expression] = STATE(95), - [sym_not_operator] = STATE(40), - [sym_boolean_operator] = STATE(40), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_comparison_operator] = STATE(40), - [sym_lambda] = STATE(40), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_conditional_expression] = STATE(40), - [sym_concatenated_string] = STATE(76), - [sym_await] = STATE(40), - [sym__newline] = ACTIONS(852), - [anon_sym_from] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_lambda] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(158), + [324] = { + [anon_sym_COLON] = ACTIONS(1236), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(852), }, - [317] = { - [sym__expression] = STATE(691), - [sym__primary_expression] = STATE(509), - [sym_not_operator] = STATE(67), - [sym_boolean_operator] = STATE(67), - [sym_binary_operator] = STATE(61), - [sym_unary_operator] = STATE(61), - [sym_comparison_operator] = STATE(67), - [sym_lambda] = STATE(67), - [sym_attribute] = STATE(61), - [sym_subscript] = STATE(61), - [sym_call] = STATE(61), - [sym_list] = STATE(61), - [sym_list_comprehension] = STATE(61), - [sym_dictionary] = STATE(61), - [sym_dictionary_comprehension] = STATE(61), - [sym_set] = STATE(61), - [sym_set_comprehension] = STATE(61), - [sym_parenthesized_expression] = STATE(61), - [sym_tuple] = STATE(61), - [sym_generator_expression] = STATE(61), - [sym_conditional_expression] = STATE(67), - [sym_concatenated_string] = STATE(61), - [sym_await] = STATE(67), - [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_print] = ACTIONS(90), - [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(100), - [sym_ellipsis] = ACTIONS(102), - [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), - [sym_integer] = ACTIONS(108), - [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(110), - [sym_true] = ACTIONS(108), - [sym_false] = ACTIONS(108), - [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [325] = { + [anon_sym_RBRACK] = ACTIONS(1238), [sym_comment] = ACTIONS(76), }, - [318] = { - [sym__expression] = STATE(510), - [sym__primary_expression] = STATE(95), + [326] = { + [sym__newline] = ACTIONS(778), + [anon_sym_from] = ACTIONS(778), + [anon_sym_DOT] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(778), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_GT_GT] = ACTIONS(778), + [anon_sym_if] = ACTIONS(778), + [anon_sym_in] = ACTIONS(778), + [anon_sym_not] = ACTIONS(778), + [anon_sym_and] = ACTIONS(778), + [anon_sym_or] = ACTIONS(778), + [anon_sym_PLUS] = ACTIONS(778), + [anon_sym_DASH] = ACTIONS(778), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_PERCENT] = ACTIONS(778), + [anon_sym_SLASH_SLASH] = ACTIONS(778), + [anon_sym_STAR_STAR] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), + [anon_sym_CARET] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_LT] = ACTIONS(780), + [anon_sym_LT_EQ] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(778), + [anon_sym_BANG_EQ] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_GT] = ACTIONS(780), + [anon_sym_LT_GT] = ACTIONS(778), + [anon_sym_is] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(778), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(778), + }, + [327] = { + [aux_sym_list_repeat1] = STATE(723), + [anon_sym_COMMA] = ACTIONS(1240), + [anon_sym_RBRACK] = ACTIONS(1238), + [sym_comment] = ACTIONS(76), + }, + [328] = { + [sym__comprehension_body] = STATE(724), + [sym_for_in_clause] = STATE(475), + [aux_sym_list_repeat1] = STATE(723), + [anon_sym_COMMA] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(784), + [anon_sym_for] = ACTIONS(786), + [anon_sym_and] = ACTIONS(788), + [anon_sym_or] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1238), + [sym_comment] = ACTIONS(76), + }, + [329] = { + [anon_sym_RBRACE] = ACTIONS(1242), + [sym_comment] = ACTIONS(76), + }, + [330] = { + [sym__newline] = ACTIONS(832), + [anon_sym_from] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_COMMA] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_if] = ACTIONS(832), + [anon_sym_in] = ACTIONS(832), + [anon_sym_not] = ACTIONS(832), + [anon_sym_and] = ACTIONS(832), + [anon_sym_or] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(832), + [anon_sym_SLASH_SLASH] = ACTIONS(832), + [anon_sym_STAR_STAR] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_CARET] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_LT_EQ] = ACTIONS(832), + [anon_sym_EQ_EQ] = ACTIONS(832), + [anon_sym_BANG_EQ] = ACTIONS(832), + [anon_sym_GT_EQ] = ACTIONS(832), + [anon_sym_GT] = ACTIONS(834), + [anon_sym_LT_GT] = ACTIONS(832), + [anon_sym_is] = ACTIONS(832), + [anon_sym_LBRACK] = ACTIONS(832), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(832), + }, + [331] = { + [aux_sym_list_repeat1] = STATE(728), + [anon_sym_COMMA] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1246), + [sym_comment] = ACTIONS(76), + }, + [332] = { + [aux_sym_dictionary_repeat1] = STATE(730), + [anon_sym_COMMA] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1242), + [sym_comment] = ACTIONS(76), + }, + [333] = { + [sym__comprehension_body] = STATE(731), + [sym_for_in_clause] = STATE(511), + [aux_sym_list_repeat1] = STATE(728), + [anon_sym_COMMA] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(842), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_for] = ACTIONS(846), + [anon_sym_and] = ACTIONS(848), + [anon_sym_or] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(1246), + [sym_comment] = ACTIONS(76), + }, + [334] = { + [sym__comprehension_body] = STATE(732), + [sym_for_in_clause] = STATE(511), + [aux_sym_dictionary_repeat1] = STATE(730), + [anon_sym_COMMA] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(1242), + [sym_comment] = ACTIONS(76), + }, + [335] = { + [sym__newline] = ACTIONS(876), + [anon_sym_from] = ACTIONS(876), + [anon_sym_DOT] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(876), + [anon_sym_COMMA] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_GT_GT] = ACTIONS(876), + [anon_sym_if] = ACTIONS(876), + [anon_sym_in] = ACTIONS(876), + [anon_sym_not] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_PERCENT] = ACTIONS(876), + [anon_sym_SLASH_SLASH] = ACTIONS(876), + [anon_sym_STAR_STAR] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_CARET] = ACTIONS(876), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_GT_EQ] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_LT_GT] = ACTIONS(876), + [anon_sym_is] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(876), + [sym_string] = ACTIONS(878), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(876), + }, + [336] = { + [aux_sym_concatenated_string_repeat1] = STATE(733), + [sym__newline] = ACTIONS(880), + [anon_sym_from] = ACTIONS(880), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(540), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(880), + }, + [337] = { + [sym__newline] = ACTIONS(884), + [anon_sym_from] = ACTIONS(884), + [anon_sym_COMMA] = ACTIONS(884), + [anon_sym_if] = ACTIONS(884), + [anon_sym_and] = ACTIONS(884), + [anon_sym_or] = ACTIONS(884), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(884), + }, + [338] = { + [sym__expression] = STATE(734), + [sym__primary_expression] = STATE(316), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), [sym_binary_operator] = STATE(76), @@ -17801,556 +18263,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_lambda] = ACTIONS(154), + [anon_sym_not] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_lambda] = ACTIONS(520), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), [sym_true] = ACTIONS(132), [sym_false] = ACTIONS(132), [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(158), + [anon_sym_await] = ACTIONS(524), [sym_comment] = ACTIONS(76), }, - [319] = { - [sym__expression] = STATE(692), - [sym__primary_expression] = STATE(95), - [sym_not_operator] = STATE(40), - [sym_boolean_operator] = STATE(40), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_comparison_operator] = STATE(40), - [sym_lambda] = STATE(40), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_conditional_expression] = STATE(40), - [sym_concatenated_string] = STATE(76), - [sym_await] = STATE(40), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_lambda] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(158), - [sym_comment] = ACTIONS(76), - }, - [320] = { - [aux_sym_print_statement_repeat1] = STATE(694), - [sym__newline] = ACTIONS(852), - [anon_sym_from] = ACTIONS(852), - [anon_sym_COMMA] = ACTIONS(1198), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(852), - }, - [321] = { - [sym__primary_expression] = STATE(695), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_concatenated_string] = STATE(76), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [sym_comment] = ACTIONS(76), - }, - [322] = { - [sym__primary_expression] = STATE(696), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_concatenated_string] = STATE(76), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [sym_comment] = ACTIONS(76), - }, - [323] = { - [sym__primary_expression] = STATE(697), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_concatenated_string] = STATE(76), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [sym_comment] = ACTIONS(76), - }, - [324] = { - [anon_sym_in] = ACTIONS(1200), - [sym_comment] = ACTIONS(76), - }, - [325] = { - [sym__primary_expression] = STATE(699), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_concatenated_string] = STATE(76), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [sym_comment] = ACTIONS(76), - }, - [326] = { - [sym__primary_expression] = STATE(660), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_concatenated_string] = STATE(76), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [sym_comment] = ACTIONS(76), - }, - [327] = { - [sym__primary_expression] = STATE(700), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_concatenated_string] = STATE(76), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [sym_comment] = ACTIONS(76), - }, - [328] = { - [sym__primary_expression] = STATE(701), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_concatenated_string] = STATE(76), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [sym_comment] = ACTIONS(76), - }, - [329] = { - [sym__primary_expression] = STATE(702), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_concatenated_string] = STATE(76), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [sym_comment] = ACTIONS(76), - }, - [330] = { - [sym__primary_expression] = STATE(697), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_concatenated_string] = STATE(76), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [sym_comment] = ACTIONS(76), - }, - [331] = { - [aux_sym_comparison_operator_repeat1] = STATE(703), - [sym__newline] = ACTIONS(900), - [anon_sym_from] = ACTIONS(900), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_in] = ACTIONS(530), - [anon_sym_not] = ACTIONS(532), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_LT_EQ] = ACTIONS(530), - [anon_sym_EQ_EQ] = ACTIONS(530), - [anon_sym_BANG_EQ] = ACTIONS(530), - [anon_sym_GT_EQ] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(546), - [anon_sym_LT_GT] = ACTIONS(530), - [anon_sym_is] = ACTIONS(548), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(900), - }, - [332] = { - [ts_builtin_sym_end] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(1206), - [anon_sym_from] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_print] = ACTIONS(1206), - [anon_sym_assert] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_del] = ACTIONS(1206), - [anon_sym_raise] = ACTIONS(1206), - [sym_pass_statement] = ACTIONS(1206), - [sym_break_statement] = ACTIONS(1206), - [sym_continue_statement] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_try] = ACTIONS(1206), - [anon_sym_with] = ACTIONS(1206), - [anon_sym_async] = ACTIONS(1206), - [anon_sym_def] = ACTIONS(1206), - [anon_sym_global] = ACTIONS(1206), - [anon_sym_nonlocal] = ACTIONS(1206), - [anon_sym_exec] = ACTIONS(1206), - [anon_sym_class] = ACTIONS(1206), - [anon_sym_AT] = ACTIONS(1204), - [anon_sym_not] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_lambda] = ACTIONS(1206), - [anon_sym_yield] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1204), - [sym_ellipsis] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1204), - [sym_string] = ACTIONS(1206), - [sym_integer] = ACTIONS(1206), - [sym_float] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [sym_none] = ACTIONS(1206), - [anon_sym_await] = ACTIONS(1206), - [sym_comment] = ACTIONS(76), - }, - [333] = { - [sym__newline] = ACTIONS(1210), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1210), - }, - [334] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), - [sym_expression_list] = STATE(37), - [sym__expression] = STATE(38), - [sym__primary_expression] = STATE(39), - [sym_not_operator] = STATE(40), - [sym_boolean_operator] = STATE(40), - [sym_binary_operator] = STATE(28), - [sym_unary_operator] = STATE(28), - [sym_comparison_operator] = STATE(40), - [sym_lambda] = STATE(40), - [sym_assignment] = STATE(41), - [sym_augmented_assignment] = STATE(41), - [sym_yield] = STATE(41), - [sym_attribute] = STATE(28), - [sym_subscript] = STATE(28), - [sym_call] = STATE(28), - [sym_list] = STATE(28), - [sym_list_comprehension] = STATE(28), - [sym_dictionary] = STATE(28), - [sym_dictionary_comprehension] = STATE(28), - [sym_set] = STATE(28), - [sym_set_comprehension] = STATE(28), - [sym_parenthesized_expression] = STATE(28), - [sym_tuple] = STATE(28), - [sym_generator_expression] = STATE(28), - [sym_conditional_expression] = STATE(40), - [sym_concatenated_string] = STATE(28), - [sym_await] = STATE(40), - [sym__newline] = ACTIONS(1212), - [anon_sym_import] = ACTIONS(12), - [anon_sym_from] = ACTIONS(14), - [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(18), - [anon_sym_assert] = ACTIONS(20), - [anon_sym_return] = ACTIONS(22), - [anon_sym_del] = ACTIONS(24), - [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), - [anon_sym_global] = ACTIONS(44), - [anon_sym_nonlocal] = ACTIONS(46), - [anon_sym_exec] = ACTIONS(48), - [anon_sym_not] = ACTIONS(54), - [anon_sym_PLUS] = ACTIONS(56), - [anon_sym_DASH] = ACTIONS(56), - [anon_sym_TILDE] = ACTIONS(56), - [anon_sym_lambda] = ACTIONS(58), - [anon_sym_yield] = ACTIONS(60), - [anon_sym_LBRACK] = ACTIONS(62), - [sym_ellipsis] = ACTIONS(64), - [anon_sym_LBRACE] = ACTIONS(66), - [sym_string] = ACTIONS(68), - [sym_integer] = ACTIONS(70), - [sym_float] = ACTIONS(70), - [sym_identifier] = ACTIONS(72), - [sym_true] = ACTIONS(70), - [sym_false] = ACTIONS(70), - [sym_none] = ACTIONS(70), - [anon_sym_await] = ACTIONS(74), - [sym_comment] = ACTIONS(76), - }, - [335] = { - [aux_sym__simple_statements_repeat1] = STATE(335), - [sym__newline] = ACTIONS(1210), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1214), - }, - [336] = { - [anon_sym_if] = ACTIONS(690), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_and] = ACTIONS(568), - [anon_sym_or] = ACTIONS(570), + [339] = { + [sym__expression] = STATE(735), + [sym__primary_expression] = STATE(100), + [sym_not_operator] = STATE(101), + [sym_boolean_operator] = STATE(101), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_comparison_operator] = STATE(101), + [sym_lambda] = STATE(101), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_conditional_expression] = STATE(101), + [sym_concatenated_string] = STATE(94), + [sym_await] = STATE(101), + [sym__newline] = ACTIONS(888), + [anon_sym_from] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_not] = ACTIONS(154), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_lambda] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [anon_sym_await] = ACTIONS(172), [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(888), }, - [337] = { - [sym__expression] = STATE(706), - [sym__primary_expression] = STATE(105), + [340] = { + [sym__expression] = STATE(736), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -18375,65 +18356,500 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(900), + [sym_comment] = ACTIONS(76), + }, + [341] = { + [sym__expression] = STATE(737), + [sym__primary_expression] = STATE(100), + [sym_not_operator] = STATE(101), + [sym_boolean_operator] = STATE(101), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_comparison_operator] = STATE(101), + [sym_lambda] = STATE(101), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_conditional_expression] = STATE(101), + [sym_concatenated_string] = STATE(94), + [sym_await] = STATE(101), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_not] = ACTIONS(154), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_lambda] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), [anon_sym_await] = ACTIONS(172), [sym_comment] = ACTIONS(76), }, - [338] = { - [anon_sym_COLON] = ACTIONS(1217), + [342] = { + [sym__expression] = STATE(738), + [sym__primary_expression] = STATE(100), + [sym_not_operator] = STATE(101), + [sym_boolean_operator] = STATE(101), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_comparison_operator] = STATE(101), + [sym_lambda] = STATE(101), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_conditional_expression] = STATE(101), + [sym_concatenated_string] = STATE(94), + [sym_await] = STATE(101), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_not] = ACTIONS(154), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_lambda] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [anon_sym_await] = ACTIONS(172), [sym_comment] = ACTIONS(76), }, - [339] = { - [aux_sym_concatenated_string_repeat1] = STATE(708), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [343] = { + [aux_sym_print_statement_repeat1] = STATE(740), + [sym__newline] = ACTIONS(888), + [anon_sym_from] = ACTIONS(888), + [anon_sym_COMMA] = ACTIONS(1252), [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(888), }, - [340] = { - [sym__expression] = STATE(709), - [sym__primary_expression] = STATE(509), + [344] = { + [sym_identifier] = ACTIONS(1254), + [sym_comment] = ACTIONS(76), + }, + [345] = { + [sym_list_splat] = STATE(744), + [sym_dictionary_splat] = STATE(744), + [sym__expression] = STATE(745), + [sym__primary_expression] = STATE(66), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_keyword_argument] = STATE(744), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_RPAREN] = ACTIONS(1256), + [anon_sym_COMMA] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), + [anon_sym_not] = ACTIONS(92), + [anon_sym_PLUS] = ACTIONS(94), + [anon_sym_DASH] = ACTIONS(94), + [anon_sym_TILDE] = ACTIONS(94), + [anon_sym_lambda] = ACTIONS(96), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(106), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(914), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(112), + [sym_comment] = ACTIONS(76), + }, + [346] = { + [sym__primary_expression] = STATE(746), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_concatenated_string] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [sym_comment] = ACTIONS(76), + }, + [347] = { + [sym__primary_expression] = STATE(747), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_concatenated_string] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [sym_comment] = ACTIONS(76), + }, + [348] = { + [sym__primary_expression] = STATE(748), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_concatenated_string] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [sym_comment] = ACTIONS(76), + }, + [349] = { + [anon_sym_in] = ACTIONS(1260), + [sym_comment] = ACTIONS(76), + }, + [350] = { + [sym__primary_expression] = STATE(750), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_concatenated_string] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [sym_comment] = ACTIONS(76), + }, + [351] = { + [sym__primary_expression] = STATE(751), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_concatenated_string] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [sym_comment] = ACTIONS(76), + }, + [352] = { + [sym__primary_expression] = STATE(752), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_concatenated_string] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [sym_comment] = ACTIONS(76), + }, + [353] = { + [sym__primary_expression] = STATE(753), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_concatenated_string] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [sym_comment] = ACTIONS(76), + }, + [354] = { + [sym__primary_expression] = STATE(754), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_concatenated_string] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [sym_comment] = ACTIONS(76), + }, + [355] = { + [sym__primary_expression] = STATE(748), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_concatenated_string] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_not] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [sym_comment] = ACTIONS(76), + }, + [356] = { + [sym__expression] = STATE(755), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -18442,6 +18858,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_lambda] = STATE(67), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), + [sym_slice] = STATE(756), [sym_call] = STATE(61), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), @@ -18457,39 +18874,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), + [anon_sym_COLON] = ACTIONS(920), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [341] = { - [sym__simple_statements] = STATE(712), - [sym_import_statement] = STATE(711), - [sym_import_from_statement] = STATE(711), - [sym_print_statement] = STATE(711), - [sym_assert_statement] = STATE(711), - [sym_expression_statement] = STATE(711), - [sym_return_statement] = STATE(711), - [sym_delete_statement] = STATE(711), - [sym_raise_statement] = STATE(711), - [sym_global_statement] = STATE(711), - [sym_nonlocal_statement] = STATE(711), - [sym_exec_statement] = STATE(711), - [sym__suite] = STATE(713), + [357] = { + [sym__newline] = ACTIONS(932), + [anon_sym_from] = ACTIONS(932), + [anon_sym_DOT] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_COMMA] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_GT_GT] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_in] = ACTIONS(932), + [anon_sym_not] = ACTIONS(932), + [anon_sym_and] = ACTIONS(932), + [anon_sym_or] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_SLASH] = ACTIONS(934), + [anon_sym_PERCENT] = ACTIONS(932), + [anon_sym_SLASH_SLASH] = ACTIONS(932), + [anon_sym_STAR_STAR] = ACTIONS(932), + [anon_sym_PIPE] = ACTIONS(932), + [anon_sym_AMP] = ACTIONS(932), + [anon_sym_CARET] = ACTIONS(932), + [anon_sym_LT_LT] = ACTIONS(932), + [anon_sym_LT] = ACTIONS(934), + [anon_sym_LT_EQ] = ACTIONS(932), + [anon_sym_EQ_EQ] = ACTIONS(932), + [anon_sym_BANG_EQ] = ACTIONS(932), + [anon_sym_GT_EQ] = ACTIONS(932), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_LT_GT] = ACTIONS(932), + [anon_sym_is] = ACTIONS(932), + [anon_sym_LBRACK] = ACTIONS(932), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(932), + }, + [358] = { + [aux_sym_comparison_operator_repeat1] = STATE(757), + [sym__newline] = ACTIONS(936), + [anon_sym_from] = ACTIONS(936), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_in] = ACTIONS(562), + [anon_sym_not] = ACTIONS(564), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(578), + [anon_sym_LT_GT] = ACTIONS(562), + [anon_sym_is] = ACTIONS(580), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(936), + }, + [359] = { + [ts_builtin_sym_end] = ACTIONS(1264), + [anon_sym_import] = ACTIONS(1266), + [anon_sym_from] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_print] = ACTIONS(1266), + [anon_sym_assert] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_del] = ACTIONS(1266), + [anon_sym_raise] = ACTIONS(1266), + [sym_pass_statement] = ACTIONS(1266), + [sym_break_statement] = ACTIONS(1266), + [sym_continue_statement] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_with] = ACTIONS(1266), + [anon_sym_async] = ACTIONS(1266), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_global] = ACTIONS(1266), + [anon_sym_nonlocal] = ACTIONS(1266), + [anon_sym_exec] = ACTIONS(1266), + [anon_sym_class] = ACTIONS(1266), + [anon_sym_AT] = ACTIONS(1264), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_lambda] = ACTIONS(1266), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [sym_ellipsis] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [sym_string] = ACTIONS(1266), + [sym_integer] = ACTIONS(1266), + [sym_float] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [sym_none] = ACTIONS(1266), + [anon_sym_await] = ACTIONS(1266), + [sym_comment] = ACTIONS(76), + }, + [360] = { + [sym__newline] = ACTIONS(1270), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1270), + }, + [361] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -18517,7 +19038,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(1219), + [sym__newline] = ACTIONS(1272), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -18526,9 +19047,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1221), - [sym_break_statement] = ACTIONS(1221), - [sym_continue_statement] = ACTIONS(1221), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -18551,9 +19072,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [342] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(105), + [362] = { + [aux_sym__simple_statements_repeat1] = STATE(362), + [sym__newline] = ACTIONS(1270), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1274), + }, + [363] = { + [anon_sym_if] = ACTIONS(726), + [anon_sym_COLON] = ACTIONS(726), + [anon_sym_and] = ACTIONS(602), + [anon_sym_or] = ACTIONS(604), + [sym_comment] = ACTIONS(76), + }, + [364] = { + [sym__expression] = STATE(760), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -18578,27 +19112,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [343] = { - [sym__expression] = STATE(714), - [sym__primary_expression] = STATE(105), + [365] = { + [anon_sym_COLON] = ACTIONS(1277), + [sym_comment] = ACTIONS(76), + }, + [366] = { + [aux_sym_concatenated_string_repeat1] = STATE(762), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_COLON] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(406), + [sym_comment] = ACTIONS(76), + }, + [367] = { + [sym__expression] = STATE(763), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -18623,28 +19195,153 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [344] = { - [sym__primary_expression] = STATE(715), + [368] = { + [sym__simple_statements] = STATE(766), + [sym_import_statement] = STATE(765), + [sym_import_from_statement] = STATE(765), + [sym_print_statement] = STATE(765), + [sym_assert_statement] = STATE(765), + [sym_expression_statement] = STATE(765), + [sym_return_statement] = STATE(765), + [sym_delete_statement] = STATE(765), + [sym_raise_statement] = STATE(765), + [sym_global_statement] = STATE(765), + [sym_nonlocal_statement] = STATE(765), + [sym_exec_statement] = STATE(765), + [sym__suite] = STATE(767), + [sym_expression_list] = STATE(37), + [sym__expression] = STATE(38), + [sym__primary_expression] = STATE(39), + [sym_not_operator] = STATE(40), + [sym_boolean_operator] = STATE(40), + [sym_binary_operator] = STATE(28), + [sym_unary_operator] = STATE(28), + [sym_comparison_operator] = STATE(40), + [sym_lambda] = STATE(40), + [sym_assignment] = STATE(41), + [sym_augmented_assignment] = STATE(41), + [sym_yield] = STATE(41), + [sym_attribute] = STATE(28), + [sym_subscript] = STATE(28), + [sym_call] = STATE(28), + [sym_list] = STATE(28), + [sym_list_comprehension] = STATE(28), + [sym_dictionary] = STATE(28), + [sym_dictionary_comprehension] = STATE(28), + [sym_set] = STATE(28), + [sym_set_comprehension] = STATE(28), + [sym_parenthesized_expression] = STATE(28), + [sym_tuple] = STATE(28), + [sym_generator_expression] = STATE(28), + [sym_conditional_expression] = STATE(40), + [sym_concatenated_string] = STATE(28), + [sym_await] = STATE(40), + [sym__indent] = ACTIONS(1279), + [anon_sym_import] = ACTIONS(12), + [anon_sym_from] = ACTIONS(14), + [anon_sym_LPAREN] = ACTIONS(16), + [anon_sym_print] = ACTIONS(18), + [anon_sym_assert] = ACTIONS(20), + [anon_sym_return] = ACTIONS(22), + [anon_sym_del] = ACTIONS(24), + [anon_sym_raise] = ACTIONS(26), + [sym_pass_statement] = ACTIONS(1281), + [sym_break_statement] = ACTIONS(1281), + [sym_continue_statement] = ACTIONS(1281), + [anon_sym_global] = ACTIONS(44), + [anon_sym_nonlocal] = ACTIONS(46), + [anon_sym_exec] = ACTIONS(48), + [anon_sym_not] = ACTIONS(54), + [anon_sym_PLUS] = ACTIONS(56), + [anon_sym_DASH] = ACTIONS(56), + [anon_sym_TILDE] = ACTIONS(56), + [anon_sym_lambda] = ACTIONS(58), + [anon_sym_yield] = ACTIONS(60), + [anon_sym_LBRACK] = ACTIONS(62), + [sym_ellipsis] = ACTIONS(64), + [anon_sym_LBRACE] = ACTIONS(66), + [sym_string] = ACTIONS(68), + [sym_integer] = ACTIONS(70), + [sym_float] = ACTIONS(70), + [sym_identifier] = ACTIONS(72), + [sym_true] = ACTIONS(70), + [sym_false] = ACTIONS(70), + [sym_none] = ACTIONS(70), + [anon_sym_await] = ACTIONS(74), + [sym_comment] = ACTIONS(76), + }, + [369] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(111), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(184), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(186), + [sym_comment] = ACTIONS(76), + }, + [370] = { + [sym__expression] = STATE(768), + [sym__primary_expression] = STATE(111), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -18657,27 +19354,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(61), [sym_tuple] = STATE(61), [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [345] = { - [sym__primary_expression] = STATE(716), + [371] = { + [sym__primary_expression] = STATE(769), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -18696,13 +19398,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -18711,8 +19413,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [346] = { - [sym__primary_expression] = STATE(717), + [372] = { + [sym__primary_expression] = STATE(770), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -18731,13 +19433,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -18746,12 +19448,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [347] = { - [anon_sym_in] = ACTIONS(1223), + [373] = { + [sym__primary_expression] = STATE(771), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_concatenated_string] = STATE(61), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(184), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [348] = { - [sym__primary_expression] = STATE(719), + [374] = { + [anon_sym_in] = ACTIONS(1283), + [sym_comment] = ACTIONS(76), + }, + [375] = { + [sym__primary_expression] = STATE(773), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -18770,13 +19507,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -18785,8 +19522,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [349] = { - [sym__primary_expression] = STATE(618), + [376] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -18805,13 +19542,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -18820,8 +19557,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [350] = { - [sym__primary_expression] = STATE(720), + [377] = { + [sym__primary_expression] = STATE(774), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -18840,13 +19577,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -18855,8 +19592,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [351] = { - [sym__primary_expression] = STATE(721), + [378] = { + [sym__primary_expression] = STATE(775), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -18875,13 +19612,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -18890,8 +19627,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [352] = { - [sym__primary_expression] = STATE(722), + [379] = { + [sym__primary_expression] = STATE(776), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -18910,13 +19647,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -18925,8 +19662,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [353] = { - [sym__primary_expression] = STATE(717), + [380] = { + [sym__primary_expression] = STATE(771), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -18945,14 +19682,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_not] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -18961,50 +19698,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [354] = { - [aux_sym_comparison_operator_repeat1] = STATE(723), - [anon_sym_if] = ACTIONS(900), - [anon_sym_COLON] = ACTIONS(900), - [anon_sym_in] = ACTIONS(576), - [anon_sym_not] = ACTIONS(578), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_LT_GT] = ACTIONS(576), - [anon_sym_is] = ACTIONS(594), + [381] = { + [aux_sym_comparison_operator_repeat1] = STATE(777), + [anon_sym_if] = ACTIONS(936), + [anon_sym_COLON] = ACTIONS(936), + [anon_sym_in] = ACTIONS(610), + [anon_sym_not] = ACTIONS(612), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_LT_GT] = ACTIONS(610), + [anon_sym_is] = ACTIONS(628), [sym_comment] = ACTIONS(76), }, - [355] = { - [aux_sym_concatenated_string_repeat1] = STATE(724), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [382] = { + [aux_sym_concatenated_string_repeat1] = STATE(778), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [356] = { - [sym_expression_list] = STATE(725), - [sym__expression] = STATE(726), - [sym__primary_expression] = STATE(415), + [383] = { + [sym_expression_list] = STATE(779), + [sym__expression] = STATE(780), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -19029,26 +19766,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [357] = { - [sym__primary_expression] = STATE(727), + [384] = { + [sym__primary_expression] = STATE(781), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -19066,15 +19803,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_in] = ACTIONS(1227), + [anon_sym_in] = ACTIONS(1287), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(176), + [sym_string] = ACTIONS(190), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -19083,8 +19820,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [358] = { - [sym__primary_expression] = STATE(728), + [385] = { + [sym__primary_expression] = STATE(782), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -19103,13 +19840,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(176), + [sym_string] = ACTIONS(190), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -19118,8 +19855,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [359] = { - [sym__primary_expression] = STATE(729), + [386] = { + [sym__primary_expression] = STATE(783), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -19138,13 +19875,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(176), + [sym_string] = ACTIONS(190), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -19153,8 +19890,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [360] = { - [sym__primary_expression] = STATE(730), + [387] = { + [sym__primary_expression] = STATE(784), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -19173,13 +19910,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(176), + [sym_string] = ACTIONS(190), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -19188,8 +19925,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [361] = { - [sym__primary_expression] = STATE(618), + [388] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -19208,13 +19945,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(176), + [sym_string] = ACTIONS(190), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -19223,8 +19960,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [362] = { - [sym__primary_expression] = STATE(731), + [389] = { + [sym__primary_expression] = STATE(785), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -19243,13 +19980,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(176), + [sym_string] = ACTIONS(190), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -19258,8 +19995,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [363] = { - [sym__primary_expression] = STATE(732), + [390] = { + [sym__primary_expression] = STATE(786), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -19278,13 +20015,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(176), + [sym_string] = ACTIONS(190), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -19293,8 +20030,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [364] = { - [sym__primary_expression] = STATE(733), + [391] = { + [sym__primary_expression] = STATE(787), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -19313,13 +20050,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(176), + [sym_string] = ACTIONS(190), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -19328,26 +20065,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [365] = { - [aux_sym_variables_repeat1] = STATE(735), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_in] = ACTIONS(1231), + [392] = { + [aux_sym_variables_repeat1] = STATE(789), + [anon_sym_COMMA] = ACTIONS(1289), + [anon_sym_in] = ACTIONS(1291), [sym_comment] = ACTIONS(76), }, - [366] = { - [sym__simple_statements] = STATE(738), - [sym_import_statement] = STATE(737), - [sym_import_from_statement] = STATE(737), - [sym_print_statement] = STATE(737), - [sym_assert_statement] = STATE(737), - [sym_expression_statement] = STATE(737), - [sym_return_statement] = STATE(737), - [sym_delete_statement] = STATE(737), - [sym_raise_statement] = STATE(737), - [sym_global_statement] = STATE(737), - [sym_nonlocal_statement] = STATE(737), - [sym_exec_statement] = STATE(737), - [sym__suite] = STATE(739), + [393] = { + [sym__simple_statements] = STATE(792), + [sym_import_statement] = STATE(791), + [sym_import_from_statement] = STATE(791), + [sym_print_statement] = STATE(791), + [sym_assert_statement] = STATE(791), + [sym_expression_statement] = STATE(791), + [sym_return_statement] = STATE(791), + [sym_delete_statement] = STATE(791), + [sym_raise_statement] = STATE(791), + [sym_global_statement] = STATE(791), + [sym_nonlocal_statement] = STATE(791), + [sym_exec_statement] = STATE(791), + [sym__suite] = STATE(793), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -19375,7 +20112,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(1233), + [sym__indent] = ACTIONS(1293), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -19384,9 +20121,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1235), - [sym_break_statement] = ACTIONS(1235), - [sym_continue_statement] = ACTIONS(1235), + [sym_pass_statement] = ACTIONS(1295), + [sym_break_statement] = ACTIONS(1295), + [sym_continue_statement] = ACTIONS(1295), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -19409,30 +20146,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [367] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [394] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -19461,9 +20198,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(753), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(1237), + [aux_sym_module_repeat1] = STATE(807), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(1297), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -19472,20 +20209,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -19506,79 +20243,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [368] = { - [aux_sym__simple_statements_repeat1] = STATE(757), - [sym__newline] = ACTIONS(1257), + [395] = { + [aux_sym__simple_statements_repeat1] = STATE(811), + [sym__newline] = ACTIONS(1317), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1259), + [sym__semicolon] = ACTIONS(1319), }, - [369] = { - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_import] = ACTIONS(1263), - [anon_sym_from] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_print] = ACTIONS(1263), - [anon_sym_assert] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_del] = ACTIONS(1263), - [anon_sym_raise] = ACTIONS(1263), - [sym_pass_statement] = ACTIONS(1263), - [sym_break_statement] = ACTIONS(1263), - [sym_continue_statement] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_except] = ACTIONS(1263), - [anon_sym_finally] = ACTIONS(1263), - [anon_sym_with] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_global] = ACTIONS(1263), - [anon_sym_nonlocal] = ACTIONS(1263), - [anon_sym_exec] = ACTIONS(1263), - [anon_sym_class] = ACTIONS(1263), - [anon_sym_AT] = ACTIONS(1261), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_yield] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1261), - [sym_ellipsis] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [sym_string] = ACTIONS(1263), - [sym_integer] = ACTIONS(1263), - [sym_float] = ACTIONS(1263), - [sym_identifier] = ACTIONS(1265), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [sym_none] = ACTIONS(1263), - [anon_sym_await] = ACTIONS(1263), + [396] = { + [ts_builtin_sym_end] = ACTIONS(1321), + [anon_sym_import] = ACTIONS(1323), + [anon_sym_from] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_print] = ACTIONS(1323), + [anon_sym_assert] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_del] = ACTIONS(1323), + [anon_sym_raise] = ACTIONS(1323), + [sym_pass_statement] = ACTIONS(1323), + [sym_break_statement] = ACTIONS(1323), + [sym_continue_statement] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_else] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_try] = ACTIONS(1323), + [anon_sym_except] = ACTIONS(1323), + [anon_sym_finally] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1323), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(1323), + [anon_sym_global] = ACTIONS(1323), + [anon_sym_nonlocal] = ACTIONS(1323), + [anon_sym_exec] = ACTIONS(1323), + [anon_sym_class] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(1321), + [anon_sym_not] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_lambda] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1321), + [sym_ellipsis] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [sym_string] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [sym_identifier] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [sym_none] = ACTIONS(1323), + [anon_sym_await] = ACTIONS(1323), [sym_comment] = ACTIONS(76), }, - [370] = { - [sym_except_clause] = STATE(760), - [sym_finally_clause] = STATE(761), - [aux_sym_try_statement_repeat1] = STATE(762), - [anon_sym_except] = ACTIONS(1267), - [anon_sym_finally] = ACTIONS(1269), + [397] = { + [sym_except_clause] = STATE(814), + [sym_finally_clause] = STATE(815), + [aux_sym_try_statement_repeat1] = STATE(816), + [anon_sym_except] = ACTIONS(1327), + [anon_sym_finally] = ACTIONS(1329), [sym_comment] = ACTIONS(76), }, - [371] = { - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_as] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_and] = ACTIONS(636), - [anon_sym_or] = ACTIONS(638), + [398] = { + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_as] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_COLON] = ACTIONS(726), + [anon_sym_and] = ACTIONS(670), + [anon_sym_or] = ACTIONS(672), [sym_comment] = ACTIONS(76), }, - [372] = { - [sym__expression] = STATE(763), - [sym__primary_expression] = STATE(119), + [399] = { + [sym__expression] = STATE(817), + [sym__primary_expression] = STATE(125), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -19603,68 +20340,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_lambda] = ACTIONS(184), + [anon_sym_not] = ACTIONS(194), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_lambda] = ACTIONS(198), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(188), + [anon_sym_await] = ACTIONS(202), [sym_comment] = ACTIONS(76), }, - [373] = { - [anon_sym_COLON] = ACTIONS(1271), + [400] = { + [anon_sym_COLON] = ACTIONS(1331), [sym_comment] = ACTIONS(76), }, - [374] = { - [aux_sym_concatenated_string_repeat1] = STATE(765), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_as] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [401] = { + [aux_sym_concatenated_string_repeat1] = STATE(819), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_as] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_COLON] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [375] = { - [sym_with_item] = STATE(766), - [sym__expression] = STATE(118), - [sym__primary_expression] = STATE(119), + [402] = { + [sym_with_item] = STATE(820), + [sym__expression] = STATE(124), + [sym__primary_expression] = STATE(125), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -19689,26 +20426,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_lambda] = ACTIONS(184), + [anon_sym_not] = ACTIONS(194), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_lambda] = ACTIONS(198), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(188), + [anon_sym_await] = ACTIONS(202), [sym_comment] = ACTIONS(76), }, - [376] = { - [sym__simple_statements] = STATE(768), + [403] = { + [sym__simple_statements] = STATE(822), [sym_import_statement] = STATE(10), [sym_import_from_statement] = STATE(10), [sym_print_statement] = STATE(10), @@ -19720,7 +20457,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_global_statement] = STATE(10), [sym_nonlocal_statement] = STATE(10), [sym_exec_statement] = STATE(10), - [sym__suite] = STATE(769), + [sym__suite] = STATE(823), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -19748,7 +20485,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(1273), + [sym__indent] = ACTIONS(1333), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -19782,15 +20519,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [377] = { - [aux_sym_with_statement_repeat1] = STATE(771), - [anon_sym_COMMA] = ACTIONS(626), - [anon_sym_COLON] = ACTIONS(1275), + [404] = { + [aux_sym_with_statement_repeat1] = STATE(825), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_COLON] = ACTIONS(1335), [sym_comment] = ACTIONS(76), }, - [378] = { - [sym__expression] = STATE(772), - [sym__primary_expression] = STATE(415), + [405] = { + [sym__expression] = STATE(826), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -19815,27 +20552,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [379] = { - [sym__expression] = STATE(773), - [sym__primary_expression] = STATE(509), + [406] = { + [sym__expression] = STATE(827), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -19860,27 +20597,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [380] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(119), + [407] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(125), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -19905,27 +20642,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_lambda] = ACTIONS(184), + [anon_sym_not] = ACTIONS(194), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_lambda] = ACTIONS(198), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(188), + [anon_sym_await] = ACTIONS(202), [sym_comment] = ACTIONS(76), }, - [381] = { - [sym__expression] = STATE(774), - [sym__primary_expression] = STATE(119), + [408] = { + [sym__expression] = STATE(828), + [sym__primary_expression] = STATE(125), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -19950,26 +20687,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_lambda] = ACTIONS(184), + [anon_sym_not] = ACTIONS(194), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_lambda] = ACTIONS(198), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(188), + [anon_sym_await] = ACTIONS(202), [sym_comment] = ACTIONS(76), }, - [382] = { - [sym__primary_expression] = STATE(775), + [409] = { + [sym__primary_expression] = STATE(829), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -19988,13 +20725,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -20003,8 +20740,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [383] = { - [sym__primary_expression] = STATE(776), + [410] = { + [sym__primary_expression] = STATE(830), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -20023,13 +20760,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -20038,8 +20775,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [384] = { - [sym__primary_expression] = STATE(777), + [411] = { + [sym__primary_expression] = STATE(831), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -20058,13 +20795,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -20073,12 +20810,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [385] = { - [anon_sym_in] = ACTIONS(1277), + [412] = { + [anon_sym_in] = ACTIONS(1337), [sym_comment] = ACTIONS(76), }, - [386] = { - [sym__primary_expression] = STATE(779), + [413] = { + [sym__primary_expression] = STATE(833), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -20097,13 +20834,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -20112,8 +20849,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [387] = { - [sym__primary_expression] = STATE(618), + [414] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -20132,13 +20869,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -20147,8 +20884,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [388] = { - [sym__primary_expression] = STATE(780), + [415] = { + [sym__primary_expression] = STATE(834), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -20167,13 +20904,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -20182,8 +20919,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [389] = { - [sym__primary_expression] = STATE(781), + [416] = { + [sym__primary_expression] = STATE(835), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -20202,13 +20939,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -20217,8 +20954,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [390] = { - [sym__primary_expression] = STATE(782), + [417] = { + [sym__primary_expression] = STATE(836), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -20237,13 +20974,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -20252,8 +20989,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [391] = { - [sym__primary_expression] = STATE(777), + [418] = { + [sym__primary_expression] = STATE(831), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -20272,14 +21009,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), + [anon_sym_not] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -20288,67 +21025,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [392] = { - [aux_sym_comparison_operator_repeat1] = STATE(783), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_as] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_COLON] = ACTIONS(900), - [anon_sym_in] = ACTIONS(644), - [anon_sym_not] = ACTIONS(646), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(660), - [anon_sym_LT_GT] = ACTIONS(644), - [anon_sym_is] = ACTIONS(662), + [419] = { + [aux_sym_comparison_operator_repeat1] = STATE(837), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_as] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_COLON] = ACTIONS(936), + [anon_sym_in] = ACTIONS(678), + [anon_sym_not] = ACTIONS(680), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(678), + [anon_sym_EQ_EQ] = ACTIONS(678), + [anon_sym_BANG_EQ] = ACTIONS(678), + [anon_sym_GT_EQ] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_LT_GT] = ACTIONS(678), + [anon_sym_is] = ACTIONS(696), [sym_comment] = ACTIONS(76), }, - [393] = { - [sym__parameters] = STATE(788), - [sym_default_parameter] = STATE(789), - [sym_typed_default_parameter] = STATE(789), - [sym_list_splat] = STATE(790), - [sym_dictionary_splat] = STATE(790), - [sym_typed_parameter] = STATE(789), - [sym_tuple] = STATE(789), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_print] = ACTIONS(1285), - [anon_sym_exec] = ACTIONS(1285), - [sym_identifier] = ACTIONS(1287), + [420] = { + [sym__parameters] = STATE(842), + [sym_default_parameter] = STATE(843), + [sym_typed_default_parameter] = STATE(843), + [sym_list_splat] = STATE(844), + [sym_dictionary_splat] = STATE(844), + [sym_typed_parameter] = STATE(843), + [sym_tuple] = STATE(843), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_RPAREN] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_print] = ACTIONS(1345), + [anon_sym_exec] = ACTIONS(1345), + [sym_identifier] = ACTIONS(1347), [sym_comment] = ACTIONS(76), }, - [394] = { - [anon_sym_COLON] = ACTIONS(1289), - [anon_sym_DASH_GT] = ACTIONS(1291), + [421] = { + [anon_sym_COLON] = ACTIONS(1349), + [anon_sym_DASH_GT] = ACTIONS(1351), [sym_comment] = ACTIONS(76), }, - [395] = { - [sym_identifier] = ACTIONS(1293), + [422] = { + [sym_identifier] = ACTIONS(1353), [sym_comment] = ACTIONS(76), }, - [396] = { - [aux_sym_global_statement_repeat1] = STATE(794), - [sym__newline] = ACTIONS(1295), - [anon_sym_COMMA] = ACTIONS(674), + [423] = { + [aux_sym_global_statement_repeat1] = STATE(848), + [sym__newline] = ACTIONS(1355), + [anon_sym_COMMA] = ACTIONS(708), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1295), + [sym__semicolon] = ACTIONS(1355), }, - [397] = { - [aux_sym_global_statement_repeat1] = STATE(794), - [sym__newline] = ACTIONS(1297), - [anon_sym_COMMA] = ACTIONS(674), + [424] = { + [aux_sym_global_statement_repeat1] = STATE(848), + [sym__newline] = ACTIONS(1357), + [anon_sym_COMMA] = ACTIONS(708), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1297), + [sym__semicolon] = ACTIONS(1357), }, - [398] = { - [sym__expression] = STATE(795), + [425] = { + [sym__expression] = STATE(849), [sym__primary_expression] = STATE(82), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -20392,11 +21129,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(136), [sym_comment] = ACTIONS(76), }, - [399] = { - [sym_list_splat] = STATE(611), - [sym_dictionary_splat] = STATE(611), - [sym__expression] = STATE(796), - [sym__primary_expression] = STATE(221), + [426] = { + [sym_list_splat] = STATE(639), + [sym_dictionary_splat] = STATE(639), + [sym__expression] = STATE(850), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -20406,7 +21143,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_keyword_argument] = STATE(611), + [sym_keyword_argument] = STATE(639), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -20420,31 +21157,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1114), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_print] = ACTIONS(876), - [anon_sym_exec] = ACTIONS(876), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_RPAREN] = ACTIONS(1148), + [anon_sym_COMMA] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(878), + [sym_identifier] = ACTIONS(914), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [400] = { - [sym__simple_statements] = STATE(768), + [427] = { + [sym__simple_statements] = STATE(822), [sym_import_statement] = STATE(10), [sym_import_from_statement] = STATE(10), [sym_print_statement] = STATE(10), @@ -20456,7 +21193,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_global_statement] = STATE(10), [sym_nonlocal_statement] = STATE(10), [sym_exec_statement] = STATE(10), - [sym__suite] = STATE(797), + [sym__suite] = STATE(851), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -20484,7 +21221,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(1273), + [sym__indent] = ACTIONS(1333), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -20518,29 +21255,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [401] = { - [anon_sym_COLON] = ACTIONS(1299), + [428] = { + [anon_sym_COLON] = ACTIONS(1359), [sym_comment] = ACTIONS(76), }, - [402] = { - [aux_sym_dotted_name_repeat1] = STATE(799), - [sym__newline] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(336), - [anon_sym_LPAREN] = ACTIONS(1015), + [429] = { + [sym_identifier] = ACTIONS(1361), [sym_comment] = ACTIONS(76), }, - [403] = { - [anon_sym_async] = ACTIONS(1301), - [anon_sym_def] = ACTIONS(1301), - [anon_sym_class] = ACTIONS(1301), - [anon_sym_AT] = ACTIONS(1301), + [430] = { + [aux_sym_dotted_name_repeat1] = STATE(854), + [sym__newline] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(1051), [sym_comment] = ACTIONS(76), }, - [404] = { - [sym_list_splat] = STATE(520), - [sym_dictionary_splat] = STATE(520), - [sym__expression] = STATE(800), - [sym__primary_expression] = STATE(221), + [431] = { + [anon_sym_async] = ACTIONS(1363), + [anon_sym_def] = ACTIONS(1363), + [anon_sym_class] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1363), + [sym_comment] = ACTIONS(76), + }, + [432] = { + [sym_list_splat] = STATE(857), + [sym_dictionary_splat] = STATE(857), + [sym__expression] = STATE(858), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -20550,7 +21291,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_keyword_argument] = STATE(520), + [sym_keyword_argument] = STATE(857), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -20564,51 +21305,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(870), - [anon_sym_COMMA] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_print] = ACTIONS(876), - [anon_sym_exec] = ACTIONS(876), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(878), + [sym_identifier] = ACTIONS(914), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [405] = { - [sym__newline] = ACTIONS(1303), + [433] = { + [sym__newline] = ACTIONS(1369), [sym_comment] = ACTIONS(76), }, - [406] = { - [aux_sym_tuple_repeat1] = STATE(558), - [anon_sym_RPAREN] = ACTIONS(1038), - [anon_sym_COMMA] = ACTIONS(1042), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [434] = { + [aux_sym_tuple_repeat1] = STATE(586), + [anon_sym_RPAREN] = ACTIONS(1074), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [407] = { - [aux_sym_tuple_repeat1] = STATE(558), - [anon_sym_RPAREN] = ACTIONS(1038), - [anon_sym_COMMA] = ACTIONS(1042), + [435] = { + [aux_sym_tuple_repeat1] = STATE(586), + [anon_sym_RPAREN] = ACTIONS(1074), + [anon_sym_COMMA] = ACTIONS(1078), [sym_comment] = ACTIONS(76), }, - [408] = { - [sym__expression] = STATE(802), - [sym__primary_expression] = STATE(415), + [436] = { + [sym__expression] = STATE(860), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -20633,27 +21374,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [409] = { - [sym__expression] = STATE(803), - [sym__primary_expression] = STATE(415), + [437] = { + [sym__expression] = STATE(861), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -20678,26 +21419,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [410] = { - [sym__primary_expression] = STATE(210), + [438] = { + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -20716,13 +21457,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -20731,61 +21472,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [411] = { - [sym_lambda_parameters] = STATE(805), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(1305), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [439] = { + [sym_lambda_parameters] = STATE(863), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(1371), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [412] = { - [aux_sym_concatenated_string_repeat1] = STATE(806), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_COLON] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [440] = { + [aux_sym_concatenated_string_repeat1] = STATE(864), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_COLON] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [413] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(415), + [441] = { + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -20810,86 +21551,86 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [414] = { - [anon_sym_COMMA] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_COLON] = ACTIONS(1307), - [anon_sym_and] = ACTIONS(1311), - [anon_sym_or] = ACTIONS(1313), + [442] = { + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(1373), + [anon_sym_and] = ACTIONS(1377), + [anon_sym_or] = ACTIONS(1379), [sym_comment] = ACTIONS(76), }, - [415] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(820), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_GT_GT] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(296), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_in] = ACTIONS(1319), - [anon_sym_not] = ACTIONS(1321), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_SLASH_SLASH] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1333), - [anon_sym_LT_LT] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_LT_EQ] = ACTIONS(1319), - [anon_sym_EQ_EQ] = ACTIONS(1319), - [anon_sym_BANG_EQ] = ACTIONS(1319), - [anon_sym_GT_EQ] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_LT_GT] = ACTIONS(1319), - [anon_sym_is] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(434), + [443] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(878), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(310), + [anon_sym_COLON] = ACTIONS(310), + [anon_sym_in] = ACTIONS(1385), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PERCENT] = ACTIONS(1391), + [anon_sym_SLASH_SLASH] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1401), + [anon_sym_LT_EQ] = ACTIONS(1385), + [anon_sym_EQ_EQ] = ACTIONS(1385), + [anon_sym_BANG_EQ] = ACTIONS(1385), + [anon_sym_GT_EQ] = ACTIONS(1385), + [anon_sym_GT] = ACTIONS(1401), + [anon_sym_LT_GT] = ACTIONS(1385), + [anon_sym_is] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [416] = { - [sym_default_parameter] = STATE(823), - [sym_typed_default_parameter] = STATE(823), - [sym_list_splat] = STATE(824), - [sym_dictionary_splat] = STATE(824), - [sym_typed_parameter] = STATE(823), - [sym_tuple] = STATE(823), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(1339), - [anon_sym_COLON] = ACTIONS(1341), - [anon_sym_exec] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1343), + [444] = { + [sym_default_parameter] = STATE(881), + [sym_typed_default_parameter] = STATE(881), + [sym_list_splat] = STATE(882), + [sym_dictionary_splat] = STATE(882), + [sym_typed_parameter] = STATE(881), + [sym_tuple] = STATE(881), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(1405), + [anon_sym_COLON] = ACTIONS(1407), + [anon_sym_exec] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1409), [sym_comment] = ACTIONS(76), }, - [417] = { - [sym__expression] = STATE(830), - [sym__primary_expression] = STATE(831), + [445] = { + [sym__expression] = STATE(888), + [sym__primary_expression] = STATE(889), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -20899,7 +21640,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_type] = STATE(832), + [sym_type] = STATE(890), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -20915,27 +21656,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_lambda] = ACTIONS(1349), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_lambda] = ACTIONS(1415), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1353), + [anon_sym_await] = ACTIONS(1419), [sym_comment] = ACTIONS(76), }, - [418] = { - [sym__expression] = STATE(833), - [sym__primary_expression] = STATE(415), + [446] = { + [sym__expression] = STATE(891), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -20960,70 +21701,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [419] = { - [aux_sym__parameters_repeat1] = STATE(835), - [anon_sym_COMMA] = ACTIONS(1355), - [anon_sym_COLON] = ACTIONS(1341), + [447] = { + [aux_sym__parameters_repeat1] = STATE(893), + [anon_sym_COMMA] = ACTIONS(1421), + [anon_sym_COLON] = ACTIONS(1407), [sym_comment] = ACTIONS(76), }, - [420] = { - [sym__newline] = ACTIONS(1357), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(288), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(292), - [anon_sym_or] = ACTIONS(294), - [anon_sym_PLUS_EQ] = ACTIONS(1357), - [anon_sym_DASH_EQ] = ACTIONS(1357), - [anon_sym_STAR_EQ] = ACTIONS(1357), - [anon_sym_SLASH_EQ] = ACTIONS(1357), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1357), - [anon_sym_PERCENT_EQ] = ACTIONS(1357), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1357), - [anon_sym_GT_GT_EQ] = ACTIONS(1357), - [anon_sym_LT_LT_EQ] = ACTIONS(1357), - [anon_sym_AMP_EQ] = ACTIONS(1357), - [anon_sym_CARET_EQ] = ACTIONS(1357), - [anon_sym_PIPE_EQ] = ACTIONS(1357), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1357), + [448] = { + [sym__newline] = ACTIONS(1423), + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(302), + [anon_sym_EQ] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(306), + [anon_sym_or] = ACTIONS(308), + [anon_sym_PLUS_EQ] = ACTIONS(1423), + [anon_sym_DASH_EQ] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1423), + [anon_sym_SLASH_EQ] = ACTIONS(1423), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1423), + [anon_sym_PERCENT_EQ] = ACTIONS(1423), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1423), + [anon_sym_GT_GT_EQ] = ACTIONS(1423), + [anon_sym_LT_LT_EQ] = ACTIONS(1423), + [anon_sym_AMP_EQ] = ACTIONS(1423), + [anon_sym_CARET_EQ] = ACTIONS(1423), + [anon_sym_PIPE_EQ] = ACTIONS(1423), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1423), }, - [421] = { - [sym_default_parameter] = STATE(823), - [sym_typed_default_parameter] = STATE(823), - [sym_list_splat] = STATE(824), - [sym_dictionary_splat] = STATE(824), - [sym_typed_parameter] = STATE(823), - [sym_tuple] = STATE(823), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(1339), - [anon_sym_COLON] = ACTIONS(1359), - [anon_sym_exec] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1343), + [449] = { + [sym_default_parameter] = STATE(881), + [sym_typed_default_parameter] = STATE(881), + [sym_list_splat] = STATE(882), + [sym_dictionary_splat] = STATE(882), + [sym_typed_parameter] = STATE(881), + [sym_tuple] = STATE(881), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(1405), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym_exec] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1409), [sym_comment] = ACTIONS(76), }, - [422] = { - [sym__expression] = STATE(841), - [sym__primary_expression] = STATE(842), + [450] = { + [sym__expression] = STATE(899), + [sym__primary_expression] = STATE(900), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -21033,7 +21774,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_type] = STATE(843), + [sym_type] = STATE(901), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -21049,27 +21790,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_lambda] = ACTIONS(1365), + [anon_sym_not] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), + [anon_sym_lambda] = ACTIONS(1431), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1435), [sym_comment] = ACTIONS(76), }, - [423] = { - [sym__expression] = STATE(844), - [sym__primary_expression] = STATE(415), + [451] = { + [sym__expression] = STATE(902), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -21094,32 +21835,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [424] = { - [aux_sym__parameters_repeat1] = STATE(835), - [anon_sym_COMMA] = ACTIONS(1371), - [anon_sym_COLON] = ACTIONS(1359), + [452] = { + [aux_sym__parameters_repeat1] = STATE(893), + [anon_sym_COMMA] = ACTIONS(1437), + [anon_sym_COLON] = ACTIONS(1425), [sym_comment] = ACTIONS(76), }, - [425] = { - [sym__expression] = STATE(846), + [453] = { + [sym__expression] = STATE(904), [sym__primary_expression] = STATE(39), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -21143,8 +21884,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), @@ -21163,9 +21904,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [426] = { - [sym__expression] = STATE(847), - [sym__primary_expression] = STATE(415), + [454] = { + [sym__expression] = STATE(905), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -21175,7 +21916,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_type] = STATE(848), + [sym_type] = STATE(906), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -21191,82 +21932,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [427] = { - [sym__newline] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_and] = ACTIONS(1166), - [anon_sym_or] = ACTIONS(1168), + [455] = { + [sym__newline] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_and] = ACTIONS(1202), + [anon_sym_or] = ACTIONS(1204), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1373), + [sym__semicolon] = ACTIONS(1439), }, - [428] = { - [sym__newline] = ACTIONS(1375), - [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_COMMA] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_GT_GT] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1375), - [anon_sym_in] = ACTIONS(1375), - [anon_sym_EQ] = ACTIONS(1377), - [anon_sym_not] = ACTIONS(1375), - [anon_sym_and] = ACTIONS(1375), - [anon_sym_or] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_SLASH_SLASH] = ACTIONS(1377), - [anon_sym_STAR_STAR] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_LT_EQ] = ACTIONS(1375), - [anon_sym_EQ_EQ] = ACTIONS(1375), - [anon_sym_BANG_EQ] = ACTIONS(1375), - [anon_sym_GT_EQ] = ACTIONS(1375), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_LT_GT] = ACTIONS(1375), - [anon_sym_is] = ACTIONS(1375), - [anon_sym_PLUS_EQ] = ACTIONS(1375), - [anon_sym_DASH_EQ] = ACTIONS(1375), - [anon_sym_STAR_EQ] = ACTIONS(1375), - [anon_sym_SLASH_EQ] = ACTIONS(1375), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1375), - [anon_sym_PERCENT_EQ] = ACTIONS(1375), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1375), - [anon_sym_GT_GT_EQ] = ACTIONS(1375), - [anon_sym_LT_LT_EQ] = ACTIONS(1375), - [anon_sym_AMP_EQ] = ACTIONS(1375), - [anon_sym_CARET_EQ] = ACTIONS(1375), - [anon_sym_PIPE_EQ] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1375), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1375), + [456] = { + [sym__newline] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1441), + [anon_sym_and] = ACTIONS(1441), + [anon_sym_or] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_PERCENT] = ACTIONS(1443), + [anon_sym_SLASH_SLASH] = ACTIONS(1443), + [anon_sym_STAR_STAR] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_LT_GT] = ACTIONS(1441), + [anon_sym_is] = ACTIONS(1441), + [anon_sym_PLUS_EQ] = ACTIONS(1441), + [anon_sym_DASH_EQ] = ACTIONS(1441), + [anon_sym_STAR_EQ] = ACTIONS(1441), + [anon_sym_SLASH_EQ] = ACTIONS(1441), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1441), + [anon_sym_PERCENT_EQ] = ACTIONS(1441), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1441), + [anon_sym_GT_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT_EQ] = ACTIONS(1441), + [anon_sym_AMP_EQ] = ACTIONS(1441), + [anon_sym_CARET_EQ] = ACTIONS(1441), + [anon_sym_PIPE_EQ] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1441), }, - [429] = { - [sym__expression] = STATE(849), - [sym__primary_expression] = STATE(435), + [457] = { + [sym__expression] = STATE(907), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -21291,26 +22032,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [430] = { - [sym__primary_expression] = STATE(210), + [458] = { + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -21329,13 +22070,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -21344,61 +22085,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [431] = { - [sym_lambda_parameters] = STATE(851), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(1379), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [459] = { + [sym_lambda_parameters] = STATE(909), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(1445), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [432] = { - [aux_sym_concatenated_string_repeat1] = STATE(852), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [anon_sym_RBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [460] = { + [aux_sym_concatenated_string_repeat1] = STATE(910), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [anon_sym_RBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [433] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(435), + [461] = { + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -21423,80 +22164,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [434] = { - [anon_sym_COMMA] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_and] = ACTIONS(1383), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_RBRACK] = ACTIONS(1307), + [462] = { + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_and] = ACTIONS(1449), + [anon_sym_or] = ACTIONS(1451), + [anon_sym_RBRACK] = ACTIONS(1373), [sym_comment] = ACTIONS(76), }, - [435] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(866), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_GT_GT] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(296), - [anon_sym_in] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1393), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_CARET] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1407), - [anon_sym_LT_GT] = ACTIONS(1391), - [anon_sym_is] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACK] = ACTIONS(296), + [463] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(924), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(310), + [anon_sym_in] = ACTIONS(1457), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_PERCENT] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(1463), + [anon_sym_STAR_STAR] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT_GT] = ACTIONS(1457), + [anon_sym_is] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACK] = ACTIONS(310), [sym_comment] = ACTIONS(76), }, - [436] = { - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_for] = ACTIONS(690), - [anon_sym_and] = ACTIONS(752), - [anon_sym_or] = ACTIONS(754), - [anon_sym_RBRACK] = ACTIONS(690), + [464] = { + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_and] = ACTIONS(788), + [anon_sym_or] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(726), [sym_comment] = ACTIONS(76), }, - [437] = { - [sym__expression] = STATE(867), - [sym__primary_expression] = STATE(152), + [465] = { + [sym__expression] = STATE(925), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -21521,68 +22262,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lambda] = ACTIONS(228), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(242), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(234), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, - [438] = { - [anon_sym_COLON] = ACTIONS(1411), + [466] = { + [anon_sym_COLON] = ACTIONS(1477), [sym_comment] = ACTIONS(76), }, - [439] = { - [aux_sym_concatenated_string_repeat1] = STATE(869), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_RBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [467] = { + [aux_sym_concatenated_string_repeat1] = STATE(927), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_for] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_RBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [440] = { - [sym_list_splat] = STATE(871), - [sym__expression] = STATE(872), - [sym__primary_expression] = STATE(435), + [468] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(930), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -21605,37 +22346,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(222), + [anon_sym_STAR] = ACTIONS(236), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(1413), + [anon_sym_RBRACK] = ACTIONS(1479), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [441] = { - [aux_sym_list_repeat1] = STATE(874), - [anon_sym_COMMA] = ACTIONS(1415), - [anon_sym_RBRACK] = ACTIONS(1413), + [469] = { + [aux_sym_list_repeat1] = STATE(932), + [anon_sym_COMMA] = ACTIONS(1481), + [anon_sym_RBRACK] = ACTIONS(1479), [sym_comment] = ACTIONS(76), }, - [442] = { - [sym__expression] = STATE(875), - [sym__primary_expression] = STATE(509), + [470] = { + [sym__expression] = STATE(933), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -21660,27 +22401,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [443] = { - [sym_variables] = STATE(876), - [sym__primary_expression] = STATE(109), + [471] = { + [sym_variables] = STATE(934), + [sym__primary_expression] = STATE(115), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -21699,13 +22440,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(176), + [sym_string] = ACTIONS(190), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -21714,9 +22455,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [444] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(152), + [472] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -21741,27 +22482,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lambda] = ACTIONS(228), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(242), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(234), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, - [445] = { - [sym__expression] = STATE(877), - [sym__primary_expression] = STATE(152), + [473] = { + [sym__expression] = STATE(935), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -21786,39 +22527,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lambda] = ACTIONS(228), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(242), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(234), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, - [446] = { - [anon_sym_RBRACK] = ACTIONS(1417), + [474] = { + [anon_sym_RBRACK] = ACTIONS(1483), [sym_comment] = ACTIONS(76), }, - [447] = { - [sym_for_in_clause] = STATE(604), - [sym_if_clause] = STATE(604), - [aux_sym__comprehension_body_repeat1] = STATE(880), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(750), - [anon_sym_RBRACK] = ACTIONS(1104), + [475] = { + [sym_for_in_clause] = STATE(632), + [sym_if_clause] = STATE(632), + [aux_sym__comprehension_body_repeat1] = STATE(938), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(786), + [anon_sym_RBRACK] = ACTIONS(1140), [sym_comment] = ACTIONS(76), }, - [448] = { - [sym__primary_expression] = STATE(881), + [476] = { + [sym__primary_expression] = STATE(939), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -21837,13 +22578,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -21852,8 +22593,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [449] = { - [sym__primary_expression] = STATE(882), + [477] = { + [sym__primary_expression] = STATE(940), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -21872,13 +22613,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -21887,8 +22628,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [450] = { - [sym__primary_expression] = STATE(883), + [478] = { + [sym__primary_expression] = STATE(941), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -21907,13 +22648,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -21922,12 +22663,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [451] = { - [anon_sym_in] = ACTIONS(1421), + [479] = { + [anon_sym_in] = ACTIONS(1487), [sym_comment] = ACTIONS(76), }, - [452] = { - [sym__primary_expression] = STATE(885), + [480] = { + [sym__primary_expression] = STATE(943), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -21946,13 +22687,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -21961,8 +22702,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [453] = { - [sym__primary_expression] = STATE(618), + [481] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -21981,13 +22722,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -21996,8 +22737,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [454] = { - [sym__primary_expression] = STATE(886), + [482] = { + [sym__primary_expression] = STATE(944), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -22016,13 +22757,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -22031,8 +22772,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [455] = { - [sym__primary_expression] = STATE(887), + [483] = { + [sym__primary_expression] = STATE(945), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -22051,13 +22792,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -22066,8 +22807,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [456] = { - [sym__primary_expression] = STATE(888), + [484] = { + [sym__primary_expression] = STATE(946), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -22086,13 +22827,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -22101,8 +22842,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [457] = { - [sym__primary_expression] = STATE(883), + [485] = { + [sym__primary_expression] = STATE(941), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -22121,14 +22862,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), + [anon_sym_not] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -22137,76 +22878,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [458] = { - [aux_sym_comparison_operator_repeat1] = STATE(889), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_in] = ACTIONS(760), - [anon_sym_not] = ACTIONS(762), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(776), - [anon_sym_LT_EQ] = ACTIONS(760), - [anon_sym_EQ_EQ] = ACTIONS(760), - [anon_sym_BANG_EQ] = ACTIONS(760), - [anon_sym_GT_EQ] = ACTIONS(760), - [anon_sym_GT] = ACTIONS(776), - [anon_sym_LT_GT] = ACTIONS(760), - [anon_sym_is] = ACTIONS(778), - [anon_sym_RBRACK] = ACTIONS(900), + [486] = { + [aux_sym_comparison_operator_repeat1] = STATE(947), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_in] = ACTIONS(796), + [anon_sym_not] = ACTIONS(798), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(812), + [anon_sym_LT_EQ] = ACTIONS(796), + [anon_sym_EQ_EQ] = ACTIONS(796), + [anon_sym_BANG_EQ] = ACTIONS(796), + [anon_sym_GT_EQ] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(812), + [anon_sym_LT_GT] = ACTIONS(796), + [anon_sym_is] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(936), [sym_comment] = ACTIONS(76), }, - [459] = { - [sym__newline] = ACTIONS(1425), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_COMMA] = ACTIONS(1425), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_GT_GT] = ACTIONS(1427), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_in] = ACTIONS(1425), - [anon_sym_EQ] = ACTIONS(1427), - [anon_sym_not] = ACTIONS(1425), - [anon_sym_and] = ACTIONS(1425), - [anon_sym_or] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1427), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_SLASH_SLASH] = ACTIONS(1427), - [anon_sym_STAR_STAR] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_CARET] = ACTIONS(1427), - [anon_sym_LT_LT] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1425), - [anon_sym_BANG_EQ] = ACTIONS(1425), - [anon_sym_GT_EQ] = ACTIONS(1425), - [anon_sym_GT] = ACTIONS(1427), - [anon_sym_LT_GT] = ACTIONS(1425), - [anon_sym_is] = ACTIONS(1425), - [anon_sym_PLUS_EQ] = ACTIONS(1425), - [anon_sym_DASH_EQ] = ACTIONS(1425), - [anon_sym_STAR_EQ] = ACTIONS(1425), - [anon_sym_SLASH_EQ] = ACTIONS(1425), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1425), - [anon_sym_PERCENT_EQ] = ACTIONS(1425), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1425), - [anon_sym_GT_GT_EQ] = ACTIONS(1425), - [anon_sym_LT_LT_EQ] = ACTIONS(1425), - [anon_sym_AMP_EQ] = ACTIONS(1425), - [anon_sym_CARET_EQ] = ACTIONS(1425), - [anon_sym_PIPE_EQ] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1425), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1425), + [487] = { + [sym__newline] = ACTIONS(1491), + [anon_sym_DOT] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_COMMA] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_in] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1491), + [anon_sym_and] = ACTIONS(1491), + [anon_sym_or] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PERCENT] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_LT_EQ] = ACTIONS(1491), + [anon_sym_EQ_EQ] = ACTIONS(1491), + [anon_sym_BANG_EQ] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1491), + [anon_sym_GT] = ACTIONS(1493), + [anon_sym_LT_GT] = ACTIONS(1491), + [anon_sym_is] = ACTIONS(1491), + [anon_sym_PLUS_EQ] = ACTIONS(1491), + [anon_sym_DASH_EQ] = ACTIONS(1491), + [anon_sym_STAR_EQ] = ACTIONS(1491), + [anon_sym_SLASH_EQ] = ACTIONS(1491), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1491), + [anon_sym_PERCENT_EQ] = ACTIONS(1491), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1491), + [anon_sym_GT_GT_EQ] = ACTIONS(1491), + [anon_sym_LT_LT_EQ] = ACTIONS(1491), + [anon_sym_AMP_EQ] = ACTIONS(1491), + [anon_sym_CARET_EQ] = ACTIONS(1491), + [anon_sym_PIPE_EQ] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1491), }, - [460] = { - [sym__expression] = STATE(890), - [sym__primary_expression] = STATE(467), + [488] = { + [sym__expression] = STATE(948), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -22231,27 +22972,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [461] = { - [sym__expression] = STATE(891), - [sym__primary_expression] = STATE(467), + [489] = { + [sym__expression] = STATE(949), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -22276,26 +23017,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [462] = { - [sym__primary_expression] = STATE(210), + [490] = { + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -22314,13 +23055,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -22329,61 +23070,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [463] = { - [sym_lambda_parameters] = STATE(893), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(1429), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [491] = { + [sym_lambda_parameters] = STATE(951), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(1495), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [464] = { - [aux_sym_concatenated_string_repeat1] = STATE(894), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [anon_sym_RBRACE] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [492] = { + [aux_sym_concatenated_string_repeat1] = STATE(952), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [anon_sym_RBRACE] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [465] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(467), + [493] = { + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -22408,81 +23149,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [466] = { - [anon_sym_COMMA] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_and] = ACTIONS(1433), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1307), + [494] = { + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1499), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1373), [sym_comment] = ACTIONS(76), }, - [467] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(908), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_GT_GT] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(296), - [anon_sym_in] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_LT_LT] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_GT] = ACTIONS(1441), - [anon_sym_is] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(296), + [495] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(966), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(310), + [anon_sym_in] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_GT] = ACTIONS(1507), + [anon_sym_is] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(310), [sym_comment] = ACTIONS(76), }, - [468] = { - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_for] = ACTIONS(690), - [anon_sym_and] = ACTIONS(812), - [anon_sym_or] = ACTIONS(814), - [anon_sym_RBRACE] = ACTIONS(690), + [496] = { + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_COLON] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_and] = ACTIONS(848), + [anon_sym_or] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(726), [sym_comment] = ACTIONS(76), }, - [469] = { - [sym__expression] = STATE(909), - [sym__primary_expression] = STATE(164), + [497] = { + [sym__expression] = STATE(967), + [sym__primary_expression] = STATE(170), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -22507,69 +23248,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_lambda] = ACTIONS(248), + [anon_sym_not] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(254), + [anon_sym_await] = ACTIONS(268), [sym_comment] = ACTIONS(76), }, - [470] = { - [anon_sym_COLON] = ACTIONS(1461), + [498] = { + [anon_sym_COLON] = ACTIONS(1527), [sym_comment] = ACTIONS(76), }, - [471] = { - [aux_sym_concatenated_string_repeat1] = STATE(911), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [499] = { + [aux_sym_concatenated_string_repeat1] = STATE(969), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_COLON] = ACTIONS(880), + [anon_sym_for] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_RBRACE] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [472] = { - [sym_list_splat] = STATE(871), - [sym__expression] = STATE(914), - [sym__primary_expression] = STATE(467), + [500] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(972), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -22592,85 +23333,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1529), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(1465), - [sym_string] = ACTIONS(790), + [anon_sym_RBRACE] = ACTIONS(1531), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [473] = { - [sym__newline] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_not] = ACTIONS(1467), - [anon_sym_and] = ACTIONS(1467), - [anon_sym_or] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_SLASH_SLASH] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1469), - [anon_sym_LT_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(1467), - [anon_sym_GT] = ACTIONS(1469), - [anon_sym_LT_GT] = ACTIONS(1467), - [anon_sym_is] = ACTIONS(1467), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1467), + [501] = { + [sym__newline] = ACTIONS(1533), + [anon_sym_DOT] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_COMMA] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_GT_GT] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_in] = ACTIONS(1533), + [anon_sym_EQ] = ACTIONS(1535), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1533), + [anon_sym_or] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1535), + [anon_sym_SLASH] = ACTIONS(1535), + [anon_sym_PERCENT] = ACTIONS(1535), + [anon_sym_SLASH_SLASH] = ACTIONS(1535), + [anon_sym_STAR_STAR] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_LT_LT] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_LT_EQ] = ACTIONS(1533), + [anon_sym_EQ_EQ] = ACTIONS(1533), + [anon_sym_BANG_EQ] = ACTIONS(1533), + [anon_sym_GT_EQ] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1535), + [anon_sym_LT_GT] = ACTIONS(1533), + [anon_sym_is] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1533), + [anon_sym_DASH_EQ] = ACTIONS(1533), + [anon_sym_STAR_EQ] = ACTIONS(1533), + [anon_sym_SLASH_EQ] = ACTIONS(1533), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1533), + [anon_sym_PERCENT_EQ] = ACTIONS(1533), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1533), + [anon_sym_GT_GT_EQ] = ACTIONS(1533), + [anon_sym_LT_LT_EQ] = ACTIONS(1533), + [anon_sym_AMP_EQ] = ACTIONS(1533), + [anon_sym_CARET_EQ] = ACTIONS(1533), + [anon_sym_PIPE_EQ] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1533), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1533), }, - [474] = { - [aux_sym_list_repeat1] = STATE(916), - [anon_sym_COMMA] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1465), + [502] = { + [aux_sym_list_repeat1] = STATE(974), + [anon_sym_COMMA] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1531), [sym_comment] = ACTIONS(76), }, - [475] = { - [sym_dictionary_splat] = STATE(919), - [sym__expression] = STATE(920), - [sym__primary_expression] = STATE(105), + [503] = { + [sym_dictionary_splat] = STATE(977), + [sym__expression] = STATE(978), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -22684,7 +23425,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), [sym_dictionary_comprehension] = STATE(61), - [sym_pair] = STATE(919), + [sym_pair] = STATE(977), [sym_set] = STATE(61), [sym_set_comprehension] = STATE(61), [sym_parenthesized_expression] = STATE(61), @@ -22694,37 +23435,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1539), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(1475), - [sym_string] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(1541), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [476] = { - [aux_sym_dictionary_repeat1] = STATE(922), - [anon_sym_COMMA] = ACTIONS(1477), - [anon_sym_RBRACE] = ACTIONS(1475), + [504] = { + [aux_sym_dictionary_repeat1] = STATE(980), + [anon_sym_COMMA] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1541), [sym_comment] = ACTIONS(76), }, - [477] = { - [sym__expression] = STATE(923), - [sym__primary_expression] = STATE(509), + [505] = { + [sym__expression] = STATE(981), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -22749,27 +23490,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [478] = { - [sym__expression] = STATE(929), - [sym__primary_expression] = STATE(930), + [506] = { + [sym__expression] = STATE(987), + [sym__primary_expression] = STATE(988), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -22794,27 +23535,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_lambda] = ACTIONS(1483), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_lambda] = ACTIONS(1549), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1553), [sym_comment] = ACTIONS(76), }, - [479] = { - [sym_variables] = STATE(931), - [sym__primary_expression] = STATE(109), + [507] = { + [sym_variables] = STATE(989), + [sym__primary_expression] = STATE(115), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -22833,13 +23574,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(176), + [sym_string] = ACTIONS(190), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -22848,9 +23589,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [480] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(164), + [508] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(170), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -22875,27 +23616,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_lambda] = ACTIONS(248), + [anon_sym_not] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(254), + [anon_sym_await] = ACTIONS(268), [sym_comment] = ACTIONS(76), }, - [481] = { - [sym__expression] = STATE(932), - [sym__primary_expression] = STATE(164), + [509] = { + [sym__expression] = STATE(990), + [sym__primary_expression] = STATE(170), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -22920,39 +23661,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_lambda] = ACTIONS(248), + [anon_sym_not] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(254), + [anon_sym_await] = ACTIONS(268), [sym_comment] = ACTIONS(76), }, - [482] = { - [anon_sym_RBRACE] = ACTIONS(1489), + [510] = { + [anon_sym_RBRACE] = ACTIONS(1555), [sym_comment] = ACTIONS(76), }, - [483] = { - [sym_for_in_clause] = STATE(604), - [sym_if_clause] = STATE(604), - [aux_sym__comprehension_body_repeat1] = STATE(935), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(810), - [anon_sym_RBRACE] = ACTIONS(1104), + [511] = { + [sym_for_in_clause] = STATE(632), + [sym_if_clause] = STATE(632), + [aux_sym__comprehension_body_repeat1] = STATE(993), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(1140), [sym_comment] = ACTIONS(76), }, - [484] = { - [sym__primary_expression] = STATE(936), + [512] = { + [sym__primary_expression] = STATE(994), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -22971,13 +23712,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -22986,8 +23727,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [485] = { - [sym__primary_expression] = STATE(937), + [513] = { + [sym__primary_expression] = STATE(995), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -23006,13 +23747,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -23021,8 +23762,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [486] = { - [sym__primary_expression] = STATE(938), + [514] = { + [sym__primary_expression] = STATE(996), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -23041,13 +23782,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -23056,12 +23797,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [487] = { - [anon_sym_in] = ACTIONS(1493), + [515] = { + [anon_sym_in] = ACTIONS(1559), [sym_comment] = ACTIONS(76), }, - [488] = { - [sym__primary_expression] = STATE(940), + [516] = { + [sym__primary_expression] = STATE(998), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -23080,13 +23821,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -23095,8 +23836,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [489] = { - [sym__primary_expression] = STATE(618), + [517] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -23115,13 +23856,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -23130,8 +23871,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [490] = { - [sym__primary_expression] = STATE(941), + [518] = { + [sym__primary_expression] = STATE(999), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -23150,13 +23891,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -23165,8 +23906,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [491] = { - [sym__primary_expression] = STATE(942), + [519] = { + [sym__primary_expression] = STATE(1000), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -23185,13 +23926,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -23200,8 +23941,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [492] = { - [sym__primary_expression] = STATE(943), + [520] = { + [sym__primary_expression] = STATE(1001), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -23220,13 +23961,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -23235,8 +23976,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [493] = { - [sym__primary_expression] = STATE(938), + [521] = { + [sym__primary_expression] = STATE(996), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -23255,14 +23996,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_not] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -23271,161 +24012,161 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [494] = { - [aux_sym_comparison_operator_repeat1] = STATE(944), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_COLON] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_in] = ACTIONS(820), - [anon_sym_not] = ACTIONS(822), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(836), - [anon_sym_LT_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_GT_EQ] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(820), - [anon_sym_is] = ACTIONS(838), - [anon_sym_RBRACE] = ACTIONS(900), + [522] = { + [aux_sym_comparison_operator_repeat1] = STATE(1002), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_COLON] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_in] = ACTIONS(856), + [anon_sym_not] = ACTIONS(858), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(872), + [anon_sym_LT_EQ] = ACTIONS(856), + [anon_sym_EQ_EQ] = ACTIONS(856), + [anon_sym_BANG_EQ] = ACTIONS(856), + [anon_sym_GT_EQ] = ACTIONS(856), + [anon_sym_GT] = ACTIONS(872), + [anon_sym_LT_GT] = ACTIONS(856), + [anon_sym_is] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(936), [sym_comment] = ACTIONS(76), }, - [495] = { - [anon_sym_RBRACE] = ACTIONS(1497), + [523] = { + [anon_sym_RBRACE] = ACTIONS(1563), [sym_comment] = ACTIONS(76), }, - [496] = { - [aux_sym_concatenated_string_repeat1] = STATE(496), - [sym__newline] = ACTIONS(1499), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_EQ] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1501), - [anon_sym_SLASH_SLASH] = ACTIONS(1501), - [anon_sym_STAR_STAR] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_LT_LT] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_PLUS_EQ] = ACTIONS(1499), - [anon_sym_DASH_EQ] = ACTIONS(1499), - [anon_sym_STAR_EQ] = ACTIONS(1499), - [anon_sym_SLASH_EQ] = ACTIONS(1499), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1499), - [anon_sym_PERCENT_EQ] = ACTIONS(1499), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1499), - [anon_sym_GT_GT_EQ] = ACTIONS(1499), - [anon_sym_LT_LT_EQ] = ACTIONS(1499), - [anon_sym_AMP_EQ] = ACTIONS(1499), - [anon_sym_CARET_EQ] = ACTIONS(1499), - [anon_sym_PIPE_EQ] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1503), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1499), + [524] = { + [aux_sym_concatenated_string_repeat1] = STATE(524), + [sym__newline] = ACTIONS(1565), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(1567), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1567), + [anon_sym_SLASH_SLASH] = ACTIONS(1567), + [anon_sym_STAR_STAR] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_CARET] = ACTIONS(1567), + [anon_sym_LT_LT] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_PLUS_EQ] = ACTIONS(1565), + [anon_sym_DASH_EQ] = ACTIONS(1565), + [anon_sym_STAR_EQ] = ACTIONS(1565), + [anon_sym_SLASH_EQ] = ACTIONS(1565), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1565), + [anon_sym_PERCENT_EQ] = ACTIONS(1565), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1565), + [anon_sym_GT_GT_EQ] = ACTIONS(1565), + [anon_sym_LT_LT_EQ] = ACTIONS(1565), + [anon_sym_AMP_EQ] = ACTIONS(1565), + [anon_sym_CARET_EQ] = ACTIONS(1565), + [anon_sym_PIPE_EQ] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1569), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1565), }, - [497] = { - [sym__newline] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(280), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_STAR_STAR_EQ] = ACTIONS(282), - [anon_sym_GT_GT_EQ] = ACTIONS(282), - [anon_sym_LT_LT_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1506), + [525] = { + [sym__newline] = ACTIONS(1572), + [anon_sym_EQ] = ACTIONS(294), + [anon_sym_PLUS_EQ] = ACTIONS(296), + [anon_sym_DASH_EQ] = ACTIONS(296), + [anon_sym_STAR_EQ] = ACTIONS(296), + [anon_sym_SLASH_EQ] = ACTIONS(296), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(296), + [anon_sym_PERCENT_EQ] = ACTIONS(296), + [anon_sym_STAR_STAR_EQ] = ACTIONS(296), + [anon_sym_GT_GT_EQ] = ACTIONS(296), + [anon_sym_LT_LT_EQ] = ACTIONS(296), + [anon_sym_AMP_EQ] = ACTIONS(296), + [anon_sym_CARET_EQ] = ACTIONS(296), + [anon_sym_PIPE_EQ] = ACTIONS(296), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1572), }, - [498] = { - [aux_sym_print_statement_repeat1] = STATE(947), - [sym__newline] = ACTIONS(290), - [anon_sym_COMMA] = ACTIONS(1508), - [anon_sym_if] = ACTIONS(288), - [anon_sym_EQ] = ACTIONS(290), - [anon_sym_and] = ACTIONS(292), - [anon_sym_or] = ACTIONS(294), - [anon_sym_PLUS_EQ] = ACTIONS(290), - [anon_sym_DASH_EQ] = ACTIONS(290), - [anon_sym_STAR_EQ] = ACTIONS(290), - [anon_sym_SLASH_EQ] = ACTIONS(290), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(290), - [anon_sym_PERCENT_EQ] = ACTIONS(290), - [anon_sym_STAR_STAR_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(290), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(290), + [526] = { + [aux_sym_print_statement_repeat1] = STATE(1005), + [sym__newline] = ACTIONS(304), + [anon_sym_COMMA] = ACTIONS(1574), + [anon_sym_if] = ACTIONS(302), + [anon_sym_EQ] = ACTIONS(304), + [anon_sym_and] = ACTIONS(306), + [anon_sym_or] = ACTIONS(308), + [anon_sym_PLUS_EQ] = ACTIONS(304), + [anon_sym_DASH_EQ] = ACTIONS(304), + [anon_sym_STAR_EQ] = ACTIONS(304), + [anon_sym_SLASH_EQ] = ACTIONS(304), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(304), + [anon_sym_PERCENT_EQ] = ACTIONS(304), + [anon_sym_STAR_STAR_EQ] = ACTIONS(304), + [anon_sym_GT_GT_EQ] = ACTIONS(304), + [anon_sym_LT_LT_EQ] = ACTIONS(304), + [anon_sym_AMP_EQ] = ACTIONS(304), + [anon_sym_CARET_EQ] = ACTIONS(304), + [anon_sym_PIPE_EQ] = ACTIONS(304), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(304), }, - [499] = { - [sym__newline] = ACTIONS(1506), + [527] = { + [sym__newline] = ACTIONS(1572), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1506), + [sym__semicolon] = ACTIONS(1572), }, - [500] = { - [sym__newline] = ACTIONS(1510), + [528] = { + [sym__newline] = ACTIONS(1576), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1510), + [sym__semicolon] = ACTIONS(1576), }, - [501] = { - [sym__newline] = ACTIONS(1512), + [529] = { + [sym__newline] = ACTIONS(1578), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1512), + [sym__semicolon] = ACTIONS(1578), }, - [502] = { - [sym__newline] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(288), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_and] = ACTIONS(292), - [anon_sym_or] = ACTIONS(294), - [anon_sym_PLUS_EQ] = ACTIONS(1514), - [anon_sym_DASH_EQ] = ACTIONS(1514), - [anon_sym_STAR_EQ] = ACTIONS(1514), - [anon_sym_SLASH_EQ] = ACTIONS(1514), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1514), - [anon_sym_PERCENT_EQ] = ACTIONS(1514), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1514), - [anon_sym_GT_GT_EQ] = ACTIONS(1514), - [anon_sym_LT_LT_EQ] = ACTIONS(1514), - [anon_sym_AMP_EQ] = ACTIONS(1514), - [anon_sym_CARET_EQ] = ACTIONS(1514), - [anon_sym_PIPE_EQ] = ACTIONS(1514), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1514), + [530] = { + [sym__newline] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_if] = ACTIONS(302), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_and] = ACTIONS(306), + [anon_sym_or] = ACTIONS(308), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1580), }, - [503] = { - [sym__expression] = STATE(948), - [sym__primary_expression] = STATE(509), + [531] = { + [sym__expression] = STATE(1006), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -23450,26 +24191,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [504] = { - [sym__primary_expression] = STATE(210), + [532] = { + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -23488,13 +24229,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -23503,60 +24244,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [505] = { - [sym_lambda_parameters] = STATE(950), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(1516), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [533] = { + [sym_lambda_parameters] = STATE(1008), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(1582), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [506] = { - [aux_sym_concatenated_string_repeat1] = STATE(951), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_else] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [534] = { + [aux_sym_concatenated_string_repeat1] = STATE(1009), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_else] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [507] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(509), + [535] = { + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -23581,113 +24322,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [508] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1520), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [536] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1586), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [509] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(966), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_GT_GT] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(296), - [anon_sym_else] = ACTIONS(296), - [anon_sym_in] = ACTIONS(1530), - [anon_sym_not] = ACTIONS(1532), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_SLASH] = ACTIONS(1526), - [anon_sym_PERCENT] = ACTIONS(1536), - [anon_sym_SLASH_SLASH] = ACTIONS(1536), - [anon_sym_STAR_STAR] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1542), - [anon_sym_CARET] = ACTIONS(1544), - [anon_sym_LT_LT] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_LT_EQ] = ACTIONS(1530), - [anon_sym_EQ_EQ] = ACTIONS(1530), - [anon_sym_BANG_EQ] = ACTIONS(1530), - [anon_sym_GT_EQ] = ACTIONS(1530), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_LT_GT] = ACTIONS(1530), - [anon_sym_is] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(434), + [537] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(1024), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_GT_GT] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(310), + [anon_sym_else] = ACTIONS(310), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_not] = ACTIONS(1598), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1602), + [anon_sym_SLASH_SLASH] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1606), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym_LT_LT] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_GT_EQ] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_LT_GT] = ACTIONS(1596), + [anon_sym_is] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [510] = { - [sym__newline] = ACTIONS(1550), - [anon_sym_from] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_EQ] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(1550), - [anon_sym_or] = ACTIONS(1550), - [anon_sym_PLUS_EQ] = ACTIONS(1550), - [anon_sym_DASH_EQ] = ACTIONS(1550), - [anon_sym_STAR_EQ] = ACTIONS(1550), - [anon_sym_SLASH_EQ] = ACTIONS(1550), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1550), - [anon_sym_PERCENT_EQ] = ACTIONS(1550), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1550), - [anon_sym_GT_GT_EQ] = ACTIONS(1550), - [anon_sym_LT_LT_EQ] = ACTIONS(1550), - [anon_sym_AMP_EQ] = ACTIONS(1550), - [anon_sym_CARET_EQ] = ACTIONS(1550), - [anon_sym_PIPE_EQ] = ACTIONS(1550), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1550), + [538] = { + [sym__newline] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(1616), + [anon_sym_or] = ACTIONS(1616), + [anon_sym_PLUS_EQ] = ACTIONS(1616), + [anon_sym_DASH_EQ] = ACTIONS(1616), + [anon_sym_STAR_EQ] = ACTIONS(1616), + [anon_sym_SLASH_EQ] = ACTIONS(1616), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1616), + [anon_sym_PERCENT_EQ] = ACTIONS(1616), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1616), + [anon_sym_GT_GT_EQ] = ACTIONS(1616), + [anon_sym_LT_LT_EQ] = ACTIONS(1616), + [anon_sym_AMP_EQ] = ACTIONS(1616), + [anon_sym_CARET_EQ] = ACTIONS(1616), + [anon_sym_PIPE_EQ] = ACTIONS(1616), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1616), }, - [511] = { - [sym__newline] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_EQ] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(292), - [anon_sym_or] = ACTIONS(1550), - [anon_sym_PLUS_EQ] = ACTIONS(1550), - [anon_sym_DASH_EQ] = ACTIONS(1550), - [anon_sym_STAR_EQ] = ACTIONS(1550), - [anon_sym_SLASH_EQ] = ACTIONS(1550), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1550), - [anon_sym_PERCENT_EQ] = ACTIONS(1550), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1550), - [anon_sym_GT_GT_EQ] = ACTIONS(1550), - [anon_sym_LT_LT_EQ] = ACTIONS(1550), - [anon_sym_AMP_EQ] = ACTIONS(1550), - [anon_sym_CARET_EQ] = ACTIONS(1550), - [anon_sym_PIPE_EQ] = ACTIONS(1550), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1550), + [539] = { + [sym__newline] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(306), + [anon_sym_or] = ACTIONS(1616), + [anon_sym_PLUS_EQ] = ACTIONS(1616), + [anon_sym_DASH_EQ] = ACTIONS(1616), + [anon_sym_STAR_EQ] = ACTIONS(1616), + [anon_sym_SLASH_EQ] = ACTIONS(1616), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1616), + [anon_sym_PERCENT_EQ] = ACTIONS(1616), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1616), + [anon_sym_GT_GT_EQ] = ACTIONS(1616), + [anon_sym_LT_LT_EQ] = ACTIONS(1616), + [anon_sym_AMP_EQ] = ACTIONS(1616), + [anon_sym_CARET_EQ] = ACTIONS(1616), + [anon_sym_PIPE_EQ] = ACTIONS(1616), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1616), }, - [512] = { - [sym__expression] = STATE(502), + [540] = { + [sym__expression] = STATE(530), [sym__primary_expression] = STATE(39), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -23710,28 +24450,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(1552), + [sym__newline] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_EQ] = ACTIONS(1554), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_EQ] = ACTIONS(1620), + [anon_sym_exec] = ACTIONS(218), [anon_sym_not] = ACTIONS(54), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(890), [anon_sym_TILDE] = ACTIONS(56), [anon_sym_lambda] = ACTIONS(58), - [anon_sym_PLUS_EQ] = ACTIONS(1554), - [anon_sym_DASH_EQ] = ACTIONS(1554), - [anon_sym_STAR_EQ] = ACTIONS(1554), - [anon_sym_SLASH_EQ] = ACTIONS(1554), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1554), - [anon_sym_PERCENT_EQ] = ACTIONS(1554), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1554), - [anon_sym_GT_GT_EQ] = ACTIONS(1554), - [anon_sym_LT_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP_EQ] = ACTIONS(1554), - [anon_sym_CARET_EQ] = ACTIONS(1554), - [anon_sym_PIPE_EQ] = ACTIONS(1554), + [anon_sym_PLUS_EQ] = ACTIONS(1620), + [anon_sym_DASH_EQ] = ACTIONS(1620), + [anon_sym_STAR_EQ] = ACTIONS(1620), + [anon_sym_SLASH_EQ] = ACTIONS(1620), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1620), + [anon_sym_PERCENT_EQ] = ACTIONS(1620), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1620), + [anon_sym_GT_GT_EQ] = ACTIONS(1620), + [anon_sym_LT_LT_EQ] = ACTIONS(1620), + [anon_sym_AMP_EQ] = ACTIONS(1620), + [anon_sym_CARET_EQ] = ACTIONS(1620), + [anon_sym_PIPE_EQ] = ACTIONS(1620), [anon_sym_LBRACK] = ACTIONS(62), [sym_ellipsis] = ACTIONS(64), [anon_sym_LBRACE] = ACTIONS(66), @@ -23744,129 +24484,129 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(70), [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1552), + [sym__semicolon] = ACTIONS(1618), }, - [513] = { - [aux_sym_print_statement_repeat1] = STATE(513), - [sym__newline] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(1514), - [anon_sym_DASH_EQ] = ACTIONS(1514), - [anon_sym_STAR_EQ] = ACTIONS(1514), - [anon_sym_SLASH_EQ] = ACTIONS(1514), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1514), - [anon_sym_PERCENT_EQ] = ACTIONS(1514), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1514), - [anon_sym_GT_GT_EQ] = ACTIONS(1514), - [anon_sym_LT_LT_EQ] = ACTIONS(1514), - [anon_sym_AMP_EQ] = ACTIONS(1514), - [anon_sym_CARET_EQ] = ACTIONS(1514), - [anon_sym_PIPE_EQ] = ACTIONS(1514), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1514), + [541] = { + [aux_sym_print_statement_repeat1] = STATE(541), + [sym__newline] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1580), }, - [514] = { - [sym__newline] = ACTIONS(1559), - [anon_sym_DOT] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_COMMA] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_in] = ACTIONS(1559), - [anon_sym_EQ] = ACTIONS(1561), - [anon_sym_not] = ACTIONS(1559), - [anon_sym_and] = ACTIONS(1559), - [anon_sym_or] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_SLASH] = ACTIONS(1561), - [anon_sym_PERCENT] = ACTIONS(1561), - [anon_sym_SLASH_SLASH] = ACTIONS(1561), - [anon_sym_STAR_STAR] = ACTIONS(1561), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_CARET] = ACTIONS(1561), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_LT_EQ] = ACTIONS(1559), - [anon_sym_EQ_EQ] = ACTIONS(1559), - [anon_sym_BANG_EQ] = ACTIONS(1559), - [anon_sym_GT_EQ] = ACTIONS(1559), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_LT_GT] = ACTIONS(1559), - [anon_sym_is] = ACTIONS(1559), - [anon_sym_PLUS_EQ] = ACTIONS(1559), - [anon_sym_DASH_EQ] = ACTIONS(1559), - [anon_sym_STAR_EQ] = ACTIONS(1559), - [anon_sym_SLASH_EQ] = ACTIONS(1559), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1559), - [anon_sym_PERCENT_EQ] = ACTIONS(1559), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1559), - [anon_sym_GT_GT_EQ] = ACTIONS(1559), - [anon_sym_LT_LT_EQ] = ACTIONS(1559), - [anon_sym_AMP_EQ] = ACTIONS(1559), - [anon_sym_CARET_EQ] = ACTIONS(1559), - [anon_sym_PIPE_EQ] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1559), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1559), + [542] = { + [sym__newline] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_COMMA] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_GT_GT] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_EQ] = ACTIONS(1627), + [anon_sym_not] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1627), + [anon_sym_SLASH] = ACTIONS(1627), + [anon_sym_PERCENT] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(1627), + [anon_sym_STAR_STAR] = ACTIONS(1627), + [anon_sym_PIPE] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1627), + [anon_sym_CARET] = ACTIONS(1627), + [anon_sym_LT_LT] = ACTIONS(1627), + [anon_sym_LT] = ACTIONS(1627), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_GT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1627), + [anon_sym_LT_GT] = ACTIONS(1625), + [anon_sym_is] = ACTIONS(1625), + [anon_sym_PLUS_EQ] = ACTIONS(1625), + [anon_sym_DASH_EQ] = ACTIONS(1625), + [anon_sym_STAR_EQ] = ACTIONS(1625), + [anon_sym_SLASH_EQ] = ACTIONS(1625), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1625), + [anon_sym_PERCENT_EQ] = ACTIONS(1625), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1625), + [anon_sym_GT_GT_EQ] = ACTIONS(1625), + [anon_sym_LT_LT_EQ] = ACTIONS(1625), + [anon_sym_AMP_EQ] = ACTIONS(1625), + [anon_sym_CARET_EQ] = ACTIONS(1625), + [anon_sym_PIPE_EQ] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1625), }, - [515] = { - [sym__newline] = ACTIONS(1563), - [anon_sym_DOT] = ACTIONS(1563), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_COMMA] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_GT_GT] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_in] = ACTIONS(1563), - [anon_sym_EQ] = ACTIONS(1565), - [anon_sym_not] = ACTIONS(1563), - [anon_sym_and] = ACTIONS(1563), - [anon_sym_or] = ACTIONS(1563), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1565), - [anon_sym_PERCENT] = ACTIONS(1565), - [anon_sym_SLASH_SLASH] = ACTIONS(1565), - [anon_sym_STAR_STAR] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1565), - [anon_sym_LT_LT] = ACTIONS(1565), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_LT_EQ] = ACTIONS(1563), - [anon_sym_EQ_EQ] = ACTIONS(1563), - [anon_sym_BANG_EQ] = ACTIONS(1563), - [anon_sym_GT_EQ] = ACTIONS(1563), - [anon_sym_GT] = ACTIONS(1565), - [anon_sym_LT_GT] = ACTIONS(1563), - [anon_sym_is] = ACTIONS(1563), - [anon_sym_PLUS_EQ] = ACTIONS(1563), - [anon_sym_DASH_EQ] = ACTIONS(1563), - [anon_sym_STAR_EQ] = ACTIONS(1563), - [anon_sym_SLASH_EQ] = ACTIONS(1563), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1563), - [anon_sym_PERCENT_EQ] = ACTIONS(1563), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1563), - [anon_sym_GT_GT_EQ] = ACTIONS(1563), - [anon_sym_LT_LT_EQ] = ACTIONS(1563), - [anon_sym_AMP_EQ] = ACTIONS(1563), - [anon_sym_CARET_EQ] = ACTIONS(1563), - [anon_sym_PIPE_EQ] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1563), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1563), + [543] = { + [sym__newline] = ACTIONS(1629), + [anon_sym_DOT] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_COMMA] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_GT_GT] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_in] = ACTIONS(1629), + [anon_sym_EQ] = ACTIONS(1631), + [anon_sym_not] = ACTIONS(1629), + [anon_sym_and] = ACTIONS(1629), + [anon_sym_or] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_SLASH] = ACTIONS(1631), + [anon_sym_PERCENT] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(1631), + [anon_sym_STAR_STAR] = ACTIONS(1631), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1631), + [anon_sym_LT_LT] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1629), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_GT_EQ] = ACTIONS(1629), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_GT] = ACTIONS(1629), + [anon_sym_is] = ACTIONS(1629), + [anon_sym_PLUS_EQ] = ACTIONS(1629), + [anon_sym_DASH_EQ] = ACTIONS(1629), + [anon_sym_STAR_EQ] = ACTIONS(1629), + [anon_sym_SLASH_EQ] = ACTIONS(1629), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1629), + [anon_sym_PERCENT_EQ] = ACTIONS(1629), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1629), + [anon_sym_GT_GT_EQ] = ACTIONS(1629), + [anon_sym_LT_LT_EQ] = ACTIONS(1629), + [anon_sym_AMP_EQ] = ACTIONS(1629), + [anon_sym_CARET_EQ] = ACTIONS(1629), + [anon_sym_PIPE_EQ] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1629), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1629), }, - [516] = { - [anon_sym_RPAREN] = ACTIONS(1567), + [544] = { + [anon_sym_RPAREN] = ACTIONS(1633), [sym_comment] = ACTIONS(76), }, - [517] = { - [sym__expression] = STATE(970), - [sym__primary_expression] = STATE(221), + [545] = { + [sym__expression] = STATE(1028), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -23889,30 +24629,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(696), - [anon_sym_COMMA] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_COMMA] = ACTIONS(732), + [anon_sym_STAR] = ACTIONS(1635), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [518] = { + [546] = { [anon_sym_DOT] = ACTIONS(114), [anon_sym_LPAREN] = ACTIONS(114), [anon_sym_RPAREN] = ACTIONS(114), @@ -23922,7 +24662,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(114), [anon_sym_for] = ACTIONS(114), [anon_sym_in] = ACTIONS(114), - [anon_sym_EQ] = ACTIONS(1571), + [anon_sym_EQ] = ACTIONS(1637), [anon_sym_not] = ACTIONS(114), [anon_sym_and] = ACTIONS(114), [anon_sym_or] = ACTIONS(114), @@ -23947,208 +24687,208 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(114), [sym_comment] = ACTIONS(76), }, - [519] = { - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_RPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_for] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_EQ] = ACTIONS(1573), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), + [547] = { + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_RPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_for] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(1639), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), [sym_comment] = ACTIONS(76), }, - [520] = { - [aux_sym_argument_list_repeat1] = STATE(974), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_COMMA] = ACTIONS(1575), + [548] = { + [aux_sym_argument_list_repeat1] = STATE(1032), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_COMMA] = ACTIONS(1641), [sym_comment] = ACTIONS(76), }, - [521] = { - [sym__comprehension_body] = STATE(241), - [sym_for_in_clause] = STATE(242), - [aux_sym_argument_list_repeat1] = STATE(974), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_COMMA] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(398), - [anon_sym_for] = ACTIONS(400), - [anon_sym_and] = ACTIONS(402), - [anon_sym_or] = ACTIONS(404), + [549] = { + [sym__comprehension_body] = STATE(247), + [sym_for_in_clause] = STATE(248), + [aux_sym_argument_list_repeat1] = STATE(1032), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_COMMA] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(412), + [anon_sym_for] = ACTIONS(414), + [anon_sym_and] = ACTIONS(416), + [anon_sym_or] = ACTIONS(418), [sym_comment] = ACTIONS(76), }, - [522] = { - [sym_argument_list] = STATE(189), - [sym_generator_expression] = STATE(189), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1579), - [anon_sym_SLASH_SLASH] = ACTIONS(1579), - [anon_sym_STAR_STAR] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(1579), - [anon_sym_LT_LT] = ACTIONS(1579), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(1577), - [anon_sym_DASH_EQ] = ACTIONS(1577), - [anon_sym_STAR_EQ] = ACTIONS(1577), - [anon_sym_SLASH_EQ] = ACTIONS(1577), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1577), - [anon_sym_PERCENT_EQ] = ACTIONS(1577), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1577), - [anon_sym_GT_GT_EQ] = ACTIONS(1577), - [anon_sym_LT_LT_EQ] = ACTIONS(1577), - [anon_sym_AMP_EQ] = ACTIONS(1577), - [anon_sym_CARET_EQ] = ACTIONS(1577), - [anon_sym_PIPE_EQ] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [550] = { + [sym_argument_list] = STATE(195), + [sym_generator_expression] = STATE(195), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1645), + [anon_sym_SLASH_SLASH] = ACTIONS(1645), + [anon_sym_STAR_STAR] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_LT_LT] = ACTIONS(1645), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_PLUS_EQ] = ACTIONS(1643), + [anon_sym_DASH_EQ] = ACTIONS(1643), + [anon_sym_STAR_EQ] = ACTIONS(1643), + [anon_sym_SLASH_EQ] = ACTIONS(1643), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1643), + [anon_sym_PERCENT_EQ] = ACTIONS(1643), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1643), + [anon_sym_GT_GT_EQ] = ACTIONS(1643), + [anon_sym_LT_LT_EQ] = ACTIONS(1643), + [anon_sym_AMP_EQ] = ACTIONS(1643), + [anon_sym_CARET_EQ] = ACTIONS(1643), + [anon_sym_PIPE_EQ] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [523] = { - [sym_argument_list] = STATE(189), - [sym_generator_expression] = STATE(189), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(302), - [anon_sym_PERCENT] = ACTIONS(302), - [anon_sym_SLASH_SLASH] = ACTIONS(302), - [anon_sym_STAR_STAR] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(1579), - [anon_sym_LT_LT] = ACTIONS(1579), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(1577), - [anon_sym_DASH_EQ] = ACTIONS(1577), - [anon_sym_STAR_EQ] = ACTIONS(1577), - [anon_sym_SLASH_EQ] = ACTIONS(1577), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1577), - [anon_sym_PERCENT_EQ] = ACTIONS(1577), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1577), - [anon_sym_GT_GT_EQ] = ACTIONS(1577), - [anon_sym_LT_LT_EQ] = ACTIONS(1577), - [anon_sym_AMP_EQ] = ACTIONS(1577), - [anon_sym_CARET_EQ] = ACTIONS(1577), - [anon_sym_PIPE_EQ] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [551] = { + [sym_argument_list] = STATE(195), + [sym_generator_expression] = STATE(195), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_SLASH_SLASH] = ACTIONS(316), + [anon_sym_STAR_STAR] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_LT_LT] = ACTIONS(1645), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_PLUS_EQ] = ACTIONS(1643), + [anon_sym_DASH_EQ] = ACTIONS(1643), + [anon_sym_STAR_EQ] = ACTIONS(1643), + [anon_sym_SLASH_EQ] = ACTIONS(1643), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1643), + [anon_sym_PERCENT_EQ] = ACTIONS(1643), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1643), + [anon_sym_GT_GT_EQ] = ACTIONS(1643), + [anon_sym_LT_LT_EQ] = ACTIONS(1643), + [anon_sym_AMP_EQ] = ACTIONS(1643), + [anon_sym_CARET_EQ] = ACTIONS(1643), + [anon_sym_PIPE_EQ] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [524] = { - [sym_argument_list] = STATE(189), - [sym_generator_expression] = STATE(189), - [sym__newline] = ACTIONS(1581), - [anon_sym_DOT] = ACTIONS(298), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(304), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_EQ] = ACTIONS(1583), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(302), - [anon_sym_PERCENT] = ACTIONS(302), - [anon_sym_SLASH_SLASH] = ACTIONS(302), - [anon_sym_STAR_STAR] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(316), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(304), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_PLUS_EQ] = ACTIONS(1581), - [anon_sym_DASH_EQ] = ACTIONS(1581), - [anon_sym_STAR_EQ] = ACTIONS(1581), - [anon_sym_SLASH_EQ] = ACTIONS(1581), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1581), - [anon_sym_PERCENT_EQ] = ACTIONS(1581), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1581), - [anon_sym_GT_GT_EQ] = ACTIONS(1581), - [anon_sym_LT_LT_EQ] = ACTIONS(1581), - [anon_sym_AMP_EQ] = ACTIONS(1581), - [anon_sym_CARET_EQ] = ACTIONS(1581), - [anon_sym_PIPE_EQ] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(326), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1581), + [552] = { + [sym_argument_list] = STATE(195), + [sym_generator_expression] = STATE(195), + [sym__newline] = ACTIONS(1647), + [anon_sym_DOT] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_EQ] = ACTIONS(1649), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_SLASH_SLASH] = ACTIONS(316), + [anon_sym_STAR_STAR] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_AMP] = ACTIONS(332), + [anon_sym_CARET] = ACTIONS(334), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_PLUS_EQ] = ACTIONS(1647), + [anon_sym_DASH_EQ] = ACTIONS(1647), + [anon_sym_STAR_EQ] = ACTIONS(1647), + [anon_sym_SLASH_EQ] = ACTIONS(1647), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1647), + [anon_sym_PERCENT_EQ] = ACTIONS(1647), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1647), + [anon_sym_GT_GT_EQ] = ACTIONS(1647), + [anon_sym_LT_LT_EQ] = ACTIONS(1647), + [anon_sym_AMP_EQ] = ACTIONS(1647), + [anon_sym_CARET_EQ] = ACTIONS(1647), + [anon_sym_PIPE_EQ] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(340), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1647), }, - [525] = { - [sym__primary_expression] = STATE(975), + [553] = { + [sym__primary_expression] = STATE(1033), [sym_binary_operator] = STATE(28), [sym_unary_operator] = STATE(28), [sym_attribute] = STATE(28), @@ -24165,8 +24905,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_generator_expression] = STATE(28), [sym_concatenated_string] = STATE(28), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), [anon_sym_TILDE] = ACTIONS(56), @@ -24182,254 +24922,254 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(70), [sym_comment] = ACTIONS(76), }, - [526] = { - [sym_argument_list] = STATE(189), - [sym_generator_expression] = STATE(189), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_SLASH] = ACTIONS(302), - [anon_sym_PERCENT] = ACTIONS(302), - [anon_sym_SLASH_SLASH] = ACTIONS(302), - [anon_sym_STAR_STAR] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(1579), - [anon_sym_LT_LT] = ACTIONS(1579), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(1577), - [anon_sym_DASH_EQ] = ACTIONS(1577), - [anon_sym_STAR_EQ] = ACTIONS(1577), - [anon_sym_SLASH_EQ] = ACTIONS(1577), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1577), - [anon_sym_PERCENT_EQ] = ACTIONS(1577), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1577), - [anon_sym_GT_GT_EQ] = ACTIONS(1577), - [anon_sym_LT_LT_EQ] = ACTIONS(1577), - [anon_sym_AMP_EQ] = ACTIONS(1577), - [anon_sym_CARET_EQ] = ACTIONS(1577), - [anon_sym_PIPE_EQ] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [554] = { + [sym_argument_list] = STATE(195), + [sym_generator_expression] = STATE(195), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_SLASH_SLASH] = ACTIONS(316), + [anon_sym_STAR_STAR] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_LT_LT] = ACTIONS(1645), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_PLUS_EQ] = ACTIONS(1643), + [anon_sym_DASH_EQ] = ACTIONS(1643), + [anon_sym_STAR_EQ] = ACTIONS(1643), + [anon_sym_SLASH_EQ] = ACTIONS(1643), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1643), + [anon_sym_PERCENT_EQ] = ACTIONS(1643), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1643), + [anon_sym_GT_GT_EQ] = ACTIONS(1643), + [anon_sym_LT_LT_EQ] = ACTIONS(1643), + [anon_sym_AMP_EQ] = ACTIONS(1643), + [anon_sym_CARET_EQ] = ACTIONS(1643), + [anon_sym_PIPE_EQ] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [527] = { - [sym_argument_list] = STATE(189), - [sym_generator_expression] = STATE(189), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1579), - [anon_sym_SLASH_SLASH] = ACTIONS(1579), - [anon_sym_STAR_STAR] = ACTIONS(1579), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(1579), - [anon_sym_LT_LT] = ACTIONS(1579), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(1577), - [anon_sym_DASH_EQ] = ACTIONS(1577), - [anon_sym_STAR_EQ] = ACTIONS(1577), - [anon_sym_SLASH_EQ] = ACTIONS(1577), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1577), - [anon_sym_PERCENT_EQ] = ACTIONS(1577), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1577), - [anon_sym_GT_GT_EQ] = ACTIONS(1577), - [anon_sym_LT_LT_EQ] = ACTIONS(1577), - [anon_sym_AMP_EQ] = ACTIONS(1577), - [anon_sym_CARET_EQ] = ACTIONS(1577), - [anon_sym_PIPE_EQ] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [555] = { + [sym_argument_list] = STATE(195), + [sym_generator_expression] = STATE(195), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1645), + [anon_sym_SLASH_SLASH] = ACTIONS(1645), + [anon_sym_STAR_STAR] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_LT_LT] = ACTIONS(1645), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_PLUS_EQ] = ACTIONS(1643), + [anon_sym_DASH_EQ] = ACTIONS(1643), + [anon_sym_STAR_EQ] = ACTIONS(1643), + [anon_sym_SLASH_EQ] = ACTIONS(1643), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1643), + [anon_sym_PERCENT_EQ] = ACTIONS(1643), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1643), + [anon_sym_GT_GT_EQ] = ACTIONS(1643), + [anon_sym_LT_LT_EQ] = ACTIONS(1643), + [anon_sym_AMP_EQ] = ACTIONS(1643), + [anon_sym_CARET_EQ] = ACTIONS(1643), + [anon_sym_PIPE_EQ] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [528] = { - [sym_argument_list] = STATE(189), - [sym_generator_expression] = STATE(189), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(304), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(302), - [anon_sym_PERCENT] = ACTIONS(302), - [anon_sym_SLASH_SLASH] = ACTIONS(302), - [anon_sym_STAR_STAR] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(304), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(1577), - [anon_sym_DASH_EQ] = ACTIONS(1577), - [anon_sym_STAR_EQ] = ACTIONS(1577), - [anon_sym_SLASH_EQ] = ACTIONS(1577), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1577), - [anon_sym_PERCENT_EQ] = ACTIONS(1577), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1577), - [anon_sym_GT_GT_EQ] = ACTIONS(1577), - [anon_sym_LT_LT_EQ] = ACTIONS(1577), - [anon_sym_AMP_EQ] = ACTIONS(1577), - [anon_sym_CARET_EQ] = ACTIONS(1577), - [anon_sym_PIPE_EQ] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [556] = { + [sym_argument_list] = STATE(195), + [sym_generator_expression] = STATE(195), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_SLASH_SLASH] = ACTIONS(316), + [anon_sym_STAR_STAR] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(332), + [anon_sym_CARET] = ACTIONS(334), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_PLUS_EQ] = ACTIONS(1643), + [anon_sym_DASH_EQ] = ACTIONS(1643), + [anon_sym_STAR_EQ] = ACTIONS(1643), + [anon_sym_SLASH_EQ] = ACTIONS(1643), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1643), + [anon_sym_PERCENT_EQ] = ACTIONS(1643), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1643), + [anon_sym_GT_GT_EQ] = ACTIONS(1643), + [anon_sym_LT_LT_EQ] = ACTIONS(1643), + [anon_sym_AMP_EQ] = ACTIONS(1643), + [anon_sym_CARET_EQ] = ACTIONS(1643), + [anon_sym_PIPE_EQ] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [529] = { - [sym_argument_list] = STATE(189), - [sym_generator_expression] = STATE(189), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(304), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(302), - [anon_sym_PERCENT] = ACTIONS(302), - [anon_sym_SLASH_SLASH] = ACTIONS(302), - [anon_sym_STAR_STAR] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(304), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(1577), - [anon_sym_DASH_EQ] = ACTIONS(1577), - [anon_sym_STAR_EQ] = ACTIONS(1577), - [anon_sym_SLASH_EQ] = ACTIONS(1577), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1577), - [anon_sym_PERCENT_EQ] = ACTIONS(1577), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1577), - [anon_sym_GT_GT_EQ] = ACTIONS(1577), - [anon_sym_LT_LT_EQ] = ACTIONS(1577), - [anon_sym_AMP_EQ] = ACTIONS(1577), - [anon_sym_CARET_EQ] = ACTIONS(1577), - [anon_sym_PIPE_EQ] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [557] = { + [sym_argument_list] = STATE(195), + [sym_generator_expression] = STATE(195), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_SLASH_SLASH] = ACTIONS(316), + [anon_sym_STAR_STAR] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_CARET] = ACTIONS(334), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_PLUS_EQ] = ACTIONS(1643), + [anon_sym_DASH_EQ] = ACTIONS(1643), + [anon_sym_STAR_EQ] = ACTIONS(1643), + [anon_sym_SLASH_EQ] = ACTIONS(1643), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1643), + [anon_sym_PERCENT_EQ] = ACTIONS(1643), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1643), + [anon_sym_GT_GT_EQ] = ACTIONS(1643), + [anon_sym_LT_LT_EQ] = ACTIONS(1643), + [anon_sym_AMP_EQ] = ACTIONS(1643), + [anon_sym_CARET_EQ] = ACTIONS(1643), + [anon_sym_PIPE_EQ] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [530] = { - [sym_argument_list] = STATE(189), - [sym_generator_expression] = STATE(189), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(304), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(302), - [anon_sym_PERCENT] = ACTIONS(302), - [anon_sym_SLASH_SLASH] = ACTIONS(302), - [anon_sym_STAR_STAR] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(1579), - [anon_sym_LT_LT] = ACTIONS(304), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_PLUS_EQ] = ACTIONS(1577), - [anon_sym_DASH_EQ] = ACTIONS(1577), - [anon_sym_STAR_EQ] = ACTIONS(1577), - [anon_sym_SLASH_EQ] = ACTIONS(1577), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1577), - [anon_sym_PERCENT_EQ] = ACTIONS(1577), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1577), - [anon_sym_GT_GT_EQ] = ACTIONS(1577), - [anon_sym_LT_LT_EQ] = ACTIONS(1577), - [anon_sym_AMP_EQ] = ACTIONS(1577), - [anon_sym_CARET_EQ] = ACTIONS(1577), - [anon_sym_PIPE_EQ] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [558] = { + [sym_argument_list] = STATE(195), + [sym_generator_expression] = STATE(195), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_SLASH_SLASH] = ACTIONS(316), + [anon_sym_STAR_STAR] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_PLUS_EQ] = ACTIONS(1643), + [anon_sym_DASH_EQ] = ACTIONS(1643), + [anon_sym_STAR_EQ] = ACTIONS(1643), + [anon_sym_SLASH_EQ] = ACTIONS(1643), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1643), + [anon_sym_PERCENT_EQ] = ACTIONS(1643), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1643), + [anon_sym_GT_GT_EQ] = ACTIONS(1643), + [anon_sym_LT_LT_EQ] = ACTIONS(1643), + [anon_sym_AMP_EQ] = ACTIONS(1643), + [anon_sym_CARET_EQ] = ACTIONS(1643), + [anon_sym_PIPE_EQ] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [531] = { - [sym__expression] = STATE(977), - [sym__primary_expression] = STATE(538), + [559] = { + [sym__expression] = STATE(1035), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -24452,32 +25192,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_COMMA] = ACTIONS(1585), + [anon_sym_COMMA] = ACTIONS(1651), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(1587), + [anon_sym_COLON] = ACTIONS(1653), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(1585), + [anon_sym_RBRACK] = ACTIONS(1651), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [532] = { - [sym__expression] = STATE(978), - [sym__primary_expression] = STATE(538), + [560] = { + [sym__expression] = STATE(1036), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -24502,26 +25242,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [533] = { - [sym__primary_expression] = STATE(210), + [561] = { + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -24540,13 +25280,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -24555,62 +25295,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [534] = { - [sym_lambda_parameters] = STATE(980), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(1589), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [562] = { + [sym_lambda_parameters] = STATE(1038), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(1655), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [535] = { - [aux_sym_concatenated_string_repeat1] = STATE(981), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_COLON] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [anon_sym_RBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [563] = { + [aux_sym_concatenated_string_repeat1] = STATE(1039), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_COLON] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [anon_sym_RBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [536] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(538), + [564] = { + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -24635,293 +25375,292 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [537] = { - [aux_sym_subscript_repeat1] = STATE(988), - [anon_sym_COMMA] = ACTIONS(1591), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_COLON] = ACTIONS(1595), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1599), - [anon_sym_RBRACK] = ACTIONS(1601), + [565] = { + [aux_sym_subscript_repeat1] = STATE(1046), + [anon_sym_COMMA] = ACTIONS(1657), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_COLON] = ACTIONS(1661), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1665), + [anon_sym_RBRACK] = ACTIONS(1667), [sym_comment] = ACTIONS(76), }, - [538] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(999), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_GT_GT] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(296), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_in] = ACTIONS(1607), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_SLASH] = ACTIONS(1603), - [anon_sym_PERCENT] = ACTIONS(1613), - [anon_sym_SLASH_SLASH] = ACTIONS(1613), - [anon_sym_STAR_STAR] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_LT_LT] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1607), - [anon_sym_EQ_EQ] = ACTIONS(1607), - [anon_sym_BANG_EQ] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1607), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_GT] = ACTIONS(1607), - [anon_sym_is] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACK] = ACTIONS(296), + [566] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(1057), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(310), + [anon_sym_COLON] = ACTIONS(310), + [anon_sym_in] = ACTIONS(1673), + [anon_sym_not] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_PERCENT] = ACTIONS(1679), + [anon_sym_SLASH_SLASH] = ACTIONS(1679), + [anon_sym_STAR_STAR] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1687), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_LT_EQ] = ACTIONS(1673), + [anon_sym_EQ_EQ] = ACTIONS(1673), + [anon_sym_BANG_EQ] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1673), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_LT_GT] = ACTIONS(1673), + [anon_sym_is] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACK] = ACTIONS(310), [sym_comment] = ACTIONS(76), }, - [539] = { - [aux_sym_subscript_repeat1] = STATE(988), - [anon_sym_COMMA] = ACTIONS(1591), - [anon_sym_RBRACK] = ACTIONS(1601), + [567] = { + [aux_sym_subscript_repeat1] = STATE(1046), + [anon_sym_COMMA] = ACTIONS(1657), + [anon_sym_RBRACK] = ACTIONS(1667), [sym_comment] = ACTIONS(76), }, - [540] = { - [aux_sym_comparison_operator_repeat1] = STATE(540), - [sym__newline] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1627), - [anon_sym_EQ] = ACTIONS(1583), - [anon_sym_not] = ACTIONS(1630), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_LT_EQ] = ACTIONS(1627), - [anon_sym_EQ_EQ] = ACTIONS(1627), - [anon_sym_BANG_EQ] = ACTIONS(1627), - [anon_sym_GT_EQ] = ACTIONS(1627), - [anon_sym_GT] = ACTIONS(1633), - [anon_sym_LT_GT] = ACTIONS(1627), - [anon_sym_is] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1581), - [anon_sym_DASH_EQ] = ACTIONS(1581), - [anon_sym_STAR_EQ] = ACTIONS(1581), - [anon_sym_SLASH_EQ] = ACTIONS(1581), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1581), - [anon_sym_PERCENT_EQ] = ACTIONS(1581), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1581), - [anon_sym_GT_GT_EQ] = ACTIONS(1581), - [anon_sym_LT_LT_EQ] = ACTIONS(1581), - [anon_sym_AMP_EQ] = ACTIONS(1581), - [anon_sym_CARET_EQ] = ACTIONS(1581), - [anon_sym_PIPE_EQ] = ACTIONS(1581), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1581), + [568] = { + [aux_sym_comparison_operator_repeat1] = STATE(568), + [sym__newline] = ACTIONS(1647), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1693), + [anon_sym_EQ] = ACTIONS(1649), + [anon_sym_not] = ACTIONS(1696), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1699), + [anon_sym_LT_EQ] = ACTIONS(1693), + [anon_sym_EQ_EQ] = ACTIONS(1693), + [anon_sym_BANG_EQ] = ACTIONS(1693), + [anon_sym_GT_EQ] = ACTIONS(1693), + [anon_sym_GT] = ACTIONS(1699), + [anon_sym_LT_GT] = ACTIONS(1693), + [anon_sym_is] = ACTIONS(1702), + [anon_sym_PLUS_EQ] = ACTIONS(1647), + [anon_sym_DASH_EQ] = ACTIONS(1647), + [anon_sym_STAR_EQ] = ACTIONS(1647), + [anon_sym_SLASH_EQ] = ACTIONS(1647), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1647), + [anon_sym_PERCENT_EQ] = ACTIONS(1647), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1647), + [anon_sym_GT_GT_EQ] = ACTIONS(1647), + [anon_sym_LT_LT_EQ] = ACTIONS(1647), + [anon_sym_AMP_EQ] = ACTIONS(1647), + [anon_sym_CARET_EQ] = ACTIONS(1647), + [anon_sym_PIPE_EQ] = ACTIONS(1647), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1647), }, - [541] = { - [sym__newline] = ACTIONS(1639), - [anon_sym_DOT] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_COMMA] = ACTIONS(1639), - [anon_sym_as] = ACTIONS(1639), + [569] = { + [sym__newline] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1639), + [sym__semicolon] = ACTIONS(1705), }, - [542] = { - [aux_sym_dotted_name_repeat1] = STATE(542), - [sym__newline] = ACTIONS(1639), - [anon_sym_DOT] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(1639), - [anon_sym_as] = ACTIONS(1639), + [570] = { + [aux_sym_dotted_name_repeat1] = STATE(570), + [sym__newline] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_COMMA] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1639), + [sym__semicolon] = ACTIONS(1705), }, - [543] = { - [sym__newline] = ACTIONS(1644), - [anon_sym_COMMA] = ACTIONS(1644), + [571] = { + [sym__newline] = ACTIONS(1710), + [anon_sym_COMMA] = ACTIONS(1710), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1644), + [sym__semicolon] = ACTIONS(1710), }, - [544] = { - [sym__newline] = ACTIONS(1644), - [anon_sym_COMMA] = ACTIONS(1644), - [anon_sym_as] = ACTIONS(344), + [572] = { + [sym__newline] = ACTIONS(1710), + [anon_sym_COMMA] = ACTIONS(1710), + [anon_sym_as] = ACTIONS(358), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1644), + [sym__semicolon] = ACTIONS(1710), }, - [545] = { - [sym_aliased_import] = STATE(543), - [sym_dotted_name] = STATE(544), - [sym__newline] = ACTIONS(1646), + [573] = { + [sym_aliased_import] = STATE(571), + [sym_dotted_name] = STATE(572), + [sym__newline] = ACTIONS(1712), [sym_identifier] = ACTIONS(78), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1646), + [sym__semicolon] = ACTIONS(1712), }, - [546] = { - [aux_sym__import_list_repeat1] = STATE(546), - [sym__newline] = ACTIONS(1644), - [anon_sym_COMMA] = ACTIONS(1648), + [574] = { + [aux_sym__import_list_repeat1] = STATE(574), + [sym__newline] = ACTIONS(1710), + [anon_sym_COMMA] = ACTIONS(1714), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1644), + [sym__semicolon] = ACTIONS(1710), }, - [547] = { - [sym__newline] = ACTIONS(1651), - [anon_sym_COMMA] = ACTIONS(1651), + [575] = { + [sym__newline] = ACTIONS(1717), + [anon_sym_COMMA] = ACTIONS(1717), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1651), + [sym__semicolon] = ACTIONS(1717), }, - [548] = { - [anon_sym_import] = ACTIONS(1639), - [anon_sym_DOT] = ACTIONS(1639), - [anon_sym_RPAREN] = ACTIONS(1639), - [anon_sym_COMMA] = ACTIONS(1639), - [anon_sym_as] = ACTIONS(1639), + [576] = { + [anon_sym_import] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_RPAREN] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), [sym_comment] = ACTIONS(76), }, - [549] = { - [aux_sym_dotted_name_repeat1] = STATE(549), - [anon_sym_import] = ACTIONS(1639), - [anon_sym_DOT] = ACTIONS(1653), + [577] = { + [aux_sym_dotted_name_repeat1] = STATE(577), + [anon_sym_import] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1719), [sym_comment] = ACTIONS(76), }, - [550] = { - [sym__import_list] = STATE(1002), - [sym_aliased_import] = STATE(1003), - [sym_dotted_name] = STATE(1004), - [sym_identifier] = ACTIONS(1656), + [578] = { + [sym__import_list] = STATE(1060), + [sym_aliased_import] = STATE(1061), + [sym_dotted_name] = STATE(1062), + [sym_identifier] = ACTIONS(1722), [sym_comment] = ACTIONS(76), }, - [551] = { - [sym__newline] = ACTIONS(1658), + [579] = { + [sym__newline] = ACTIONS(1724), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1658), + [sym__semicolon] = ACTIONS(1724), }, - [552] = { - [sym__newline] = ACTIONS(1660), + [580] = { + [sym__newline] = ACTIONS(1726), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1660), + [sym__semicolon] = ACTIONS(1726), }, - [553] = { - [sym__import_list] = STATE(1006), + [581] = { + [sym__import_list] = STATE(1064), [sym_aliased_import] = STATE(46), - [sym_wildcard_import] = STATE(1006), + [sym_wildcard_import] = STATE(1064), [sym_dotted_name] = STATE(47), - [anon_sym_LPAREN] = ACTIONS(1662), - [anon_sym_STAR] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1728), + [anon_sym_STAR] = ACTIONS(1063), [sym_identifier] = ACTIONS(78), [sym_comment] = ACTIONS(76), }, - [554] = { - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_RPAREN] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_as] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_not] = ACTIONS(1044), - [anon_sym_and] = ACTIONS(1044), - [anon_sym_or] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1044), - [anon_sym_SLASH_SLASH] = ACTIONS(1044), - [anon_sym_STAR_STAR] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_GT] = ACTIONS(1044), - [anon_sym_is] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_RBRACK] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), + [582] = { + [anon_sym_DOT] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_as] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_COLON] = ACTIONS(1080), + [anon_sym_else] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_in] = ACTIONS(1080), + [anon_sym_EQ] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1080), + [anon_sym_and] = ACTIONS(1080), + [anon_sym_or] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_PERCENT] = ACTIONS(1080), + [anon_sym_SLASH_SLASH] = ACTIONS(1080), + [anon_sym_STAR_STAR] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(1080), + [anon_sym_BANG_EQ] = ACTIONS(1080), + [anon_sym_GT_EQ] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_LT_GT] = ACTIONS(1080), + [anon_sym_is] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_RBRACK] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), [sym_comment] = ACTIONS(76), }, - [555] = { - [anon_sym_DOT] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1096), - [anon_sym_RPAREN] = ACTIONS(1096), - [anon_sym_COMMA] = ACTIONS(1096), - [anon_sym_as] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1096), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_COLON] = ACTIONS(1096), - [anon_sym_else] = ACTIONS(1096), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_in] = ACTIONS(1096), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_not] = ACTIONS(1096), - [anon_sym_and] = ACTIONS(1096), - [anon_sym_or] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1096), - [anon_sym_SLASH_SLASH] = ACTIONS(1096), - [anon_sym_STAR_STAR] = ACTIONS(1096), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_AMP] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1096), - [anon_sym_LT_LT] = ACTIONS(1096), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1096), - [anon_sym_BANG_EQ] = ACTIONS(1096), - [anon_sym_GT_EQ] = ACTIONS(1096), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_GT] = ACTIONS(1096), - [anon_sym_is] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(1096), - [anon_sym_RBRACK] = ACTIONS(1096), - [anon_sym_RBRACE] = ACTIONS(1096), + [583] = { + [anon_sym_DOT] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1132), + [anon_sym_as] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_GT_GT] = ACTIONS(1132), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_COLON] = ACTIONS(1132), + [anon_sym_else] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1132), + [anon_sym_in] = ACTIONS(1132), + [anon_sym_EQ] = ACTIONS(1134), + [anon_sym_not] = ACTIONS(1132), + [anon_sym_and] = ACTIONS(1132), + [anon_sym_or] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1134), + [anon_sym_PERCENT] = ACTIONS(1132), + [anon_sym_SLASH_SLASH] = ACTIONS(1132), + [anon_sym_STAR_STAR] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_LT_EQ] = ACTIONS(1132), + [anon_sym_EQ_EQ] = ACTIONS(1132), + [anon_sym_BANG_EQ] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1134), + [anon_sym_LT_GT] = ACTIONS(1132), + [anon_sym_is] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1132), + [anon_sym_RBRACK] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1132), [sym_comment] = ACTIONS(76), }, - [556] = { - [sym__expression] = STATE(596), - [sym__primary_expression] = STATE(221), + [584] = { + [sym__expression] = STATE(624), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_yield] = STATE(597), + [sym_yield] = STATE(625), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -24938,49 +25677,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_RPAREN] = ACTIONS(1730), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_yield] = ACTIONS(98), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [557] = { - [anon_sym_RPAREN] = ACTIONS(1666), + [585] = { + [anon_sym_RPAREN] = ACTIONS(1732), [sym_comment] = ACTIONS(76), }, - [558] = { - [aux_sym_tuple_repeat1] = STATE(607), - [anon_sym_RPAREN] = ACTIONS(1664), - [anon_sym_COMMA] = ACTIONS(1668), + [586] = { + [aux_sym_tuple_repeat1] = STATE(635), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1734), [sym_comment] = ACTIONS(76), }, - [559] = { - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(398), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(402), - [anon_sym_or] = ACTIONS(404), + [587] = { + [anon_sym_RPAREN] = ACTIONS(1423), + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(412), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(416), + [anon_sym_or] = ACTIONS(418), [sym_comment] = ACTIONS(76), }, - [560] = { - [sym__expression] = STATE(1010), + [588] = { + [sym__expression] = STATE(1068), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -25024,25 +25763,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(112), [sym_comment] = ACTIONS(76), }, - [561] = { - [anon_sym_RPAREN] = ACTIONS(1373), - [anon_sym_COMMA] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [589] = { + [anon_sym_RPAREN] = ACTIONS(1439), + [anon_sym_COMMA] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [562] = { - [anon_sym_RPAREN] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [590] = { + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [563] = { - [sym__expression] = STATE(1011), - [sym__primary_expression] = STATE(221), + [591] = { + [sym__expression] = STATE(1069), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -25067,66 +25806,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [564] = { - [anon_sym_COLON] = ACTIONS(1670), + [592] = { + [anon_sym_COLON] = ACTIONS(1736), [sym_comment] = ACTIONS(76), }, - [565] = { - [aux_sym_concatenated_string_repeat1] = STATE(1013), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [593] = { + [aux_sym_concatenated_string_repeat1] = STATE(1071), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [566] = { - [sym__expression] = STATE(1014), - [sym__primary_expression] = STATE(221), + [594] = { + [sym__expression] = STATE(1072), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -25149,31 +25888,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(852), - [anon_sym_COMMA] = ACTIONS(852), + [anon_sym_RPAREN] = ACTIONS(888), + [anon_sym_COMMA] = ACTIONS(888), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [567] = { - [sym__expression] = STATE(1015), - [sym__primary_expression] = STATE(509), + [595] = { + [sym__expression] = STATE(1073), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -25198,27 +25937,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [568] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(221), + [596] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -25243,27 +25982,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [569] = { - [sym__expression] = STATE(1016), - [sym__primary_expression] = STATE(221), + [597] = { + [sym__expression] = STATE(1074), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -25288,32 +26027,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [570] = { - [aux_sym_print_statement_repeat1] = STATE(1018), - [anon_sym_RPAREN] = ACTIONS(852), - [anon_sym_COMMA] = ACTIONS(1672), + [598] = { + [aux_sym_print_statement_repeat1] = STATE(1076), + [anon_sym_RPAREN] = ACTIONS(888), + [anon_sym_COMMA] = ACTIONS(1738), [sym_comment] = ACTIONS(76), }, - [571] = { - [sym__primary_expression] = STATE(1019), + [599] = { + [sym__primary_expression] = STATE(1077), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -25332,13 +26071,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -25347,8 +26086,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [572] = { - [sym__primary_expression] = STATE(1020), + [600] = { + [sym__primary_expression] = STATE(1078), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -25367,13 +26106,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -25382,8 +26121,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [573] = { - [sym__primary_expression] = STATE(1021), + [601] = { + [sym__primary_expression] = STATE(1079), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -25402,13 +26141,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -25417,12 +26156,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [574] = { - [anon_sym_in] = ACTIONS(1674), + [602] = { + [anon_sym_in] = ACTIONS(1740), [sym_comment] = ACTIONS(76), }, - [575] = { - [sym__primary_expression] = STATE(1023), + [603] = { + [sym__primary_expression] = STATE(1081), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -25441,13 +26180,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -25456,8 +26195,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [576] = { - [sym__primary_expression] = STATE(618), + [604] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -25476,13 +26215,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -25491,8 +26230,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [577] = { - [sym__primary_expression] = STATE(1024), + [605] = { + [sym__primary_expression] = STATE(1082), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -25511,13 +26250,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -25526,8 +26265,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [578] = { - [sym__primary_expression] = STATE(1025), + [606] = { + [sym__primary_expression] = STATE(1083), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -25546,13 +26285,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -25561,8 +26300,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [579] = { - [sym__primary_expression] = STATE(1026), + [607] = { + [sym__primary_expression] = STATE(1084), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -25581,13 +26320,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -25596,8 +26335,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [580] = { - [sym__primary_expression] = STATE(1021), + [608] = { + [sym__primary_expression] = STATE(1079), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -25616,14 +26355,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), + [anon_sym_not] = ACTIONS(1742), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -25632,69 +26371,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [581] = { - [aux_sym_comparison_operator_repeat1] = STATE(1027), - [anon_sym_RPAREN] = ACTIONS(900), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_in] = ACTIONS(1064), - [anon_sym_not] = ACTIONS(1066), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_LT_EQ] = ACTIONS(1064), - [anon_sym_EQ_EQ] = ACTIONS(1064), - [anon_sym_BANG_EQ] = ACTIONS(1064), - [anon_sym_GT_EQ] = ACTIONS(1064), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_LT_GT] = ACTIONS(1064), - [anon_sym_is] = ACTIONS(1082), + [609] = { + [aux_sym_comparison_operator_repeat1] = STATE(1085), + [anon_sym_RPAREN] = ACTIONS(936), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_in] = ACTIONS(1100), + [anon_sym_not] = ACTIONS(1102), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(1116), + [anon_sym_LT_EQ] = ACTIONS(1100), + [anon_sym_EQ_EQ] = ACTIONS(1100), + [anon_sym_BANG_EQ] = ACTIONS(1100), + [anon_sym_GT_EQ] = ACTIONS(1100), + [anon_sym_GT] = ACTIONS(1116), + [anon_sym_LT_GT] = ACTIONS(1100), + [anon_sym_is] = ACTIONS(1118), [sym_comment] = ACTIONS(76), }, - [582] = { - [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_RPAREN] = ACTIONS(1375), - [anon_sym_COMMA] = ACTIONS(1375), - [anon_sym_as] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1375), - [anon_sym_COLON] = ACTIONS(1375), - [anon_sym_else] = ACTIONS(1375), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_in] = ACTIONS(1375), - [anon_sym_EQ] = ACTIONS(1377), - [anon_sym_not] = ACTIONS(1375), - [anon_sym_and] = ACTIONS(1375), - [anon_sym_or] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1375), - [anon_sym_SLASH_SLASH] = ACTIONS(1375), - [anon_sym_STAR_STAR] = ACTIONS(1375), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_LT_EQ] = ACTIONS(1375), - [anon_sym_EQ_EQ] = ACTIONS(1375), - [anon_sym_BANG_EQ] = ACTIONS(1375), - [anon_sym_GT_EQ] = ACTIONS(1375), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_LT_GT] = ACTIONS(1375), - [anon_sym_is] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1375), - [anon_sym_RBRACK] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1375), + [610] = { + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [anon_sym_as] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_COLON] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1441), + [anon_sym_and] = ACTIONS(1441), + [anon_sym_or] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(1441), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_LT_GT] = ACTIONS(1441), + [anon_sym_is] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_RBRACK] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), [sym_comment] = ACTIONS(76), }, - [583] = { - [sym_list_splat] = STATE(871), - [sym__expression] = STATE(872), - [sym__primary_expression] = STATE(435), + [611] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(930), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -25717,82 +26456,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(222), + [anon_sym_STAR] = ACTIONS(236), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(1678), + [anon_sym_RBRACK] = ACTIONS(1744), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [584] = { - [aux_sym_list_repeat1] = STATE(874), - [anon_sym_COMMA] = ACTIONS(1680), - [anon_sym_RBRACK] = ACTIONS(1678), + [612] = { + [aux_sym_list_repeat1] = STATE(932), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1744), [sym_comment] = ACTIONS(76), }, - [585] = { - [anon_sym_RBRACK] = ACTIONS(1682), + [613] = { + [anon_sym_RBRACK] = ACTIONS(1748), [sym_comment] = ACTIONS(76), }, - [586] = { - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_RPAREN] = ACTIONS(1425), - [anon_sym_COMMA] = ACTIONS(1425), - [anon_sym_as] = ACTIONS(1425), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_COLON] = ACTIONS(1425), - [anon_sym_else] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_in] = ACTIONS(1425), - [anon_sym_EQ] = ACTIONS(1427), - [anon_sym_not] = ACTIONS(1425), - [anon_sym_and] = ACTIONS(1425), - [anon_sym_or] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_SLASH] = ACTIONS(1427), - [anon_sym_PERCENT] = ACTIONS(1425), - [anon_sym_SLASH_SLASH] = ACTIONS(1425), - [anon_sym_STAR_STAR] = ACTIONS(1425), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_CARET] = ACTIONS(1425), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1425), - [anon_sym_BANG_EQ] = ACTIONS(1425), - [anon_sym_GT_EQ] = ACTIONS(1425), - [anon_sym_GT] = ACTIONS(1427), - [anon_sym_LT_GT] = ACTIONS(1425), - [anon_sym_is] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1425), - [anon_sym_RBRACK] = ACTIONS(1425), - [anon_sym_RBRACE] = ACTIONS(1425), + [614] = { + [anon_sym_DOT] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_RPAREN] = ACTIONS(1491), + [anon_sym_COMMA] = ACTIONS(1491), + [anon_sym_as] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_COLON] = ACTIONS(1491), + [anon_sym_else] = ACTIONS(1491), + [anon_sym_for] = ACTIONS(1491), + [anon_sym_in] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1491), + [anon_sym_and] = ACTIONS(1491), + [anon_sym_or] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PERCENT] = ACTIONS(1491), + [anon_sym_SLASH_SLASH] = ACTIONS(1491), + [anon_sym_STAR_STAR] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_LT_LT] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_LT_EQ] = ACTIONS(1491), + [anon_sym_EQ_EQ] = ACTIONS(1491), + [anon_sym_BANG_EQ] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1491), + [anon_sym_GT] = ACTIONS(1493), + [anon_sym_LT_GT] = ACTIONS(1491), + [anon_sym_is] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_RBRACK] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), [sym_comment] = ACTIONS(76), }, - [587] = { - [sym_list_splat] = STATE(871), - [sym__expression] = STATE(914), - [sym__primary_expression] = STATE(467), + [615] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(972), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -25815,78 +26554,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1529), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(1684), - [sym_string] = ACTIONS(790), + [anon_sym_RBRACE] = ACTIONS(1750), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [588] = { - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_RPAREN] = ACTIONS(1467), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_COLON] = ACTIONS(1467), - [anon_sym_else] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_not] = ACTIONS(1467), - [anon_sym_and] = ACTIONS(1467), - [anon_sym_or] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1467), - [anon_sym_SLASH_SLASH] = ACTIONS(1467), - [anon_sym_STAR_STAR] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(1469), - [anon_sym_LT_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(1467), - [anon_sym_GT] = ACTIONS(1469), - [anon_sym_LT_GT] = ACTIONS(1467), - [anon_sym_is] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_RBRACK] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), + [616] = { + [anon_sym_DOT] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_RPAREN] = ACTIONS(1533), + [anon_sym_COMMA] = ACTIONS(1533), + [anon_sym_as] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_COLON] = ACTIONS(1533), + [anon_sym_else] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_in] = ACTIONS(1533), + [anon_sym_EQ] = ACTIONS(1535), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1533), + [anon_sym_or] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(1535), + [anon_sym_PERCENT] = ACTIONS(1533), + [anon_sym_SLASH_SLASH] = ACTIONS(1533), + [anon_sym_STAR_STAR] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_LT_EQ] = ACTIONS(1533), + [anon_sym_EQ_EQ] = ACTIONS(1533), + [anon_sym_BANG_EQ] = ACTIONS(1533), + [anon_sym_GT_EQ] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1535), + [anon_sym_LT_GT] = ACTIONS(1533), + [anon_sym_is] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_RBRACK] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), [sym_comment] = ACTIONS(76), }, - [589] = { - [aux_sym_list_repeat1] = STATE(916), - [anon_sym_COMMA] = ACTIONS(1686), - [anon_sym_RBRACE] = ACTIONS(1684), + [617] = { + [aux_sym_list_repeat1] = STATE(974), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1750), [sym_comment] = ACTIONS(76), }, - [590] = { - [sym_dictionary_splat] = STATE(919), - [sym__expression] = STATE(920), - [sym__primary_expression] = STATE(105), + [618] = { + [sym_dictionary_splat] = STATE(977), + [sym__expression] = STATE(978), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -25900,7 +26639,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), [sym_dictionary_comprehension] = STATE(61), - [sym_pair] = STATE(919), + [sym_pair] = STATE(977), [sym_set] = STATE(61), [sym_set_comprehension] = STATE(61), [sym_parenthesized_expression] = STATE(61), @@ -25910,223 +26649,223 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1539), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(1688), - [sym_string] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(1754), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [591] = { - [aux_sym_dictionary_repeat1] = STATE(922), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1688), + [619] = { + [aux_sym_dictionary_repeat1] = STATE(980), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1754), [sym_comment] = ACTIONS(76), }, - [592] = { - [anon_sym_RBRACE] = ACTIONS(1692), + [620] = { + [anon_sym_RBRACE] = ACTIONS(1758), [sym_comment] = ACTIONS(76), }, - [593] = { - [anon_sym_RBRACE] = ACTIONS(1694), + [621] = { + [anon_sym_RBRACE] = ACTIONS(1760), [sym_comment] = ACTIONS(76), }, - [594] = { - [aux_sym_concatenated_string_repeat1] = STATE(594), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [622] = { + [aux_sym_concatenated_string_repeat1] = STATE(622), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [595] = { - [sym__newline] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_COMMA] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_in] = ACTIONS(1699), - [anon_sym_EQ] = ACTIONS(1701), - [anon_sym_not] = ACTIONS(1699), - [anon_sym_and] = ACTIONS(1699), - [anon_sym_or] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1701), - [anon_sym_SLASH_SLASH] = ACTIONS(1701), - [anon_sym_STAR_STAR] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_LT_LT] = ACTIONS(1701), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_GT] = ACTIONS(1699), - [anon_sym_is] = ACTIONS(1699), - [anon_sym_PLUS_EQ] = ACTIONS(1699), - [anon_sym_DASH_EQ] = ACTIONS(1699), - [anon_sym_STAR_EQ] = ACTIONS(1699), - [anon_sym_SLASH_EQ] = ACTIONS(1699), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1699), - [anon_sym_PERCENT_EQ] = ACTIONS(1699), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1699), - [anon_sym_GT_GT_EQ] = ACTIONS(1699), - [anon_sym_LT_LT_EQ] = ACTIONS(1699), - [anon_sym_AMP_EQ] = ACTIONS(1699), - [anon_sym_CARET_EQ] = ACTIONS(1699), - [anon_sym_PIPE_EQ] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1699), + [623] = { + [sym__newline] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_GT_GT] = ACTIONS(1767), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_EQ] = ACTIONS(1767), + [anon_sym_not] = ACTIONS(1765), + [anon_sym_and] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_PERCENT] = ACTIONS(1767), + [anon_sym_SLASH_SLASH] = ACTIONS(1767), + [anon_sym_STAR_STAR] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_LT_GT] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1765), + [anon_sym_STAR_EQ] = ACTIONS(1765), + [anon_sym_SLASH_EQ] = ACTIONS(1765), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1765), + [anon_sym_PERCENT_EQ] = ACTIONS(1765), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1765), + [anon_sym_GT_GT_EQ] = ACTIONS(1765), + [anon_sym_LT_LT_EQ] = ACTIONS(1765), + [anon_sym_AMP_EQ] = ACTIONS(1765), + [anon_sym_CARET_EQ] = ACTIONS(1765), + [anon_sym_PIPE_EQ] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1765), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1765), }, - [596] = { - [anon_sym_RPAREN] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [624] = { + [anon_sym_RPAREN] = ACTIONS(1769), + [anon_sym_COMMA] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [597] = { - [anon_sym_RPAREN] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1703), + [625] = { + [anon_sym_RPAREN] = ACTIONS(1769), + [anon_sym_COMMA] = ACTIONS(1769), [sym_comment] = ACTIONS(76), }, - [598] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [626] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [599] = { - [anon_sym_in] = ACTIONS(1707), + [627] = { + [anon_sym_in] = ACTIONS(1773), [sym_comment] = ACTIONS(76), }, - [600] = { - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_as] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_COLON] = ACTIONS(1550), - [anon_sym_else] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_EQ] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(1550), - [anon_sym_or] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), + [628] = { + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_COLON] = ACTIONS(1616), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(1616), + [anon_sym_or] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [601] = { - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(402), - [anon_sym_or] = ACTIONS(1550), + [629] = { + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(416), + [anon_sym_or] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [602] = { - [sym__newline] = ACTIONS(1709), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_GT_GT] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_in] = ACTIONS(1709), - [anon_sym_EQ] = ACTIONS(1711), - [anon_sym_not] = ACTIONS(1709), - [anon_sym_and] = ACTIONS(1709), - [anon_sym_or] = ACTIONS(1709), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_PERCENT] = ACTIONS(1711), - [anon_sym_SLASH_SLASH] = ACTIONS(1711), - [anon_sym_STAR_STAR] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_LT_LT] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1709), - [anon_sym_BANG_EQ] = ACTIONS(1709), - [anon_sym_GT_EQ] = ACTIONS(1709), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_LT_GT] = ACTIONS(1709), - [anon_sym_is] = ACTIONS(1709), - [anon_sym_PLUS_EQ] = ACTIONS(1709), - [anon_sym_DASH_EQ] = ACTIONS(1709), - [anon_sym_STAR_EQ] = ACTIONS(1709), - [anon_sym_SLASH_EQ] = ACTIONS(1709), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1709), - [anon_sym_PERCENT_EQ] = ACTIONS(1709), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1709), - [anon_sym_GT_GT_EQ] = ACTIONS(1709), - [anon_sym_LT_LT_EQ] = ACTIONS(1709), - [anon_sym_AMP_EQ] = ACTIONS(1709), - [anon_sym_CARET_EQ] = ACTIONS(1709), - [anon_sym_PIPE_EQ] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1709), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1709), + [630] = { + [sym__newline] = ACTIONS(1775), + [anon_sym_DOT] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_COMMA] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_GT_GT] = ACTIONS(1777), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_in] = ACTIONS(1775), + [anon_sym_EQ] = ACTIONS(1777), + [anon_sym_not] = ACTIONS(1775), + [anon_sym_and] = ACTIONS(1775), + [anon_sym_or] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_SLASH] = ACTIONS(1777), + [anon_sym_PERCENT] = ACTIONS(1777), + [anon_sym_SLASH_SLASH] = ACTIONS(1777), + [anon_sym_STAR_STAR] = ACTIONS(1777), + [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1777), + [anon_sym_CARET] = ACTIONS(1777), + [anon_sym_LT_LT] = ACTIONS(1777), + [anon_sym_LT] = ACTIONS(1777), + [anon_sym_LT_EQ] = ACTIONS(1775), + [anon_sym_EQ_EQ] = ACTIONS(1775), + [anon_sym_BANG_EQ] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1775), + [anon_sym_GT] = ACTIONS(1777), + [anon_sym_LT_GT] = ACTIONS(1775), + [anon_sym_is] = ACTIONS(1775), + [anon_sym_PLUS_EQ] = ACTIONS(1775), + [anon_sym_DASH_EQ] = ACTIONS(1775), + [anon_sym_STAR_EQ] = ACTIONS(1775), + [anon_sym_SLASH_EQ] = ACTIONS(1775), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1775), + [anon_sym_PERCENT_EQ] = ACTIONS(1775), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1775), + [anon_sym_GT_GT_EQ] = ACTIONS(1775), + [anon_sym_LT_LT_EQ] = ACTIONS(1775), + [anon_sym_AMP_EQ] = ACTIONS(1775), + [anon_sym_CARET_EQ] = ACTIONS(1775), + [anon_sym_PIPE_EQ] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(1775), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1775), }, - [603] = { - [sym__expression] = STATE(1044), - [sym__primary_expression] = STATE(1045), + [631] = { + [sym__expression] = STATE(1102), + [sym__primary_expression] = STATE(1103), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -26151,51 +26890,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_lambda] = ACTIONS(1717), + [anon_sym_not] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), + [anon_sym_lambda] = ACTIONS(1783), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(1787), [sym_comment] = ACTIONS(76), }, - [604] = { - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_for] = ACTIONS(1723), - [anon_sym_RBRACK] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), + [632] = { + [anon_sym_RPAREN] = ACTIONS(1789), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_for] = ACTIONS(1789), + [anon_sym_RBRACK] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), [sym_comment] = ACTIONS(76), }, - [605] = { - [sym_for_in_clause] = STATE(604), - [sym_if_clause] = STATE(604), - [aux_sym__comprehension_body_repeat1] = STATE(1046), - [anon_sym_RPAREN] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(400), + [633] = { + [sym_for_in_clause] = STATE(632), + [sym_if_clause] = STATE(632), + [aux_sym__comprehension_body_repeat1] = STATE(1104), + [anon_sym_RPAREN] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(414), [sym_comment] = ACTIONS(76), }, - [606] = { - [sym__expression] = STATE(596), - [sym__primary_expression] = STATE(221), + [634] = { + [sym__expression] = STATE(624), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_yield] = STATE(597), + [sym_yield] = STATE(625), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -26212,246 +26951,246 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1793), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_yield] = ACTIONS(98), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [607] = { - [aux_sym_tuple_repeat1] = STATE(607), - [anon_sym_RPAREN] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1729), + [635] = { + [aux_sym_tuple_repeat1] = STATE(635), + [anon_sym_RPAREN] = ACTIONS(1769), + [anon_sym_COMMA] = ACTIONS(1795), [sym_comment] = ACTIONS(76), }, - [608] = { - [anon_sym_DOT] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_RPAREN] = ACTIONS(1559), - [anon_sym_COMMA] = ACTIONS(1559), - [anon_sym_as] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_COLON] = ACTIONS(1559), - [anon_sym_else] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_in] = ACTIONS(1559), - [anon_sym_EQ] = ACTIONS(1561), - [anon_sym_not] = ACTIONS(1559), - [anon_sym_and] = ACTIONS(1559), - [anon_sym_or] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_SLASH] = ACTIONS(1561), - [anon_sym_PERCENT] = ACTIONS(1559), - [anon_sym_SLASH_SLASH] = ACTIONS(1559), - [anon_sym_STAR_STAR] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_LT_LT] = ACTIONS(1559), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_LT_EQ] = ACTIONS(1559), - [anon_sym_EQ_EQ] = ACTIONS(1559), - [anon_sym_BANG_EQ] = ACTIONS(1559), - [anon_sym_GT_EQ] = ACTIONS(1559), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_LT_GT] = ACTIONS(1559), - [anon_sym_is] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_RBRACK] = ACTIONS(1559), - [anon_sym_RBRACE] = ACTIONS(1559), + [636] = { + [anon_sym_DOT] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_COMMA] = ACTIONS(1625), + [anon_sym_as] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_GT_GT] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_COLON] = ACTIONS(1625), + [anon_sym_else] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_EQ] = ACTIONS(1627), + [anon_sym_not] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_SLASH] = ACTIONS(1627), + [anon_sym_PERCENT] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1625), + [anon_sym_LT_LT] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1627), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_GT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1627), + [anon_sym_LT_GT] = ACTIONS(1625), + [anon_sym_is] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_RBRACK] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), [sym_comment] = ACTIONS(76), }, - [609] = { - [anon_sym_DOT] = ACTIONS(1563), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_RPAREN] = ACTIONS(1563), - [anon_sym_COMMA] = ACTIONS(1563), - [anon_sym_as] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_GT_GT] = ACTIONS(1563), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_COLON] = ACTIONS(1563), - [anon_sym_else] = ACTIONS(1563), - [anon_sym_for] = ACTIONS(1563), - [anon_sym_in] = ACTIONS(1563), - [anon_sym_EQ] = ACTIONS(1565), - [anon_sym_not] = ACTIONS(1563), - [anon_sym_and] = ACTIONS(1563), - [anon_sym_or] = ACTIONS(1563), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1565), - [anon_sym_PERCENT] = ACTIONS(1563), - [anon_sym_SLASH_SLASH] = ACTIONS(1563), - [anon_sym_STAR_STAR] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1563), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_LT_EQ] = ACTIONS(1563), - [anon_sym_EQ_EQ] = ACTIONS(1563), - [anon_sym_BANG_EQ] = ACTIONS(1563), - [anon_sym_GT_EQ] = ACTIONS(1563), - [anon_sym_GT] = ACTIONS(1565), - [anon_sym_LT_GT] = ACTIONS(1563), - [anon_sym_is] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_RBRACK] = ACTIONS(1563), - [anon_sym_RBRACE] = ACTIONS(1563), + [637] = { + [anon_sym_DOT] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_COMMA] = ACTIONS(1629), + [anon_sym_as] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_GT_GT] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_COLON] = ACTIONS(1629), + [anon_sym_else] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_in] = ACTIONS(1629), + [anon_sym_EQ] = ACTIONS(1631), + [anon_sym_not] = ACTIONS(1629), + [anon_sym_and] = ACTIONS(1629), + [anon_sym_or] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_SLASH] = ACTIONS(1631), + [anon_sym_PERCENT] = ACTIONS(1629), + [anon_sym_SLASH_SLASH] = ACTIONS(1629), + [anon_sym_STAR_STAR] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_CARET] = ACTIONS(1629), + [anon_sym_LT_LT] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1629), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_GT_EQ] = ACTIONS(1629), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_GT] = ACTIONS(1629), + [anon_sym_is] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_RBRACK] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1629), [sym_comment] = ACTIONS(76), }, - [610] = { - [anon_sym_RPAREN] = ACTIONS(1732), + [638] = { + [anon_sym_RPAREN] = ACTIONS(1798), [sym_comment] = ACTIONS(76), }, - [611] = { - [aux_sym_argument_list_repeat1] = STATE(1051), - [anon_sym_RPAREN] = ACTIONS(1732), - [anon_sym_COMMA] = ACTIONS(1734), + [639] = { + [aux_sym_argument_list_repeat1] = STATE(1109), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1800), [sym_comment] = ACTIONS(76), }, - [612] = { - [sym__comprehension_body] = STATE(557), - [sym_for_in_clause] = STATE(242), - [aux_sym_argument_list_repeat1] = STATE(1051), - [anon_sym_RPAREN] = ACTIONS(1732), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(398), - [anon_sym_for] = ACTIONS(400), - [anon_sym_and] = ACTIONS(402), - [anon_sym_or] = ACTIONS(404), + [640] = { + [sym__comprehension_body] = STATE(585), + [sym_for_in_clause] = STATE(248), + [aux_sym_argument_list_repeat1] = STATE(1109), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(412), + [anon_sym_for] = ACTIONS(414), + [anon_sym_and] = ACTIONS(416), + [anon_sym_or] = ACTIONS(418), [sym_comment] = ACTIONS(76), }, - [613] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [641] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [614] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_SLASH_SLASH] = ACTIONS(420), - [anon_sym_STAR_STAR] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [642] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(424), + [anon_sym_PERCENT] = ACTIONS(434), + [anon_sym_SLASH_SLASH] = ACTIONS(434), + [anon_sym_STAR_STAR] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [615] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_SLASH_SLASH] = ACTIONS(420), - [anon_sym_STAR_STAR] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(424), - [anon_sym_AMP] = ACTIONS(426), - [anon_sym_CARET] = ACTIONS(428), - [anon_sym_LT_LT] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), + [643] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_GT_GT] = ACTIONS(426), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(424), + [anon_sym_PERCENT] = ACTIONS(434), + [anon_sym_SLASH_SLASH] = ACTIONS(434), + [anon_sym_STAR_STAR] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_AMP] = ACTIONS(440), + [anon_sym_CARET] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [616] = { - [sym__primary_expression] = STATE(1052), + [644] = { + [sym__primary_expression] = STATE(1110), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -26485,308 +27224,306 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [617] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_SLASH_SLASH] = ACTIONS(420), - [anon_sym_STAR_STAR] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [645] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(424), + [anon_sym_PERCENT] = ACTIONS(434), + [anon_sym_SLASH_SLASH] = ACTIONS(434), + [anon_sym_STAR_STAR] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [618] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_as] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [646] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(1643), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [619] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_SLASH_SLASH] = ACTIONS(420), - [anon_sym_STAR_STAR] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(426), - [anon_sym_CARET] = ACTIONS(428), - [anon_sym_LT_LT] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [647] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_GT_GT] = ACTIONS(426), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(424), + [anon_sym_PERCENT] = ACTIONS(434), + [anon_sym_SLASH_SLASH] = ACTIONS(434), + [anon_sym_STAR_STAR] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(440), + [anon_sym_CARET] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [620] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_SLASH_SLASH] = ACTIONS(420), - [anon_sym_STAR_STAR] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(428), - [anon_sym_LT_LT] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [648] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_GT_GT] = ACTIONS(426), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(424), + [anon_sym_PERCENT] = ACTIONS(434), + [anon_sym_SLASH_SLASH] = ACTIONS(434), + [anon_sym_STAR_STAR] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [621] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_SLASH_SLASH] = ACTIONS(420), - [anon_sym_STAR_STAR] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [649] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_GT_GT] = ACTIONS(426), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(424), + [anon_sym_PERCENT] = ACTIONS(434), + [anon_sym_SLASH_SLASH] = ACTIONS(434), + [anon_sym_STAR_STAR] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [622] = { - [aux_sym_subscript_repeat1] = STATE(1055), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_COLON] = ACTIONS(1595), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1599), - [anon_sym_RBRACK] = ACTIONS(1738), + [650] = { + [aux_sym_subscript_repeat1] = STATE(1113), + [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_COLON] = ACTIONS(1661), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1665), + [anon_sym_RBRACK] = ACTIONS(1804), [sym_comment] = ACTIONS(76), }, - [623] = { - [aux_sym_subscript_repeat1] = STATE(1055), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1738), + [651] = { + [aux_sym_subscript_repeat1] = STATE(1113), + [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_RBRACK] = ACTIONS(1804), [sym_comment] = ACTIONS(76), }, - [624] = { - [aux_sym_comparison_operator_repeat1] = STATE(624), - [anon_sym_RPAREN] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1740), - [anon_sym_not] = ACTIONS(1743), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_LT_EQ] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1740), - [anon_sym_BANG_EQ] = ACTIONS(1740), - [anon_sym_GT_EQ] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1746), - [anon_sym_LT_GT] = ACTIONS(1740), - [anon_sym_is] = ACTIONS(1749), + [652] = { + [aux_sym_comparison_operator_repeat1] = STATE(652), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_not] = ACTIONS(1809), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1812), + [anon_sym_LT_EQ] = ACTIONS(1806), + [anon_sym_EQ_EQ] = ACTIONS(1806), + [anon_sym_BANG_EQ] = ACTIONS(1806), + [anon_sym_GT_EQ] = ACTIONS(1806), + [anon_sym_GT] = ACTIONS(1812), + [anon_sym_LT_GT] = ACTIONS(1806), + [anon_sym_is] = ACTIONS(1815), [sym_comment] = ACTIONS(76), }, - [625] = { - [sym__newline] = ACTIONS(1044), - [anon_sym_from] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_in] = ACTIONS(1044), - [anon_sym_not] = ACTIONS(1044), - [anon_sym_and] = ACTIONS(1044), - [anon_sym_or] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1044), - [anon_sym_SLASH_SLASH] = ACTIONS(1044), - [anon_sym_STAR_STAR] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_GT] = ACTIONS(1044), - [anon_sym_is] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1044), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1044), + [653] = { + [sym__newline] = ACTIONS(1080), + [anon_sym_DOT] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_in] = ACTIONS(1080), + [anon_sym_not] = ACTIONS(1080), + [anon_sym_and] = ACTIONS(1080), + [anon_sym_or] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_PERCENT] = ACTIONS(1080), + [anon_sym_SLASH_SLASH] = ACTIONS(1080), + [anon_sym_STAR_STAR] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(1080), + [anon_sym_BANG_EQ] = ACTIONS(1080), + [anon_sym_GT_EQ] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_LT_GT] = ACTIONS(1080), + [anon_sym_is] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1080), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1080), }, - [626] = { - [sym__newline] = ACTIONS(1096), - [anon_sym_from] = ACTIONS(1096), - [anon_sym_DOT] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1096), - [anon_sym_COMMA] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1096), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_in] = ACTIONS(1096), - [anon_sym_not] = ACTIONS(1096), - [anon_sym_and] = ACTIONS(1096), - [anon_sym_or] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1096), - [anon_sym_SLASH_SLASH] = ACTIONS(1096), - [anon_sym_STAR_STAR] = ACTIONS(1096), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_AMP] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1096), - [anon_sym_LT_LT] = ACTIONS(1096), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1096), - [anon_sym_BANG_EQ] = ACTIONS(1096), - [anon_sym_GT_EQ] = ACTIONS(1096), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_GT] = ACTIONS(1096), - [anon_sym_is] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(1096), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1096), + [654] = { + [sym__newline] = ACTIONS(1132), + [anon_sym_DOT] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_GT_GT] = ACTIONS(1132), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_in] = ACTIONS(1132), + [anon_sym_not] = ACTIONS(1132), + [anon_sym_and] = ACTIONS(1132), + [anon_sym_or] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1134), + [anon_sym_PERCENT] = ACTIONS(1132), + [anon_sym_SLASH_SLASH] = ACTIONS(1132), + [anon_sym_STAR_STAR] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_LT_EQ] = ACTIONS(1132), + [anon_sym_EQ_EQ] = ACTIONS(1132), + [anon_sym_BANG_EQ] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1134), + [anon_sym_LT_GT] = ACTIONS(1132), + [anon_sym_is] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1132), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1132), }, - [627] = { - [sym__expression] = STATE(596), - [sym__primary_expression] = STATE(221), + [655] = { + [sym__expression] = STATE(624), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_yield] = STATE(597), + [sym_yield] = STATE(625), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -26803,49 +27540,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1818), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_yield] = ACTIONS(98), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [628] = { - [anon_sym_RPAREN] = ACTIONS(1754), + [656] = { + [anon_sym_RPAREN] = ACTIONS(1820), [sym_comment] = ACTIONS(76), }, - [629] = { - [aux_sym_tuple_repeat1] = STATE(607), - [anon_sym_RPAREN] = ACTIONS(1752), - [anon_sym_COMMA] = ACTIONS(1756), + [657] = { + [aux_sym_tuple_repeat1] = STATE(635), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_COMMA] = ACTIONS(1822), [sym_comment] = ACTIONS(76), }, - [630] = { - [sym__newline] = ACTIONS(1357), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(456), - [anon_sym_and] = ACTIONS(458), - [anon_sym_or] = ACTIONS(460), + [658] = { + [sym__newline] = ACTIONS(1423), + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(470), + [anon_sym_and] = ACTIONS(472), + [anon_sym_or] = ACTIONS(474), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1357), + [sym__semicolon] = ACTIONS(1423), }, - [631] = { - [sym__expression] = STATE(1059), + [659] = { + [sym__expression] = STATE(1117), [sym__primary_expression] = STATE(82), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -26889,45 +27626,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(136), [sym_comment] = ACTIONS(76), }, - [632] = { - [sym__newline] = ACTIONS(1375), - [anon_sym_from] = ACTIONS(1375), - [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_COMMA] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1375), - [anon_sym_in] = ACTIONS(1375), - [anon_sym_not] = ACTIONS(1375), - [anon_sym_and] = ACTIONS(1375), - [anon_sym_or] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1375), - [anon_sym_SLASH_SLASH] = ACTIONS(1375), - [anon_sym_STAR_STAR] = ACTIONS(1375), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_LT_EQ] = ACTIONS(1375), - [anon_sym_EQ_EQ] = ACTIONS(1375), - [anon_sym_BANG_EQ] = ACTIONS(1375), - [anon_sym_GT_EQ] = ACTIONS(1375), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_LT_GT] = ACTIONS(1375), - [anon_sym_is] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1375), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1375), + [660] = { + [sym__newline] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_not] = ACTIONS(1441), + [anon_sym_and] = ACTIONS(1441), + [anon_sym_or] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(1441), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_LT_GT] = ACTIONS(1441), + [anon_sym_is] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1441), }, - [633] = { - [sym_list_splat] = STATE(871), - [sym__expression] = STATE(872), - [sym__primary_expression] = STATE(435), + [661] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(930), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -26950,77 +27686,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(222), + [anon_sym_STAR] = ACTIONS(236), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(1824), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [634] = { - [aux_sym_list_repeat1] = STATE(874), - [anon_sym_COMMA] = ACTIONS(1760), - [anon_sym_RBRACK] = ACTIONS(1758), + [662] = { + [aux_sym_list_repeat1] = STATE(932), + [anon_sym_COMMA] = ACTIONS(1826), + [anon_sym_RBRACK] = ACTIONS(1824), [sym_comment] = ACTIONS(76), }, - [635] = { - [anon_sym_RBRACK] = ACTIONS(1762), + [663] = { + [anon_sym_RBRACK] = ACTIONS(1828), [sym_comment] = ACTIONS(76), }, - [636] = { - [sym__newline] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1425), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_COMMA] = ACTIONS(1425), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_in] = ACTIONS(1425), - [anon_sym_not] = ACTIONS(1425), - [anon_sym_and] = ACTIONS(1425), - [anon_sym_or] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_SLASH] = ACTIONS(1427), - [anon_sym_PERCENT] = ACTIONS(1425), - [anon_sym_SLASH_SLASH] = ACTIONS(1425), - [anon_sym_STAR_STAR] = ACTIONS(1425), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_CARET] = ACTIONS(1425), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1425), - [anon_sym_BANG_EQ] = ACTIONS(1425), - [anon_sym_GT_EQ] = ACTIONS(1425), - [anon_sym_GT] = ACTIONS(1427), - [anon_sym_LT_GT] = ACTIONS(1425), - [anon_sym_is] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1425), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1425), + [664] = { + [sym__newline] = ACTIONS(1491), + [anon_sym_DOT] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_COMMA] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_in] = ACTIONS(1491), + [anon_sym_not] = ACTIONS(1491), + [anon_sym_and] = ACTIONS(1491), + [anon_sym_or] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PERCENT] = ACTIONS(1491), + [anon_sym_SLASH_SLASH] = ACTIONS(1491), + [anon_sym_STAR_STAR] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_LT_LT] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_LT_EQ] = ACTIONS(1491), + [anon_sym_EQ_EQ] = ACTIONS(1491), + [anon_sym_BANG_EQ] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1491), + [anon_sym_GT] = ACTIONS(1493), + [anon_sym_LT_GT] = ACTIONS(1491), + [anon_sym_is] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1491), }, - [637] = { - [sym_list_splat] = STATE(871), - [sym__expression] = STATE(914), - [sym__primary_expression] = STATE(467), + [665] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(972), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -27043,73 +27778,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1529), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(1764), - [sym_string] = ACTIONS(790), + [anon_sym_RBRACE] = ACTIONS(1830), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [638] = { - [sym__newline] = ACTIONS(1467), - [anon_sym_from] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_not] = ACTIONS(1467), - [anon_sym_and] = ACTIONS(1467), - [anon_sym_or] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1467), - [anon_sym_SLASH_SLASH] = ACTIONS(1467), - [anon_sym_STAR_STAR] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(1469), - [anon_sym_LT_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(1467), - [anon_sym_GT] = ACTIONS(1469), - [anon_sym_LT_GT] = ACTIONS(1467), - [anon_sym_is] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1467), + [666] = { + [sym__newline] = ACTIONS(1533), + [anon_sym_DOT] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_COMMA] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_in] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1533), + [anon_sym_or] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(1535), + [anon_sym_PERCENT] = ACTIONS(1533), + [anon_sym_SLASH_SLASH] = ACTIONS(1533), + [anon_sym_STAR_STAR] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_LT_EQ] = ACTIONS(1533), + [anon_sym_EQ_EQ] = ACTIONS(1533), + [anon_sym_BANG_EQ] = ACTIONS(1533), + [anon_sym_GT_EQ] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1535), + [anon_sym_LT_GT] = ACTIONS(1533), + [anon_sym_is] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1533), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1533), }, - [639] = { - [aux_sym_list_repeat1] = STATE(916), - [anon_sym_COMMA] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1764), + [667] = { + [aux_sym_list_repeat1] = STATE(974), + [anon_sym_COMMA] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1830), [sym_comment] = ACTIONS(76), }, - [640] = { - [sym_dictionary_splat] = STATE(919), - [sym__expression] = STATE(920), - [sym__primary_expression] = STATE(105), + [668] = { + [sym_dictionary_splat] = STATE(977), + [sym__expression] = STATE(978), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -27123,7 +27857,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), [sym_dictionary_comprehension] = STATE(61), - [sym_pair] = STATE(919), + [sym_pair] = STATE(977), [sym_set] = STATE(61), [sym_set_comprehension] = STATE(61), [sym_parenthesized_expression] = STATE(61), @@ -27133,89 +27867,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1539), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(1768), - [sym_string] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(1834), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [641] = { - [aux_sym_dictionary_repeat1] = STATE(922), - [anon_sym_COMMA] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1768), + [669] = { + [aux_sym_dictionary_repeat1] = STATE(980), + [anon_sym_COMMA] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1834), [sym_comment] = ACTIONS(76), }, - [642] = { - [anon_sym_RBRACE] = ACTIONS(1772), + [670] = { + [anon_sym_RBRACE] = ACTIONS(1838), [sym_comment] = ACTIONS(76), }, - [643] = { - [anon_sym_RBRACE] = ACTIONS(1774), + [671] = { + [anon_sym_RBRACE] = ACTIONS(1840), [sym_comment] = ACTIONS(76), }, - [644] = { - [aux_sym_concatenated_string_repeat1] = STATE(644), - [sym__newline] = ACTIONS(1499), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1776), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1499), + [672] = { + [aux_sym_concatenated_string_repeat1] = STATE(672), + [sym__newline] = ACTIONS(1565), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1842), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1565), }, - [645] = { - [sym__newline] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(456), - [anon_sym_and] = ACTIONS(458), - [anon_sym_or] = ACTIONS(460), + [673] = { + [sym__newline] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_if] = ACTIONS(470), + [anon_sym_and] = ACTIONS(472), + [anon_sym_or] = ACTIONS(474), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1514), + [sym__semicolon] = ACTIONS(1580), }, - [646] = { - [sym__expression] = STATE(645), + [674] = { + [sym__expression] = STATE(673), [sym__primary_expression] = STATE(82), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -27238,7 +27972,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(76), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(1779), + [sym__newline] = ACTIONS(1845), [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), @@ -27259,233 +27993,231 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [anon_sym_await] = ACTIONS(136), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1779), + [sym__semicolon] = ACTIONS(1845), }, - [647] = { - [aux_sym_print_statement_repeat1] = STATE(647), - [sym__newline] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(1781), + [675] = { + [aux_sym_print_statement_repeat1] = STATE(675), + [sym__newline] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1847), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1514), + [sym__semicolon] = ACTIONS(1580), }, - [648] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1784), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [676] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1850), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [649] = { - [sym__newline] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(458), - [anon_sym_or] = ACTIONS(1550), + [677] = { + [sym__newline] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(472), + [anon_sym_or] = ACTIONS(1616), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1550), + [sym__semicolon] = ACTIONS(1616), }, - [650] = { - [sym__newline] = ACTIONS(1559), - [anon_sym_from] = ACTIONS(1559), - [anon_sym_DOT] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_COMMA] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_in] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1559), - [anon_sym_and] = ACTIONS(1559), - [anon_sym_or] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_SLASH] = ACTIONS(1561), - [anon_sym_PERCENT] = ACTIONS(1559), - [anon_sym_SLASH_SLASH] = ACTIONS(1559), - [anon_sym_STAR_STAR] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_LT_LT] = ACTIONS(1559), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_LT_EQ] = ACTIONS(1559), - [anon_sym_EQ_EQ] = ACTIONS(1559), - [anon_sym_BANG_EQ] = ACTIONS(1559), - [anon_sym_GT_EQ] = ACTIONS(1559), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_LT_GT] = ACTIONS(1559), - [anon_sym_is] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1559), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1559), + [678] = { + [sym__newline] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_COMMA] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_GT_GT] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_SLASH] = ACTIONS(1627), + [anon_sym_PERCENT] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1625), + [anon_sym_LT_LT] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1627), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_GT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1627), + [anon_sym_LT_GT] = ACTIONS(1625), + [anon_sym_is] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1625), }, - [651] = { - [sym__newline] = ACTIONS(1563), - [anon_sym_from] = ACTIONS(1563), - [anon_sym_DOT] = ACTIONS(1563), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_COMMA] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_GT_GT] = ACTIONS(1563), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_in] = ACTIONS(1563), - [anon_sym_not] = ACTIONS(1563), - [anon_sym_and] = ACTIONS(1563), - [anon_sym_or] = ACTIONS(1563), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1565), - [anon_sym_PERCENT] = ACTIONS(1563), - [anon_sym_SLASH_SLASH] = ACTIONS(1563), - [anon_sym_STAR_STAR] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1563), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_LT_EQ] = ACTIONS(1563), - [anon_sym_EQ_EQ] = ACTIONS(1563), - [anon_sym_BANG_EQ] = ACTIONS(1563), - [anon_sym_GT_EQ] = ACTIONS(1563), - [anon_sym_GT] = ACTIONS(1565), - [anon_sym_LT_GT] = ACTIONS(1563), - [anon_sym_is] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1563), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1563), + [679] = { + [sym__newline] = ACTIONS(1629), + [anon_sym_DOT] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_COMMA] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_GT_GT] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_in] = ACTIONS(1629), + [anon_sym_not] = ACTIONS(1629), + [anon_sym_and] = ACTIONS(1629), + [anon_sym_or] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_SLASH] = ACTIONS(1631), + [anon_sym_PERCENT] = ACTIONS(1629), + [anon_sym_SLASH_SLASH] = ACTIONS(1629), + [anon_sym_STAR_STAR] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_CARET] = ACTIONS(1629), + [anon_sym_LT_LT] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1629), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_GT_EQ] = ACTIONS(1629), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_GT] = ACTIONS(1629), + [anon_sym_is] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1629), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1629), }, - [652] = { - [anon_sym_RPAREN] = ACTIONS(1786), + [680] = { + [anon_sym_RPAREN] = ACTIONS(1852), [sym_comment] = ACTIONS(76), }, - [653] = { - [aux_sym_argument_list_repeat1] = STATE(1072), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1788), + [681] = { + [aux_sym_argument_list_repeat1] = STATE(1130), + [anon_sym_RPAREN] = ACTIONS(1852), + [anon_sym_COMMA] = ACTIONS(1854), [sym_comment] = ACTIONS(76), }, - [654] = { - [sym__comprehension_body] = STATE(628), - [sym_for_in_clause] = STATE(242), - [aux_sym_argument_list_repeat1] = STATE(1072), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(398), - [anon_sym_for] = ACTIONS(400), - [anon_sym_and] = ACTIONS(402), - [anon_sym_or] = ACTIONS(404), + [682] = { + [sym__comprehension_body] = STATE(656), + [sym_for_in_clause] = STATE(248), + [aux_sym_argument_list_repeat1] = STATE(1130), + [anon_sym_RPAREN] = ACTIONS(1852), + [anon_sym_COMMA] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(412), + [anon_sym_for] = ACTIONS(414), + [anon_sym_and] = ACTIONS(416), + [anon_sym_or] = ACTIONS(418), [sym_comment] = ACTIONS(76), }, - [655] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(478), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [683] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [656] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_SLASH_SLASH] = ACTIONS(476), - [anon_sym_STAR_STAR] = ACTIONS(478), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [684] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [657] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1581), - [anon_sym_DOT] = ACTIONS(462), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(468), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_SLASH_SLASH] = ACTIONS(476), - [anon_sym_STAR_STAR] = ACTIONS(478), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_AMP] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_LT_LT] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(490), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1581), + [685] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(1647), + [anon_sym_DOT] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), + [anon_sym_CARET] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(504), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1647), }, - [658] = { - [sym__primary_expression] = STATE(1073), + [686] = { + [sym__primary_expression] = STATE(1131), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -27519,225 +28251,224 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [659] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_SLASH_SLASH] = ACTIONS(476), - [anon_sym_STAR_STAR] = ACTIONS(478), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [687] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [660] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_from] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [688] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(1643), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [661] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(468), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_SLASH_SLASH] = ACTIONS(476), - [anon_sym_STAR_STAR] = ACTIONS(478), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_LT_LT] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [689] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(496), + [anon_sym_CARET] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [662] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(468), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_SLASH_SLASH] = ACTIONS(476), - [anon_sym_STAR_STAR] = ACTIONS(478), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_LT_LT] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [690] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [663] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(468), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_SLASH_SLASH] = ACTIONS(476), - [anon_sym_STAR_STAR] = ACTIONS(478), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [691] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [664] = { - [aux_sym_subscript_repeat1] = STATE(1076), - [anon_sym_COMMA] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_COLON] = ACTIONS(1595), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1599), - [anon_sym_RBRACK] = ACTIONS(1792), + [692] = { + [aux_sym_subscript_repeat1] = STATE(1134), + [anon_sym_COMMA] = ACTIONS(1856), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_COLON] = ACTIONS(1661), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1665), + [anon_sym_RBRACK] = ACTIONS(1858), [sym_comment] = ACTIONS(76), }, - [665] = { - [aux_sym_subscript_repeat1] = STATE(1076), - [anon_sym_COMMA] = ACTIONS(1790), - [anon_sym_RBRACK] = ACTIONS(1792), + [693] = { + [aux_sym_subscript_repeat1] = STATE(1134), + [anon_sym_COMMA] = ACTIONS(1856), + [anon_sym_RBRACK] = ACTIONS(1858), [sym_comment] = ACTIONS(76), }, - [666] = { - [aux_sym_comparison_operator_repeat1] = STATE(666), - [sym__newline] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_not] = ACTIONS(1797), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_LT_EQ] = ACTIONS(1794), - [anon_sym_EQ_EQ] = ACTIONS(1794), - [anon_sym_BANG_EQ] = ACTIONS(1794), - [anon_sym_GT_EQ] = ACTIONS(1794), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_LT_GT] = ACTIONS(1794), - [anon_sym_is] = ACTIONS(1803), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1581), + [694] = { + [aux_sym_comparison_operator_repeat1] = STATE(694), + [sym__newline] = ACTIONS(1647), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_not] = ACTIONS(1863), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_LT_EQ] = ACTIONS(1860), + [anon_sym_EQ_EQ] = ACTIONS(1860), + [anon_sym_BANG_EQ] = ACTIONS(1860), + [anon_sym_GT_EQ] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_LT_GT] = ACTIONS(1860), + [anon_sym_is] = ACTIONS(1869), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1647), }, - [667] = { - [sym__expression] = STATE(645), + [695] = { + [sym__expression] = STATE(673), [sym__primary_expression] = STATE(82), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -27760,7 +28491,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(76), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(1554), + [sym__newline] = ACTIONS(1620), [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), @@ -27781,19 +28512,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [anon_sym_await] = ACTIONS(136), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1554), + [sym__semicolon] = ACTIONS(1620), }, - [668] = { - [sym__newline] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_and] = ACTIONS(1166), - [anon_sym_or] = ACTIONS(1168), + [696] = { + [sym__newline] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_and] = ACTIONS(1202), + [anon_sym_or] = ACTIONS(1204), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(690), + [sym__semicolon] = ACTIONS(726), }, - [669] = { - [sym__expression] = STATE(1077), - [sym__primary_expression] = STATE(310), + [697] = { + [sym__expression] = STATE(1135), + [sym__primary_expression] = STATE(316), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), [sym_binary_operator] = STATE(76), @@ -27818,66 +28549,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(502), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_lambda] = ACTIONS(506), + [anon_sym_not] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_lambda] = ACTIONS(520), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), [sym_true] = ACTIONS(132), [sym_false] = ACTIONS(132), [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(510), + [anon_sym_await] = ACTIONS(524), [sym_comment] = ACTIONS(76), }, - [670] = { - [anon_sym_COLON] = ACTIONS(1806), + [698] = { + [anon_sym_COLON] = ACTIONS(1872), [sym_comment] = ACTIONS(76), }, - [671] = { - [aux_sym_concatenated_string_repeat1] = STATE(1079), - [sym__newline] = ACTIONS(844), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(450), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(844), + [699] = { + [aux_sym_concatenated_string_repeat1] = STATE(1137), + [sym__newline] = ACTIONS(880), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(464), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(880), }, - [672] = { - [sym__expression] = STATE(1080), - [sym__primary_expression] = STATE(509), + [700] = { + [sym__expression] = STATE(1138), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -27902,27 +28633,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [673] = { - [sym__expression] = STATE(510), - [sym__primary_expression] = STATE(310), + [701] = { + [sym__expression] = STATE(538), + [sym__primary_expression] = STATE(316), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), [sym_binary_operator] = STATE(76), @@ -27947,27 +28678,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(502), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_lambda] = ACTIONS(506), + [anon_sym_not] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_lambda] = ACTIONS(520), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), [sym_true] = ACTIONS(132), [sym_false] = ACTIONS(132), [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(510), + [anon_sym_await] = ACTIONS(524), [sym_comment] = ACTIONS(76), }, - [674] = { - [sym__expression] = STATE(1081), - [sym__primary_expression] = STATE(310), + [702] = { + [sym__expression] = STATE(1139), + [sym__primary_expression] = STATE(316), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), [sym_binary_operator] = STATE(76), @@ -27992,26 +28723,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(502), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_lambda] = ACTIONS(506), + [anon_sym_not] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_lambda] = ACTIONS(520), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), [sym_true] = ACTIONS(132), [sym_false] = ACTIONS(132), [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(510), + [anon_sym_await] = ACTIONS(524), [sym_comment] = ACTIONS(76), }, - [675] = { - [sym__primary_expression] = STATE(1082), + [703] = { + [sym__primary_expression] = STATE(1140), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -28030,13 +28761,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), @@ -28045,8 +28776,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [676] = { - [sym__primary_expression] = STATE(1083), + [704] = { + [sym__primary_expression] = STATE(1141), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -28065,13 +28796,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), @@ -28080,8 +28811,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [677] = { - [sym__primary_expression] = STATE(1084), + [705] = { + [sym__primary_expression] = STATE(1142), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -28100,13 +28831,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), @@ -28115,12 +28846,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [678] = { - [anon_sym_in] = ACTIONS(1808), + [706] = { + [anon_sym_in] = ACTIONS(1874), [sym_comment] = ACTIONS(76), }, - [679] = { - [sym__primary_expression] = STATE(1086), + [707] = { + [sym__primary_expression] = STATE(1144), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -28139,13 +28870,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), @@ -28154,8 +28885,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [680] = { - [sym__primary_expression] = STATE(660), + [708] = { + [sym__primary_expression] = STATE(688), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -28174,13 +28905,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), @@ -28189,8 +28920,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [681] = { - [sym__primary_expression] = STATE(1087), + [709] = { + [sym__primary_expression] = STATE(1145), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -28209,13 +28940,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), @@ -28224,8 +28955,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [682] = { - [sym__primary_expression] = STATE(1088), + [710] = { + [sym__primary_expression] = STATE(1146), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -28244,13 +28975,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), @@ -28259,8 +28990,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [683] = { - [sym__primary_expression] = STATE(1089), + [711] = { + [sym__primary_expression] = STATE(1147), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -28279,13 +29010,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), @@ -28294,8 +29025,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [684] = { - [sym__primary_expression] = STATE(1084), + [712] = { + [sym__primary_expression] = STATE(1142), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -28314,14 +29045,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), @@ -28330,579 +29061,1142 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [685] = { - [aux_sym_comparison_operator_repeat1] = STATE(1090), - [sym__newline] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_in] = ACTIONS(1174), - [anon_sym_not] = ACTIONS(1176), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1174), - [anon_sym_EQ_EQ] = ACTIONS(1174), - [anon_sym_BANG_EQ] = ACTIONS(1174), - [anon_sym_GT_EQ] = ACTIONS(1174), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_LT_GT] = ACTIONS(1174), - [anon_sym_is] = ACTIONS(1192), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(900), + [713] = { + [aux_sym_comparison_operator_repeat1] = STATE(1148), + [sym__newline] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_in] = ACTIONS(1210), + [anon_sym_not] = ACTIONS(1212), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_LT_EQ] = ACTIONS(1210), + [anon_sym_EQ_EQ] = ACTIONS(1210), + [anon_sym_BANG_EQ] = ACTIONS(1210), + [anon_sym_GT_EQ] = ACTIONS(1210), + [anon_sym_GT] = ACTIONS(1226), + [anon_sym_LT_GT] = ACTIONS(1210), + [anon_sym_is] = ACTIONS(1228), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(936), }, - [686] = { - [sym__newline] = ACTIONS(1357), - [anon_sym_from] = ACTIONS(1357), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(520), - [anon_sym_and] = ACTIONS(522), - [anon_sym_or] = ACTIONS(524), + [714] = { + [sym__newline] = ACTIONS(1080), + [anon_sym_from] = ACTIONS(1080), + [anon_sym_DOT] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_in] = ACTIONS(1080), + [anon_sym_not] = ACTIONS(1080), + [anon_sym_and] = ACTIONS(1080), + [anon_sym_or] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_PERCENT] = ACTIONS(1080), + [anon_sym_SLASH_SLASH] = ACTIONS(1080), + [anon_sym_STAR_STAR] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_LT_EQ] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(1080), + [anon_sym_BANG_EQ] = ACTIONS(1080), + [anon_sym_GT_EQ] = ACTIONS(1080), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_LT_GT] = ACTIONS(1080), + [anon_sym_is] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1080), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1080), + }, + [715] = { + [sym__newline] = ACTIONS(1132), + [anon_sym_from] = ACTIONS(1132), + [anon_sym_DOT] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_GT_GT] = ACTIONS(1132), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_in] = ACTIONS(1132), + [anon_sym_not] = ACTIONS(1132), + [anon_sym_and] = ACTIONS(1132), + [anon_sym_or] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1134), + [anon_sym_PERCENT] = ACTIONS(1132), + [anon_sym_SLASH_SLASH] = ACTIONS(1132), + [anon_sym_STAR_STAR] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_CARET] = ACTIONS(1132), + [anon_sym_LT_LT] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_LT_EQ] = ACTIONS(1132), + [anon_sym_EQ_EQ] = ACTIONS(1132), + [anon_sym_BANG_EQ] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1134), + [anon_sym_LT_GT] = ACTIONS(1132), + [anon_sym_is] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1132), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1132), + }, + [716] = { + [sym__expression] = STATE(624), + [sym__primary_expression] = STATE(227), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_yield] = STATE(625), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_RPAREN] = ACTIONS(1878), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(98), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(394), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1357), }, - [687] = { - [sym__expression] = STATE(1091), - [sym__primary_expression] = STATE(95), - [sym_not_operator] = STATE(40), - [sym_boolean_operator] = STATE(40), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_comparison_operator] = STATE(40), - [sym_lambda] = STATE(40), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_conditional_expression] = STATE(40), - [sym_concatenated_string] = STATE(76), - [sym_await] = STATE(40), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_lambda] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(158), + [717] = { + [anon_sym_RPAREN] = ACTIONS(1880), [sym_comment] = ACTIONS(76), }, - [688] = { - [aux_sym_concatenated_string_repeat1] = STATE(688), - [sym__newline] = ACTIONS(1499), - [anon_sym_from] = ACTIONS(1499), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1776), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1499), + [718] = { + [aux_sym_tuple_repeat1] = STATE(635), + [anon_sym_RPAREN] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1882), + [sym_comment] = ACTIONS(76), }, - [689] = { - [sym__newline] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_and] = ACTIONS(1166), - [anon_sym_or] = ACTIONS(1168), + [719] = { + [sym__newline] = ACTIONS(1423), + [anon_sym_from] = ACTIONS(1423), + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(548), + [anon_sym_and] = ACTIONS(550), + [anon_sym_or] = ACTIONS(552), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1812), + [sym__semicolon] = ACTIONS(1423), }, - [690] = { - [sym__newline] = ACTIONS(1514), - [anon_sym_from] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(520), - [anon_sym_and] = ACTIONS(522), - [anon_sym_or] = ACTIONS(524), + [720] = { + [sym__expression] = STATE(1152), + [sym__primary_expression] = STATE(100), + [sym_not_operator] = STATE(101), + [sym_boolean_operator] = STATE(101), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_comparison_operator] = STATE(101), + [sym_lambda] = STATE(101), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_conditional_expression] = STATE(101), + [sym_concatenated_string] = STATE(94), + [sym_await] = STATE(101), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_not] = ACTIONS(154), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_lambda] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [anon_sym_await] = ACTIONS(172), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1514), }, - [691] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1814), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [721] = { + [sym__newline] = ACTIONS(1441), + [anon_sym_from] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_not] = ACTIONS(1441), + [anon_sym_and] = ACTIONS(1441), + [anon_sym_or] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(1441), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_LT_GT] = ACTIONS(1441), + [anon_sym_is] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1441), }, - [692] = { - [sym__newline] = ACTIONS(1550), - [anon_sym_from] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(522), - [anon_sym_or] = ACTIONS(1550), + [722] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(930), + [sym__primary_expression] = STATE(463), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_RBRACK] = ACTIONS(1884), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(772), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1550), }, - [693] = { - [sym__expression] = STATE(690), - [sym__primary_expression] = STATE(95), - [sym_not_operator] = STATE(40), - [sym_boolean_operator] = STATE(40), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_comparison_operator] = STATE(40), - [sym_lambda] = STATE(40), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_conditional_expression] = STATE(40), - [sym_concatenated_string] = STATE(76), - [sym_await] = STATE(40), - [sym__newline] = ACTIONS(1554), - [anon_sym_from] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_lambda] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(158), + [723] = { + [aux_sym_list_repeat1] = STATE(932), + [anon_sym_COMMA] = ACTIONS(1886), + [anon_sym_RBRACK] = ACTIONS(1884), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1554), }, - [694] = { - [aux_sym_print_statement_repeat1] = STATE(694), - [sym__newline] = ACTIONS(1514), - [anon_sym_from] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(1818), + [724] = { + [anon_sym_RBRACK] = ACTIONS(1888), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1514), }, - [695] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_from] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(538), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [725] = { + [sym__newline] = ACTIONS(1491), + [anon_sym_from] = ACTIONS(1491), + [anon_sym_DOT] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_COMMA] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_in] = ACTIONS(1491), + [anon_sym_not] = ACTIONS(1491), + [anon_sym_and] = ACTIONS(1491), + [anon_sym_or] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PERCENT] = ACTIONS(1491), + [anon_sym_SLASH_SLASH] = ACTIONS(1491), + [anon_sym_STAR_STAR] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_LT_LT] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_LT_EQ] = ACTIONS(1491), + [anon_sym_EQ_EQ] = ACTIONS(1491), + [anon_sym_BANG_EQ] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1491), + [anon_sym_GT] = ACTIONS(1493), + [anon_sym_LT_GT] = ACTIONS(1491), + [anon_sym_is] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1491), }, - [696] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_from] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(526), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_SLASH_SLASH] = ACTIONS(536), - [anon_sym_STAR_STAR] = ACTIONS(538), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [726] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(972), + [sym__primary_expression] = STATE(495), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [anon_sym_RBRACE] = ACTIONS(1890), + [sym_string] = ACTIONS(826), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(828), + [sym_comment] = ACTIONS(76), }, - [697] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1581), - [anon_sym_from] = ACTIONS(1581), - [anon_sym_DOT] = ACTIONS(462), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(526), - [anon_sym_GT_GT] = ACTIONS(528), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_SLASH_SLASH] = ACTIONS(536), - [anon_sym_STAR_STAR] = ACTIONS(538), - [anon_sym_PIPE] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(490), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1581), + [727] = { + [sym__newline] = ACTIONS(1533), + [anon_sym_from] = ACTIONS(1533), + [anon_sym_DOT] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_COMMA] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_in] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_and] = ACTIONS(1533), + [anon_sym_or] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(1535), + [anon_sym_PERCENT] = ACTIONS(1533), + [anon_sym_SLASH_SLASH] = ACTIONS(1533), + [anon_sym_STAR_STAR] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_LT_EQ] = ACTIONS(1533), + [anon_sym_EQ_EQ] = ACTIONS(1533), + [anon_sym_BANG_EQ] = ACTIONS(1533), + [anon_sym_GT_EQ] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1535), + [anon_sym_LT_GT] = ACTIONS(1533), + [anon_sym_is] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1533), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1533), }, - [698] = { - [sym__primary_expression] = STATE(1094), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_concatenated_string] = STATE(76), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), + [728] = { + [aux_sym_list_repeat1] = STATE(974), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1890), [sym_comment] = ACTIONS(76), }, - [699] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_from] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(526), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_SLASH_SLASH] = ACTIONS(536), - [anon_sym_STAR_STAR] = ACTIONS(538), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [729] = { + [sym_dictionary_splat] = STATE(977), + [sym__expression] = STATE(978), + [sym__primary_expression] = STATE(111), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_pair] = STATE(977), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [anon_sym_RBRACE] = ACTIONS(1894), + [sym_string] = ACTIONS(184), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(186), + [sym_comment] = ACTIONS(76), }, - [700] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_from] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(526), - [anon_sym_GT_GT] = ACTIONS(528), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_SLASH_SLASH] = ACTIONS(536), - [anon_sym_STAR_STAR] = ACTIONS(538), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [730] = { + [aux_sym_dictionary_repeat1] = STATE(980), + [anon_sym_COMMA] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1894), + [sym_comment] = ACTIONS(76), }, - [701] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_from] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(526), - [anon_sym_GT_GT] = ACTIONS(528), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_SLASH_SLASH] = ACTIONS(536), - [anon_sym_STAR_STAR] = ACTIONS(538), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [731] = { + [anon_sym_RBRACE] = ACTIONS(1898), + [sym_comment] = ACTIONS(76), }, - [702] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_from] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(526), - [anon_sym_GT_GT] = ACTIONS(528), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_SLASH_SLASH] = ACTIONS(536), - [anon_sym_STAR_STAR] = ACTIONS(538), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [732] = { + [anon_sym_RBRACE] = ACTIONS(1900), + [sym_comment] = ACTIONS(76), }, - [703] = { - [aux_sym_comparison_operator_repeat1] = STATE(703), - [sym__newline] = ACTIONS(1581), - [anon_sym_from] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1821), - [anon_sym_not] = ACTIONS(1824), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_LT_EQ] = ACTIONS(1821), - [anon_sym_EQ_EQ] = ACTIONS(1821), - [anon_sym_BANG_EQ] = ACTIONS(1821), - [anon_sym_GT_EQ] = ACTIONS(1821), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_LT_GT] = ACTIONS(1821), - [anon_sym_is] = ACTIONS(1830), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1581), + [733] = { + [aux_sym_concatenated_string_repeat1] = STATE(733), + [sym__newline] = ACTIONS(1565), + [anon_sym_from] = ACTIONS(1565), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1902), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1565), }, - [704] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_from] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_print] = ACTIONS(1835), - [anon_sym_assert] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_del] = ACTIONS(1835), - [anon_sym_raise] = ACTIONS(1835), - [sym_pass_statement] = ACTIONS(1835), - [sym_break_statement] = ACTIONS(1835), - [sym_continue_statement] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_global] = ACTIONS(1835), - [anon_sym_nonlocal] = ACTIONS(1835), - [anon_sym_exec] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_lambda] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), - [sym_ellipsis] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1833), - [sym_string] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_none] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1835), + [734] = { + [sym__newline] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_and] = ACTIONS(1202), + [anon_sym_or] = ACTIONS(1204), [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1905), }, - [705] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [735] = { + [sym__newline] = ACTIONS(1580), + [anon_sym_from] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_if] = ACTIONS(548), + [anon_sym_and] = ACTIONS(550), + [anon_sym_or] = ACTIONS(552), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1580), + }, + [736] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1907), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), + [sym_comment] = ACTIONS(76), + }, + [737] = { + [sym__newline] = ACTIONS(1616), + [anon_sym_from] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(1616), + [anon_sym_or] = ACTIONS(1616), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1616), + }, + [738] = { + [sym__newline] = ACTIONS(1616), + [anon_sym_from] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(550), + [anon_sym_or] = ACTIONS(1616), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1616), + }, + [739] = { + [sym__expression] = STATE(735), + [sym__primary_expression] = STATE(100), + [sym_not_operator] = STATE(101), + [sym_boolean_operator] = STATE(101), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_comparison_operator] = STATE(101), + [sym_lambda] = STATE(101), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_conditional_expression] = STATE(101), + [sym_concatenated_string] = STATE(94), + [sym_await] = STATE(101), + [sym__newline] = ACTIONS(1620), + [anon_sym_from] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_not] = ACTIONS(154), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_lambda] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [anon_sym_await] = ACTIONS(172), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1620), + }, + [740] = { + [aux_sym_print_statement_repeat1] = STATE(740), + [sym__newline] = ACTIONS(1580), + [anon_sym_from] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1911), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1580), + }, + [741] = { + [sym__newline] = ACTIONS(1625), + [anon_sym_from] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_COMMA] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_GT_GT] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_SLASH] = ACTIONS(1627), + [anon_sym_PERCENT] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1625), + [anon_sym_LT_LT] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1627), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_GT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1627), + [anon_sym_LT_GT] = ACTIONS(1625), + [anon_sym_is] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1625), + }, + [742] = { + [sym__newline] = ACTIONS(1629), + [anon_sym_from] = ACTIONS(1629), + [anon_sym_DOT] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_COMMA] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_GT_GT] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_in] = ACTIONS(1629), + [anon_sym_not] = ACTIONS(1629), + [anon_sym_and] = ACTIONS(1629), + [anon_sym_or] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_SLASH] = ACTIONS(1631), + [anon_sym_PERCENT] = ACTIONS(1629), + [anon_sym_SLASH_SLASH] = ACTIONS(1629), + [anon_sym_STAR_STAR] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_CARET] = ACTIONS(1629), + [anon_sym_LT_LT] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1629), + [anon_sym_EQ_EQ] = ACTIONS(1629), + [anon_sym_BANG_EQ] = ACTIONS(1629), + [anon_sym_GT_EQ] = ACTIONS(1629), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT_GT] = ACTIONS(1629), + [anon_sym_is] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1629), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1629), + }, + [743] = { + [anon_sym_RPAREN] = ACTIONS(1914), + [sym_comment] = ACTIONS(76), + }, + [744] = { + [aux_sym_argument_list_repeat1] = STATE(1166), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_COMMA] = ACTIONS(1916), + [sym_comment] = ACTIONS(76), + }, + [745] = { + [sym__comprehension_body] = STATE(717), + [sym_for_in_clause] = STATE(248), + [aux_sym_argument_list_repeat1] = STATE(1166), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_COMMA] = ACTIONS(1916), + [anon_sym_if] = ACTIONS(412), + [anon_sym_for] = ACTIONS(414), + [anon_sym_and] = ACTIONS(416), + [anon_sym_or] = ACTIONS(418), + [sym_comment] = ACTIONS(76), + }, + [746] = { + [sym_argument_list] = STATE(357), + [sym_generator_expression] = STATE(357), + [sym__newline] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), + }, + [747] = { + [sym_argument_list] = STATE(357), + [sym_generator_expression] = STATE(357), + [sym__newline] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_SLASH_SLASH] = ACTIONS(568), + [anon_sym_STAR_STAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), + }, + [748] = { + [sym_argument_list] = STATE(357), + [sym_generator_expression] = STATE(357), + [sym__newline] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1647), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_SLASH_SLASH] = ACTIONS(568), + [anon_sym_STAR_STAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(574), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(582), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1647), + }, + [749] = { + [sym__primary_expression] = STATE(1167), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_concatenated_string] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [sym_comment] = ACTIONS(76), + }, + [750] = { + [sym_argument_list] = STATE(357), + [sym_generator_expression] = STATE(357), + [sym__newline] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_SLASH_SLASH] = ACTIONS(568), + [anon_sym_STAR_STAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), + }, + [751] = { + [sym_argument_list] = STATE(357), + [sym_generator_expression] = STATE(357), + [sym__newline] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(1643), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), + }, + [752] = { + [sym_argument_list] = STATE(357), + [sym_generator_expression] = STATE(357), + [sym__newline] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_SLASH_SLASH] = ACTIONS(568), + [anon_sym_STAR_STAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(574), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), + }, + [753] = { + [sym_argument_list] = STATE(357), + [sym_generator_expression] = STATE(357), + [sym__newline] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_SLASH_SLASH] = ACTIONS(568), + [anon_sym_STAR_STAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), + }, + [754] = { + [sym_argument_list] = STATE(357), + [sym_generator_expression] = STATE(357), + [sym__newline] = ACTIONS(1643), + [anon_sym_from] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_SLASH_SLASH] = ACTIONS(568), + [anon_sym_STAR_STAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), + }, + [755] = { + [aux_sym_subscript_repeat1] = STATE(1170), + [anon_sym_COMMA] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_COLON] = ACTIONS(1661), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1665), + [anon_sym_RBRACK] = ACTIONS(1920), + [sym_comment] = ACTIONS(76), + }, + [756] = { + [aux_sym_subscript_repeat1] = STATE(1170), + [anon_sym_COMMA] = ACTIONS(1918), + [anon_sym_RBRACK] = ACTIONS(1920), + [sym_comment] = ACTIONS(76), + }, + [757] = { + [aux_sym_comparison_operator_repeat1] = STATE(757), + [sym__newline] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1647), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1922), + [anon_sym_not] = ACTIONS(1925), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_LT_EQ] = ACTIONS(1922), + [anon_sym_EQ_EQ] = ACTIONS(1922), + [anon_sym_BANG_EQ] = ACTIONS(1922), + [anon_sym_GT_EQ] = ACTIONS(1922), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_LT_GT] = ACTIONS(1922), + [anon_sym_is] = ACTIONS(1931), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1647), + }, + [758] = { + [ts_builtin_sym_end] = ACTIONS(1934), + [anon_sym_import] = ACTIONS(1936), + [anon_sym_from] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_print] = ACTIONS(1936), + [anon_sym_assert] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_del] = ACTIONS(1936), + [anon_sym_raise] = ACTIONS(1936), + [sym_pass_statement] = ACTIONS(1936), + [sym_break_statement] = ACTIONS(1936), + [sym_continue_statement] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_try] = ACTIONS(1936), + [anon_sym_with] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_def] = ACTIONS(1936), + [anon_sym_global] = ACTIONS(1936), + [anon_sym_nonlocal] = ACTIONS(1936), + [anon_sym_exec] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_lambda] = ACTIONS(1936), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1934), + [sym_ellipsis] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_string] = ACTIONS(1936), + [sym_integer] = ACTIONS(1936), + [sym_float] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_none] = ACTIONS(1936), + [anon_sym_await] = ACTIONS(1936), + [sym_comment] = ACTIONS(76), + }, + [759] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -28938,9 +30232,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -28963,16 +30257,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [706] = { - [anon_sym_if] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(568), - [anon_sym_or] = ACTIONS(570), + [760] = { + [anon_sym_if] = ACTIONS(598), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(602), + [anon_sym_or] = ACTIONS(604), [sym_comment] = ACTIONS(76), }, - [707] = { - [sym__expression] = STATE(1095), - [sym__primary_expression] = STATE(105), + [761] = { + [sym__expression] = STATE(1171), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -28997,89 +30291,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [708] = { - [aux_sym_concatenated_string_repeat1] = STATE(708), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [762] = { + [aux_sym_concatenated_string_repeat1] = STATE(762), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_COLON] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [709] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1839), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [763] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1940), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [710] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [764] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -29108,9 +30402,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1098), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(1841), + [aux_sym_module_repeat1] = STATE(1174), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(1942), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -29119,20 +30413,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -29153,218 +30447,218 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [711] = { - [aux_sym__simple_statements_repeat1] = STATE(1101), - [sym__newline] = ACTIONS(1843), + [765] = { + [aux_sym__simple_statements_repeat1] = STATE(1177), + [sym__newline] = ACTIONS(1944), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1845), + [sym__semicolon] = ACTIONS(1946), }, - [712] = { - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_import] = ACTIONS(1263), - [anon_sym_from] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_print] = ACTIONS(1263), - [anon_sym_assert] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_del] = ACTIONS(1263), - [anon_sym_raise] = ACTIONS(1263), - [sym_pass_statement] = ACTIONS(1263), - [sym_break_statement] = ACTIONS(1263), - [sym_continue_statement] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_elif] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_with] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_global] = ACTIONS(1263), - [anon_sym_nonlocal] = ACTIONS(1263), - [anon_sym_exec] = ACTIONS(1263), - [anon_sym_class] = ACTIONS(1263), - [anon_sym_AT] = ACTIONS(1261), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_yield] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1261), - [sym_ellipsis] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [sym_string] = ACTIONS(1263), - [sym_integer] = ACTIONS(1263), - [sym_float] = ACTIONS(1263), - [sym_identifier] = ACTIONS(1265), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [sym_none] = ACTIONS(1263), - [anon_sym_await] = ACTIONS(1263), + [766] = { + [ts_builtin_sym_end] = ACTIONS(1321), + [anon_sym_import] = ACTIONS(1323), + [anon_sym_from] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_print] = ACTIONS(1323), + [anon_sym_assert] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_del] = ACTIONS(1323), + [anon_sym_raise] = ACTIONS(1323), + [sym_pass_statement] = ACTIONS(1323), + [sym_break_statement] = ACTIONS(1323), + [sym_continue_statement] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_elif] = ACTIONS(1323), + [anon_sym_else] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_try] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1323), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(1323), + [anon_sym_global] = ACTIONS(1323), + [anon_sym_nonlocal] = ACTIONS(1323), + [anon_sym_exec] = ACTIONS(1323), + [anon_sym_class] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(1321), + [anon_sym_not] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_lambda] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1321), + [sym_ellipsis] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [sym_string] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [sym_identifier] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [sym_none] = ACTIONS(1323), + [anon_sym_await] = ACTIONS(1323), [sym_comment] = ACTIONS(76), }, - [713] = { - [sym_elif_clause] = STATE(1104), - [sym_else_clause] = STATE(1105), - [aux_sym_if_statement_repeat1] = STATE(1106), - [ts_builtin_sym_end] = ACTIONS(1847), - [anon_sym_import] = ACTIONS(1849), - [anon_sym_from] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_print] = ACTIONS(1849), - [anon_sym_assert] = ACTIONS(1849), - [anon_sym_return] = ACTIONS(1849), - [anon_sym_del] = ACTIONS(1849), - [anon_sym_raise] = ACTIONS(1849), - [sym_pass_statement] = ACTIONS(1849), - [sym_break_statement] = ACTIONS(1849), - [sym_continue_statement] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_elif] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_while] = ACTIONS(1849), - [anon_sym_try] = ACTIONS(1849), - [anon_sym_with] = ACTIONS(1849), - [anon_sym_async] = ACTIONS(1849), - [anon_sym_def] = ACTIONS(1849), - [anon_sym_global] = ACTIONS(1849), - [anon_sym_nonlocal] = ACTIONS(1849), - [anon_sym_exec] = ACTIONS(1849), - [anon_sym_class] = ACTIONS(1849), - [anon_sym_AT] = ACTIONS(1847), - [anon_sym_not] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_lambda] = ACTIONS(1849), - [anon_sym_yield] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1847), - [sym_ellipsis] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1847), - [sym_string] = ACTIONS(1849), - [sym_integer] = ACTIONS(1849), - [sym_float] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1855), - [sym_true] = ACTIONS(1849), - [sym_false] = ACTIONS(1849), - [sym_none] = ACTIONS(1849), - [anon_sym_await] = ACTIONS(1849), + [767] = { + [sym_elif_clause] = STATE(1180), + [sym_else_clause] = STATE(1181), + [aux_sym_if_statement_repeat1] = STATE(1182), + [ts_builtin_sym_end] = ACTIONS(1948), + [anon_sym_import] = ACTIONS(1950), + [anon_sym_from] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1948), + [anon_sym_print] = ACTIONS(1950), + [anon_sym_assert] = ACTIONS(1950), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_del] = ACTIONS(1950), + [anon_sym_raise] = ACTIONS(1950), + [sym_pass_statement] = ACTIONS(1950), + [sym_break_statement] = ACTIONS(1950), + [sym_continue_statement] = ACTIONS(1950), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_elif] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(1954), + [anon_sym_for] = ACTIONS(1950), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_try] = ACTIONS(1950), + [anon_sym_with] = ACTIONS(1950), + [anon_sym_async] = ACTIONS(1950), + [anon_sym_def] = ACTIONS(1950), + [anon_sym_global] = ACTIONS(1950), + [anon_sym_nonlocal] = ACTIONS(1950), + [anon_sym_exec] = ACTIONS(1950), + [anon_sym_class] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [anon_sym_not] = ACTIONS(1950), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_lambda] = ACTIONS(1950), + [anon_sym_yield] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1948), + [sym_ellipsis] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1948), + [sym_string] = ACTIONS(1950), + [sym_integer] = ACTIONS(1950), + [sym_float] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1956), + [sym_true] = ACTIONS(1950), + [sym_false] = ACTIONS(1950), + [sym_none] = ACTIONS(1950), + [anon_sym_await] = ACTIONS(1950), [sym_comment] = ACTIONS(76), }, - [714] = { - [anon_sym_if] = ACTIONS(1550), - [anon_sym_COLON] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(568), - [anon_sym_or] = ACTIONS(1550), + [768] = { + [anon_sym_if] = ACTIONS(1616), + [anon_sym_COLON] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(602), + [anon_sym_or] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [715] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [769] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(618), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [716] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_SLASH_SLASH] = ACTIONS(582), - [anon_sym_STAR_STAR] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [770] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(616), + [anon_sym_SLASH_SLASH] = ACTIONS(616), + [anon_sym_STAR_STAR] = ACTIONS(618), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [717] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(574), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_COLON] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_SLASH_SLASH] = ACTIONS(582), - [anon_sym_STAR_STAR] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), + [771] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(616), + [anon_sym_SLASH_SLASH] = ACTIONS(616), + [anon_sym_STAR_STAR] = ACTIONS(618), + [anon_sym_PIPE] = ACTIONS(620), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [718] = { - [sym__primary_expression] = STATE(1107), + [772] = { + [sym__primary_expression] = STATE(1183), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -29383,13 +30677,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -29398,351 +30692,351 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [719] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_SLASH_SLASH] = ACTIONS(582), - [anon_sym_STAR_STAR] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [773] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(616), + [anon_sym_SLASH_SLASH] = ACTIONS(616), + [anon_sym_STAR_STAR] = ACTIONS(618), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [720] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(574), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_SLASH_SLASH] = ACTIONS(582), - [anon_sym_STAR_STAR] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [774] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(616), + [anon_sym_SLASH_SLASH] = ACTIONS(616), + [anon_sym_STAR_STAR] = ACTIONS(618), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [721] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(574), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_SLASH_SLASH] = ACTIONS(582), - [anon_sym_STAR_STAR] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [775] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(616), + [anon_sym_SLASH_SLASH] = ACTIONS(616), + [anon_sym_STAR_STAR] = ACTIONS(618), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [722] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(574), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_SLASH_SLASH] = ACTIONS(582), - [anon_sym_STAR_STAR] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [776] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(616), + [anon_sym_SLASH_SLASH] = ACTIONS(616), + [anon_sym_STAR_STAR] = ACTIONS(618), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [723] = { - [aux_sym_comparison_operator_repeat1] = STATE(723), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_COLON] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1857), - [anon_sym_not] = ACTIONS(1860), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1863), - [anon_sym_LT_EQ] = ACTIONS(1857), - [anon_sym_EQ_EQ] = ACTIONS(1857), - [anon_sym_BANG_EQ] = ACTIONS(1857), - [anon_sym_GT_EQ] = ACTIONS(1857), - [anon_sym_GT] = ACTIONS(1863), - [anon_sym_LT_GT] = ACTIONS(1857), - [anon_sym_is] = ACTIONS(1866), + [777] = { + [aux_sym_comparison_operator_repeat1] = STATE(777), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1958), + [anon_sym_not] = ACTIONS(1961), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1964), + [anon_sym_LT_EQ] = ACTIONS(1958), + [anon_sym_EQ_EQ] = ACTIONS(1958), + [anon_sym_BANG_EQ] = ACTIONS(1958), + [anon_sym_GT_EQ] = ACTIONS(1958), + [anon_sym_GT] = ACTIONS(1964), + [anon_sym_LT_GT] = ACTIONS(1958), + [anon_sym_is] = ACTIONS(1967), [sym_comment] = ACTIONS(76), }, - [724] = { - [aux_sym_concatenated_string_repeat1] = STATE(724), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [778] = { + [aux_sym_concatenated_string_repeat1] = STATE(778), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [725] = { - [anon_sym_COLON] = ACTIONS(1869), + [779] = { + [anon_sym_COLON] = ACTIONS(1970), [sym_comment] = ACTIONS(76), }, - [726] = { - [aux_sym_print_statement_repeat1] = STATE(1110), - [anon_sym_COMMA] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_COLON] = ACTIONS(290), - [anon_sym_and] = ACTIONS(1311), - [anon_sym_or] = ACTIONS(1313), + [780] = { + [aux_sym_print_statement_repeat1] = STATE(1186), + [anon_sym_COMMA] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(304), + [anon_sym_and] = ACTIONS(1377), + [anon_sym_or] = ACTIONS(1379), [sym_comment] = ACTIONS(76), }, - [727] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1873), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_in] = ACTIONS(1873), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_SLASH_SLASH] = ACTIONS(608), - [anon_sym_STAR_STAR] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_AMP] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(616), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_LBRACK] = ACTIONS(434), + [781] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_GT_GT] = ACTIONS(636), + [anon_sym_in] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(640), + [anon_sym_SLASH] = ACTIONS(634), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_SLASH_SLASH] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [728] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [782] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [729] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_SLASH_SLASH] = ACTIONS(608), - [anon_sym_STAR_STAR] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [783] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(640), + [anon_sym_SLASH] = ACTIONS(634), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_SLASH_SLASH] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [730] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_SLASH_SLASH] = ACTIONS(608), - [anon_sym_STAR_STAR] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [784] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(634), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_SLASH_SLASH] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [731] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_SLASH_SLASH] = ACTIONS(608), - [anon_sym_STAR_STAR] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(616), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_LBRACK] = ACTIONS(1577), + [785] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_GT_GT] = ACTIONS(636), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(640), + [anon_sym_SLASH] = ACTIONS(634), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_SLASH_SLASH] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [732] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_SLASH_SLASH] = ACTIONS(608), - [anon_sym_STAR_STAR] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(616), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_LBRACK] = ACTIONS(1577), + [786] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_GT_GT] = ACTIONS(636), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(640), + [anon_sym_SLASH] = ACTIONS(634), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_SLASH_SLASH] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_LT_LT] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [733] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_SLASH_SLASH] = ACTIONS(608), - [anon_sym_STAR_STAR] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_LBRACK] = ACTIONS(1577), + [787] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_GT_GT] = ACTIONS(636), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(640), + [anon_sym_SLASH] = ACTIONS(634), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_SLASH_SLASH] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [734] = { - [sym__primary_expression] = STATE(727), + [788] = { + [sym__primary_expression] = STATE(781), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -29760,15 +31054,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_in] = ACTIONS(1875), + [anon_sym_in] = ACTIONS(1976), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(176), + [sym_string] = ACTIONS(190), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -29777,36 +31071,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [735] = { - [aux_sym_variables_repeat1] = STATE(735), - [anon_sym_COMMA] = ACTIONS(1877), - [anon_sym_in] = ACTIONS(1873), + [789] = { + [aux_sym_variables_repeat1] = STATE(789), + [anon_sym_COMMA] = ACTIONS(1978), + [anon_sym_in] = ACTIONS(1974), [sym_comment] = ACTIONS(76), }, - [736] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [790] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -29835,9 +31129,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1113), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(1880), + [aux_sym_module_repeat1] = STATE(1189), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(1981), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -29846,20 +31140,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -29880,159 +31174,159 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [737] = { - [aux_sym__simple_statements_repeat1] = STATE(1116), - [sym__newline] = ACTIONS(1882), + [791] = { + [aux_sym__simple_statements_repeat1] = STATE(1192), + [sym__newline] = ACTIONS(1983), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1884), + [sym__semicolon] = ACTIONS(1985), }, - [738] = { - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_import] = ACTIONS(1263), - [anon_sym_from] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_print] = ACTIONS(1263), - [anon_sym_assert] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_del] = ACTIONS(1263), - [anon_sym_raise] = ACTIONS(1263), - [sym_pass_statement] = ACTIONS(1263), - [sym_break_statement] = ACTIONS(1263), - [sym_continue_statement] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_with] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_global] = ACTIONS(1263), - [anon_sym_nonlocal] = ACTIONS(1263), - [anon_sym_exec] = ACTIONS(1263), - [anon_sym_class] = ACTIONS(1263), - [anon_sym_AT] = ACTIONS(1261), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_yield] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1261), - [sym_ellipsis] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [sym_string] = ACTIONS(1263), - [sym_integer] = ACTIONS(1263), - [sym_float] = ACTIONS(1263), - [sym_identifier] = ACTIONS(1265), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [sym_none] = ACTIONS(1263), - [anon_sym_await] = ACTIONS(1263), + [792] = { + [ts_builtin_sym_end] = ACTIONS(1321), + [anon_sym_import] = ACTIONS(1323), + [anon_sym_from] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_print] = ACTIONS(1323), + [anon_sym_assert] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_del] = ACTIONS(1323), + [anon_sym_raise] = ACTIONS(1323), + [sym_pass_statement] = ACTIONS(1323), + [sym_break_statement] = ACTIONS(1323), + [sym_continue_statement] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_else] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_try] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1323), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(1323), + [anon_sym_global] = ACTIONS(1323), + [anon_sym_nonlocal] = ACTIONS(1323), + [anon_sym_exec] = ACTIONS(1323), + [anon_sym_class] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(1321), + [anon_sym_not] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_lambda] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1321), + [sym_ellipsis] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [sym_string] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [sym_identifier] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [sym_none] = ACTIONS(1323), + [anon_sym_await] = ACTIONS(1323), [sym_comment] = ACTIONS(76), }, - [739] = { - [sym_else_clause] = STATE(1117), - [ts_builtin_sym_end] = ACTIONS(1886), - [anon_sym_import] = ACTIONS(1888), - [anon_sym_from] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_print] = ACTIONS(1888), - [anon_sym_assert] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_del] = ACTIONS(1888), - [anon_sym_raise] = ACTIONS(1888), - [sym_pass_statement] = ACTIONS(1888), - [sym_break_statement] = ACTIONS(1888), - [sym_continue_statement] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_try] = ACTIONS(1888), - [anon_sym_with] = ACTIONS(1888), - [anon_sym_async] = ACTIONS(1888), - [anon_sym_def] = ACTIONS(1888), - [anon_sym_global] = ACTIONS(1888), - [anon_sym_nonlocal] = ACTIONS(1888), - [anon_sym_exec] = ACTIONS(1888), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_AT] = ACTIONS(1886), - [anon_sym_not] = ACTIONS(1888), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_TILDE] = ACTIONS(1886), - [anon_sym_lambda] = ACTIONS(1888), - [anon_sym_yield] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1886), - [sym_ellipsis] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [sym_string] = ACTIONS(1888), - [sym_integer] = ACTIONS(1888), - [sym_float] = ACTIONS(1888), - [sym_identifier] = ACTIONS(1890), - [sym_true] = ACTIONS(1888), - [sym_false] = ACTIONS(1888), - [sym_none] = ACTIONS(1888), - [anon_sym_await] = ACTIONS(1888), + [793] = { + [sym_else_clause] = STATE(1193), + [ts_builtin_sym_end] = ACTIONS(1987), + [anon_sym_import] = ACTIONS(1989), + [anon_sym_from] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_print] = ACTIONS(1989), + [anon_sym_assert] = ACTIONS(1989), + [anon_sym_return] = ACTIONS(1989), + [anon_sym_del] = ACTIONS(1989), + [anon_sym_raise] = ACTIONS(1989), + [sym_pass_statement] = ACTIONS(1989), + [sym_break_statement] = ACTIONS(1989), + [sym_continue_statement] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1989), + [anon_sym_else] = ACTIONS(1954), + [anon_sym_for] = ACTIONS(1989), + [anon_sym_while] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(1989), + [anon_sym_with] = ACTIONS(1989), + [anon_sym_async] = ACTIONS(1989), + [anon_sym_def] = ACTIONS(1989), + [anon_sym_global] = ACTIONS(1989), + [anon_sym_nonlocal] = ACTIONS(1989), + [anon_sym_exec] = ACTIONS(1989), + [anon_sym_class] = ACTIONS(1989), + [anon_sym_AT] = ACTIONS(1987), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_TILDE] = ACTIONS(1987), + [anon_sym_lambda] = ACTIONS(1989), + [anon_sym_yield] = ACTIONS(1989), + [anon_sym_LBRACK] = ACTIONS(1987), + [sym_ellipsis] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1987), + [sym_string] = ACTIONS(1989), + [sym_integer] = ACTIONS(1989), + [sym_float] = ACTIONS(1989), + [sym_identifier] = ACTIONS(1991), + [sym_true] = ACTIONS(1989), + [sym_false] = ACTIONS(1989), + [sym_none] = ACTIONS(1989), + [anon_sym_await] = ACTIONS(1989), [sym_comment] = ACTIONS(76), }, - [740] = { - [ts_builtin_sym_end] = ACTIONS(1892), - [anon_sym_import] = ACTIONS(1894), - [anon_sym_from] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_print] = ACTIONS(1894), - [anon_sym_assert] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_del] = ACTIONS(1894), - [anon_sym_raise] = ACTIONS(1894), - [sym_pass_statement] = ACTIONS(1894), - [sym_break_statement] = ACTIONS(1894), - [sym_continue_statement] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_except] = ACTIONS(1894), - [anon_sym_finally] = ACTIONS(1894), - [anon_sym_with] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1894), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_global] = ACTIONS(1894), - [anon_sym_nonlocal] = ACTIONS(1894), - [anon_sym_exec] = ACTIONS(1894), - [anon_sym_class] = ACTIONS(1894), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_lambda] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1892), - [sym_ellipsis] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1892), - [sym_string] = ACTIONS(1894), - [sym_integer] = ACTIONS(1894), - [sym_float] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [sym_true] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [sym_none] = ACTIONS(1894), - [anon_sym_await] = ACTIONS(1894), + [794] = { + [ts_builtin_sym_end] = ACTIONS(1993), + [anon_sym_import] = ACTIONS(1995), + [anon_sym_from] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_del] = ACTIONS(1995), + [anon_sym_raise] = ACTIONS(1995), + [sym_pass_statement] = ACTIONS(1995), + [sym_break_statement] = ACTIONS(1995), + [sym_continue_statement] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_else] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1995), + [anon_sym_except] = ACTIONS(1995), + [anon_sym_finally] = ACTIONS(1995), + [anon_sym_with] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1995), + [anon_sym_global] = ACTIONS(1995), + [anon_sym_nonlocal] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_class] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(1993), + [anon_sym_not] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_lambda] = ACTIONS(1995), + [anon_sym_yield] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1993), + [sym_ellipsis] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [sym_string] = ACTIONS(1995), + [sym_integer] = ACTIONS(1995), + [sym_float] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1997), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_none] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(1995), [sym_comment] = ACTIONS(76), }, - [741] = { - [aux_sym__simple_statements_repeat1] = STATE(1120), - [sym__newline] = ACTIONS(1898), + [795] = { + [aux_sym__simple_statements_repeat1] = STATE(1196), + [sym__newline] = ACTIONS(1999), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1900), + [sym__semicolon] = ACTIONS(2001), }, - [742] = { - [sym__expression] = STATE(1121), - [sym__primary_expression] = STATE(105), + [796] = { + [sym__expression] = STATE(1197), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -30057,27 +31351,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [743] = { - [sym_variables] = STATE(1122), - [sym__primary_expression] = STATE(109), + [797] = { + [sym_variables] = STATE(1198), + [sym__primary_expression] = STATE(115), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -30096,13 +31390,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(176), + [sym_string] = ACTIONS(190), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -30111,9 +31405,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [744] = { - [sym__expression] = STATE(1123), - [sym__primary_expression] = STATE(105), + [798] = { + [sym__expression] = STATE(1199), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -30138,32 +31432,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [745] = { - [anon_sym_COLON] = ACTIONS(1902), + [799] = { + [anon_sym_COLON] = ACTIONS(2003), [sym_comment] = ACTIONS(76), }, - [746] = { - [sym_with_item] = STATE(1125), - [sym__expression] = STATE(118), - [sym__primary_expression] = STATE(119), + [800] = { + [sym_with_item] = STATE(1201), + [sym__expression] = STATE(124), + [sym__primary_expression] = STATE(125), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -30188,193 +31482,193 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_lambda] = ACTIONS(184), + [anon_sym_not] = ACTIONS(194), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_lambda] = ACTIONS(198), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(188), + [anon_sym_await] = ACTIONS(202), [sym_comment] = ACTIONS(76), }, - [747] = { - [sym__function_definition] = STATE(1126), - [anon_sym_def] = ACTIONS(1904), + [801] = { + [sym__function_definition] = STATE(1202), + [anon_sym_def] = ACTIONS(2005), [sym_comment] = ACTIONS(76), }, - [748] = { - [sym_identifier] = ACTIONS(1906), + [802] = { + [sym_identifier] = ACTIONS(2007), [sym_comment] = ACTIONS(76), }, - [749] = { - [sym_identifier] = ACTIONS(1908), + [803] = { + [sym_identifier] = ACTIONS(2009), [sym_comment] = ACTIONS(76), }, - [750] = { - [sym__dedent] = ACTIONS(260), - [anon_sym_import] = ACTIONS(262), - [anon_sym_from] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_assert] = ACTIONS(262), - [anon_sym_return] = ACTIONS(262), - [anon_sym_del] = ACTIONS(262), - [anon_sym_raise] = ACTIONS(262), - [sym_pass_statement] = ACTIONS(262), - [sym_break_statement] = ACTIONS(262), - [sym_continue_statement] = ACTIONS(262), - [anon_sym_if] = ACTIONS(262), - [anon_sym_for] = ACTIONS(262), - [anon_sym_while] = ACTIONS(262), - [anon_sym_try] = ACTIONS(262), - [anon_sym_with] = ACTIONS(262), - [anon_sym_async] = ACTIONS(262), - [anon_sym_def] = ACTIONS(262), - [anon_sym_global] = ACTIONS(262), - [anon_sym_nonlocal] = ACTIONS(262), - [anon_sym_exec] = ACTIONS(262), - [anon_sym_class] = ACTIONS(262), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_not] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_lambda] = ACTIONS(262), - [anon_sym_yield] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(260), - [sym_string] = ACTIONS(262), - [sym_integer] = ACTIONS(262), - [sym_float] = ACTIONS(262), - [sym_identifier] = ACTIONS(264), - [sym_true] = ACTIONS(262), - [sym_false] = ACTIONS(262), - [sym_none] = ACTIONS(262), - [anon_sym_await] = ACTIONS(262), + [804] = { + [sym__dedent] = ACTIONS(274), + [anon_sym_import] = ACTIONS(276), + [anon_sym_from] = ACTIONS(276), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_print] = ACTIONS(276), + [anon_sym_assert] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_del] = ACTIONS(276), + [anon_sym_raise] = ACTIONS(276), + [sym_pass_statement] = ACTIONS(276), + [sym_break_statement] = ACTIONS(276), + [sym_continue_statement] = ACTIONS(276), + [anon_sym_if] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_with] = ACTIONS(276), + [anon_sym_async] = ACTIONS(276), + [anon_sym_def] = ACTIONS(276), + [anon_sym_global] = ACTIONS(276), + [anon_sym_nonlocal] = ACTIONS(276), + [anon_sym_exec] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(274), + [anon_sym_not] = ACTIONS(276), + [anon_sym_PLUS] = ACTIONS(274), + [anon_sym_DASH] = ACTIONS(274), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(276), + [anon_sym_yield] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(274), + [sym_ellipsis] = ACTIONS(274), + [anon_sym_LBRACE] = ACTIONS(274), + [sym_string] = ACTIONS(276), + [sym_integer] = ACTIONS(276), + [sym_float] = ACTIONS(276), + [sym_identifier] = ACTIONS(278), + [sym_true] = ACTIONS(276), + [sym_false] = ACTIONS(276), + [sym_none] = ACTIONS(276), + [anon_sym_await] = ACTIONS(276), [sym_comment] = ACTIONS(76), }, - [751] = { - [sym__dedent] = ACTIONS(266), - [anon_sym_import] = ACTIONS(268), - [anon_sym_from] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(266), - [anon_sym_print] = ACTIONS(268), - [anon_sym_assert] = ACTIONS(268), - [anon_sym_return] = ACTIONS(268), - [anon_sym_del] = ACTIONS(268), - [anon_sym_raise] = ACTIONS(268), - [sym_pass_statement] = ACTIONS(268), - [sym_break_statement] = ACTIONS(268), - [sym_continue_statement] = ACTIONS(268), - [anon_sym_if] = ACTIONS(268), - [anon_sym_for] = ACTIONS(268), - [anon_sym_while] = ACTIONS(268), - [anon_sym_try] = ACTIONS(268), - [anon_sym_with] = ACTIONS(268), - [anon_sym_async] = ACTIONS(268), - [anon_sym_def] = ACTIONS(268), - [anon_sym_global] = ACTIONS(268), - [anon_sym_nonlocal] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(268), - [anon_sym_class] = ACTIONS(268), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_not] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(266), - [anon_sym_DASH] = ACTIONS(266), - [anon_sym_TILDE] = ACTIONS(266), - [anon_sym_lambda] = ACTIONS(268), - [anon_sym_yield] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(266), - [sym_ellipsis] = ACTIONS(266), - [anon_sym_LBRACE] = ACTIONS(266), - [sym_string] = ACTIONS(268), - [sym_integer] = ACTIONS(268), - [sym_float] = ACTIONS(268), - [sym_identifier] = ACTIONS(270), - [sym_true] = ACTIONS(268), - [sym_false] = ACTIONS(268), - [sym_none] = ACTIONS(268), - [anon_sym_await] = ACTIONS(268), + [805] = { + [sym__dedent] = ACTIONS(280), + [anon_sym_import] = ACTIONS(282), + [anon_sym_from] = ACTIONS(282), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_print] = ACTIONS(282), + [anon_sym_assert] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_del] = ACTIONS(282), + [anon_sym_raise] = ACTIONS(282), + [sym_pass_statement] = ACTIONS(282), + [sym_break_statement] = ACTIONS(282), + [sym_continue_statement] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_for] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [anon_sym_try] = ACTIONS(282), + [anon_sym_with] = ACTIONS(282), + [anon_sym_async] = ACTIONS(282), + [anon_sym_def] = ACTIONS(282), + [anon_sym_global] = ACTIONS(282), + [anon_sym_nonlocal] = ACTIONS(282), + [anon_sym_exec] = ACTIONS(282), + [anon_sym_class] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(280), + [anon_sym_not] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(280), + [anon_sym_DASH] = ACTIONS(280), + [anon_sym_TILDE] = ACTIONS(280), + [anon_sym_lambda] = ACTIONS(282), + [anon_sym_yield] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(280), + [sym_ellipsis] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(280), + [sym_string] = ACTIONS(282), + [sym_integer] = ACTIONS(282), + [sym_float] = ACTIONS(282), + [sym_identifier] = ACTIONS(284), + [sym_true] = ACTIONS(282), + [sym_false] = ACTIONS(282), + [sym_none] = ACTIONS(282), + [anon_sym_await] = ACTIONS(282), [sym_comment] = ACTIONS(76), }, - [752] = { - [sym__dedent] = ACTIONS(272), - [anon_sym_import] = ACTIONS(274), - [anon_sym_from] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_print] = ACTIONS(274), - [anon_sym_assert] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_del] = ACTIONS(274), - [anon_sym_raise] = ACTIONS(274), - [sym_pass_statement] = ACTIONS(274), - [sym_break_statement] = ACTIONS(274), - [sym_continue_statement] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_for] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [anon_sym_try] = ACTIONS(274), - [anon_sym_with] = ACTIONS(274), - [anon_sym_async] = ACTIONS(274), - [anon_sym_def] = ACTIONS(274), - [anon_sym_global] = ACTIONS(274), - [anon_sym_nonlocal] = ACTIONS(274), - [anon_sym_exec] = ACTIONS(274), - [anon_sym_class] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(272), - [anon_sym_not] = ACTIONS(274), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_TILDE] = ACTIONS(272), - [anon_sym_lambda] = ACTIONS(274), - [anon_sym_yield] = ACTIONS(274), - [anon_sym_LBRACK] = ACTIONS(272), - [sym_ellipsis] = ACTIONS(272), - [anon_sym_LBRACE] = ACTIONS(272), - [sym_string] = ACTIONS(274), - [sym_integer] = ACTIONS(274), - [sym_float] = ACTIONS(274), - [sym_identifier] = ACTIONS(276), - [sym_true] = ACTIONS(274), - [sym_false] = ACTIONS(274), - [sym_none] = ACTIONS(274), - [anon_sym_await] = ACTIONS(274), + [806] = { + [sym__dedent] = ACTIONS(286), + [anon_sym_import] = ACTIONS(288), + [anon_sym_from] = ACTIONS(288), + [anon_sym_LPAREN] = ACTIONS(286), + [anon_sym_print] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(288), + [anon_sym_return] = ACTIONS(288), + [anon_sym_del] = ACTIONS(288), + [anon_sym_raise] = ACTIONS(288), + [sym_pass_statement] = ACTIONS(288), + [sym_break_statement] = ACTIONS(288), + [sym_continue_statement] = ACTIONS(288), + [anon_sym_if] = ACTIONS(288), + [anon_sym_for] = ACTIONS(288), + [anon_sym_while] = ACTIONS(288), + [anon_sym_try] = ACTIONS(288), + [anon_sym_with] = ACTIONS(288), + [anon_sym_async] = ACTIONS(288), + [anon_sym_def] = ACTIONS(288), + [anon_sym_global] = ACTIONS(288), + [anon_sym_nonlocal] = ACTIONS(288), + [anon_sym_exec] = ACTIONS(288), + [anon_sym_class] = ACTIONS(288), + [anon_sym_AT] = ACTIONS(286), + [anon_sym_not] = ACTIONS(288), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_lambda] = ACTIONS(288), + [anon_sym_yield] = ACTIONS(288), + [anon_sym_LBRACK] = ACTIONS(286), + [sym_ellipsis] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(286), + [sym_string] = ACTIONS(288), + [sym_integer] = ACTIONS(288), + [sym_float] = ACTIONS(288), + [sym_identifier] = ACTIONS(290), + [sym_true] = ACTIONS(288), + [sym_false] = ACTIONS(288), + [sym_none] = ACTIONS(288), + [anon_sym_await] = ACTIONS(288), [sym_comment] = ACTIONS(76), }, - [753] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [807] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -30403,9 +31697,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1130), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(1910), + [aux_sym_module_repeat1] = STATE(1206), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(2011), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -30414,20 +31708,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -30448,78 +31742,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [754] = { - [sym_async_function_definition] = STATE(1131), - [sym_function_definition] = STATE(1131), - [sym__function_definition] = STATE(752), - [sym_class_definition] = STATE(1131), + [808] = { + [sym_async_function_definition] = STATE(1207), + [sym_function_definition] = STATE(1207), + [sym__function_definition] = STATE(806), + [sym_class_definition] = STATE(1207), [sym_decorator] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(193), - [anon_sym_async] = ACTIONS(1912), - [anon_sym_def] = ACTIONS(1904), - [anon_sym_class] = ACTIONS(1914), + [aux_sym_decorated_definition_repeat1] = STATE(199), + [anon_sym_async] = ACTIONS(2013), + [anon_sym_def] = ACTIONS(2005), + [anon_sym_class] = ACTIONS(2015), [anon_sym_AT] = ACTIONS(52), [sym_comment] = ACTIONS(76), }, - [755] = { - [ts_builtin_sym_end] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_from] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_print] = ACTIONS(552), - [anon_sym_assert] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_del] = ACTIONS(552), - [anon_sym_raise] = ACTIONS(552), - [sym_pass_statement] = ACTIONS(552), - [sym_break_statement] = ACTIONS(552), - [sym_continue_statement] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_else] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_try] = ACTIONS(552), - [anon_sym_except] = ACTIONS(552), - [anon_sym_finally] = ACTIONS(552), - [anon_sym_with] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_def] = ACTIONS(552), - [anon_sym_global] = ACTIONS(552), - [anon_sym_nonlocal] = ACTIONS(552), - [anon_sym_exec] = ACTIONS(552), - [anon_sym_class] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(550), - [anon_sym_not] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_TILDE] = ACTIONS(550), - [anon_sym_lambda] = ACTIONS(552), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_LBRACK] = ACTIONS(550), - [sym_ellipsis] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(550), - [sym_string] = ACTIONS(552), - [sym_integer] = ACTIONS(552), - [sym_float] = ACTIONS(552), - [sym_identifier] = ACTIONS(554), - [sym_true] = ACTIONS(552), - [sym_false] = ACTIONS(552), - [sym_none] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), + [809] = { + [ts_builtin_sym_end] = ACTIONS(584), + [anon_sym_import] = ACTIONS(586), + [anon_sym_from] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_print] = ACTIONS(586), + [anon_sym_assert] = ACTIONS(586), + [anon_sym_return] = ACTIONS(586), + [anon_sym_del] = ACTIONS(586), + [anon_sym_raise] = ACTIONS(586), + [sym_pass_statement] = ACTIONS(586), + [sym_break_statement] = ACTIONS(586), + [sym_continue_statement] = ACTIONS(586), + [anon_sym_if] = ACTIONS(586), + [anon_sym_else] = ACTIONS(586), + [anon_sym_for] = ACTIONS(586), + [anon_sym_while] = ACTIONS(586), + [anon_sym_try] = ACTIONS(586), + [anon_sym_except] = ACTIONS(586), + [anon_sym_finally] = ACTIONS(586), + [anon_sym_with] = ACTIONS(586), + [anon_sym_async] = ACTIONS(586), + [anon_sym_def] = ACTIONS(586), + [anon_sym_global] = ACTIONS(586), + [anon_sym_nonlocal] = ACTIONS(586), + [anon_sym_exec] = ACTIONS(586), + [anon_sym_class] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_not] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_TILDE] = ACTIONS(584), + [anon_sym_lambda] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(584), + [sym_ellipsis] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(584), + [sym_string] = ACTIONS(586), + [sym_integer] = ACTIONS(586), + [sym_float] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [sym_true] = ACTIONS(586), + [sym_false] = ACTIONS(586), + [sym_none] = ACTIONS(586), + [anon_sym_await] = ACTIONS(586), [sym_comment] = ACTIONS(76), }, - [756] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [810] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -30547,7 +31841,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(1916), + [sym__newline] = ACTIONS(2017), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -30556,9 +31850,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -30581,15 +31875,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [757] = { - [aux_sym__simple_statements_repeat1] = STATE(335), - [sym__newline] = ACTIONS(1916), + [811] = { + [aux_sym__simple_statements_repeat1] = STATE(362), + [sym__newline] = ACTIONS(2017), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1918), + [sym__semicolon] = ACTIONS(2019), }, - [758] = { - [sym__expression] = STATE(1135), - [sym__primary_expression] = STATE(119), + [812] = { + [sym__expression] = STATE(1211), + [sym__primary_expression] = STATE(125), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -30613,184 +31907,184 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(1920), + [anon_sym_COLON] = ACTIONS(2021), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_lambda] = ACTIONS(184), + [anon_sym_not] = ACTIONS(194), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_lambda] = ACTIONS(198), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(188), + [anon_sym_await] = ACTIONS(202), [sym_comment] = ACTIONS(76), }, - [759] = { - [anon_sym_COLON] = ACTIONS(1922), + [813] = { + [anon_sym_COLON] = ACTIONS(2023), [sym_comment] = ACTIONS(76), }, - [760] = { - [ts_builtin_sym_end] = ACTIONS(1924), - [anon_sym_import] = ACTIONS(1926), - [anon_sym_from] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1924), - [anon_sym_print] = ACTIONS(1926), - [anon_sym_assert] = ACTIONS(1926), - [anon_sym_return] = ACTIONS(1926), - [anon_sym_del] = ACTIONS(1926), - [anon_sym_raise] = ACTIONS(1926), - [sym_pass_statement] = ACTIONS(1926), - [sym_break_statement] = ACTIONS(1926), - [sym_continue_statement] = ACTIONS(1926), - [anon_sym_if] = ACTIONS(1926), - [anon_sym_else] = ACTIONS(1926), - [anon_sym_for] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1926), - [anon_sym_try] = ACTIONS(1926), - [anon_sym_except] = ACTIONS(1926), - [anon_sym_finally] = ACTIONS(1926), - [anon_sym_with] = ACTIONS(1926), - [anon_sym_async] = ACTIONS(1926), - [anon_sym_def] = ACTIONS(1926), - [anon_sym_global] = ACTIONS(1926), - [anon_sym_nonlocal] = ACTIONS(1926), - [anon_sym_exec] = ACTIONS(1926), - [anon_sym_class] = ACTIONS(1926), - [anon_sym_AT] = ACTIONS(1924), - [anon_sym_not] = ACTIONS(1926), - [anon_sym_PLUS] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1924), - [anon_sym_TILDE] = ACTIONS(1924), - [anon_sym_lambda] = ACTIONS(1926), - [anon_sym_yield] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1924), - [sym_ellipsis] = ACTIONS(1924), - [anon_sym_LBRACE] = ACTIONS(1924), - [sym_string] = ACTIONS(1926), - [sym_integer] = ACTIONS(1926), - [sym_float] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [sym_true] = ACTIONS(1926), - [sym_false] = ACTIONS(1926), - [sym_none] = ACTIONS(1926), - [anon_sym_await] = ACTIONS(1926), + [814] = { + [ts_builtin_sym_end] = ACTIONS(2025), + [anon_sym_import] = ACTIONS(2027), + [anon_sym_from] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_print] = ACTIONS(2027), + [anon_sym_assert] = ACTIONS(2027), + [anon_sym_return] = ACTIONS(2027), + [anon_sym_del] = ACTIONS(2027), + [anon_sym_raise] = ACTIONS(2027), + [sym_pass_statement] = ACTIONS(2027), + [sym_break_statement] = ACTIONS(2027), + [sym_continue_statement] = ACTIONS(2027), + [anon_sym_if] = ACTIONS(2027), + [anon_sym_else] = ACTIONS(2027), + [anon_sym_for] = ACTIONS(2027), + [anon_sym_while] = ACTIONS(2027), + [anon_sym_try] = ACTIONS(2027), + [anon_sym_except] = ACTIONS(2027), + [anon_sym_finally] = ACTIONS(2027), + [anon_sym_with] = ACTIONS(2027), + [anon_sym_async] = ACTIONS(2027), + [anon_sym_def] = ACTIONS(2027), + [anon_sym_global] = ACTIONS(2027), + [anon_sym_nonlocal] = ACTIONS(2027), + [anon_sym_exec] = ACTIONS(2027), + [anon_sym_class] = ACTIONS(2027), + [anon_sym_AT] = ACTIONS(2025), + [anon_sym_not] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_TILDE] = ACTIONS(2025), + [anon_sym_lambda] = ACTIONS(2027), + [anon_sym_yield] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2025), + [sym_ellipsis] = ACTIONS(2025), + [anon_sym_LBRACE] = ACTIONS(2025), + [sym_string] = ACTIONS(2027), + [sym_integer] = ACTIONS(2027), + [sym_float] = ACTIONS(2027), + [sym_identifier] = ACTIONS(2029), + [sym_true] = ACTIONS(2027), + [sym_false] = ACTIONS(2027), + [sym_none] = ACTIONS(2027), + [anon_sym_await] = ACTIONS(2027), [sym_comment] = ACTIONS(76), }, - [761] = { - [ts_builtin_sym_end] = ACTIONS(1930), - [anon_sym_import] = ACTIONS(1932), - [anon_sym_from] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_print] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_del] = ACTIONS(1932), - [anon_sym_raise] = ACTIONS(1932), - [sym_pass_statement] = ACTIONS(1932), - [sym_break_statement] = ACTIONS(1932), - [sym_continue_statement] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_try] = ACTIONS(1932), - [anon_sym_with] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_def] = ACTIONS(1932), - [anon_sym_global] = ACTIONS(1932), - [anon_sym_nonlocal] = ACTIONS(1932), - [anon_sym_exec] = ACTIONS(1932), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_AT] = ACTIONS(1930), - [anon_sym_not] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_TILDE] = ACTIONS(1930), - [anon_sym_lambda] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [sym_ellipsis] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [sym_string] = ACTIONS(1932), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1932), - [sym_identifier] = ACTIONS(1934), - [sym_true] = ACTIONS(1932), - [sym_false] = ACTIONS(1932), - [sym_none] = ACTIONS(1932), - [anon_sym_await] = ACTIONS(1932), + [815] = { + [ts_builtin_sym_end] = ACTIONS(2031), + [anon_sym_import] = ACTIONS(2033), + [anon_sym_from] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_print] = ACTIONS(2033), + [anon_sym_assert] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_del] = ACTIONS(2033), + [anon_sym_raise] = ACTIONS(2033), + [sym_pass_statement] = ACTIONS(2033), + [sym_break_statement] = ACTIONS(2033), + [sym_continue_statement] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_try] = ACTIONS(2033), + [anon_sym_with] = ACTIONS(2033), + [anon_sym_async] = ACTIONS(2033), + [anon_sym_def] = ACTIONS(2033), + [anon_sym_global] = ACTIONS(2033), + [anon_sym_nonlocal] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(2033), + [anon_sym_class] = ACTIONS(2033), + [anon_sym_AT] = ACTIONS(2031), + [anon_sym_not] = ACTIONS(2033), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_TILDE] = ACTIONS(2031), + [anon_sym_lambda] = ACTIONS(2033), + [anon_sym_yield] = ACTIONS(2033), + [anon_sym_LBRACK] = ACTIONS(2031), + [sym_ellipsis] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2031), + [sym_string] = ACTIONS(2033), + [sym_integer] = ACTIONS(2033), + [sym_float] = ACTIONS(2033), + [sym_identifier] = ACTIONS(2035), + [sym_true] = ACTIONS(2033), + [sym_false] = ACTIONS(2033), + [sym_none] = ACTIONS(2033), + [anon_sym_await] = ACTIONS(2033), [sym_comment] = ACTIONS(76), }, - [762] = { - [sym_else_clause] = STATE(1138), - [sym_except_clause] = STATE(760), - [sym_finally_clause] = STATE(1139), - [aux_sym_try_statement_repeat1] = STATE(1140), - [ts_builtin_sym_end] = ACTIONS(1930), - [anon_sym_import] = ACTIONS(1932), - [anon_sym_from] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_print] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_del] = ACTIONS(1932), - [anon_sym_raise] = ACTIONS(1932), - [sym_pass_statement] = ACTIONS(1932), - [sym_break_statement] = ACTIONS(1932), - [sym_continue_statement] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_else] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_try] = ACTIONS(1932), - [anon_sym_except] = ACTIONS(1938), - [anon_sym_finally] = ACTIONS(1940), - [anon_sym_with] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_def] = ACTIONS(1932), - [anon_sym_global] = ACTIONS(1932), - [anon_sym_nonlocal] = ACTIONS(1932), - [anon_sym_exec] = ACTIONS(1932), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_AT] = ACTIONS(1930), - [anon_sym_not] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_TILDE] = ACTIONS(1930), - [anon_sym_lambda] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [sym_ellipsis] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [sym_string] = ACTIONS(1932), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1932), - [sym_identifier] = ACTIONS(1934), - [sym_true] = ACTIONS(1932), - [sym_false] = ACTIONS(1932), - [sym_none] = ACTIONS(1932), - [anon_sym_await] = ACTIONS(1932), + [816] = { + [sym_else_clause] = STATE(1214), + [sym_except_clause] = STATE(814), + [sym_finally_clause] = STATE(1215), + [aux_sym_try_statement_repeat1] = STATE(1216), + [ts_builtin_sym_end] = ACTIONS(2031), + [anon_sym_import] = ACTIONS(2033), + [anon_sym_from] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_print] = ACTIONS(2033), + [anon_sym_assert] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_del] = ACTIONS(2033), + [anon_sym_raise] = ACTIONS(2033), + [sym_pass_statement] = ACTIONS(2033), + [sym_break_statement] = ACTIONS(2033), + [sym_continue_statement] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_else] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_try] = ACTIONS(2033), + [anon_sym_except] = ACTIONS(2039), + [anon_sym_finally] = ACTIONS(2041), + [anon_sym_with] = ACTIONS(2033), + [anon_sym_async] = ACTIONS(2033), + [anon_sym_def] = ACTIONS(2033), + [anon_sym_global] = ACTIONS(2033), + [anon_sym_nonlocal] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(2033), + [anon_sym_class] = ACTIONS(2033), + [anon_sym_AT] = ACTIONS(2031), + [anon_sym_not] = ACTIONS(2033), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_TILDE] = ACTIONS(2031), + [anon_sym_lambda] = ACTIONS(2033), + [anon_sym_yield] = ACTIONS(2033), + [anon_sym_LBRACK] = ACTIONS(2031), + [sym_ellipsis] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2031), + [sym_string] = ACTIONS(2033), + [sym_integer] = ACTIONS(2033), + [sym_float] = ACTIONS(2033), + [sym_identifier] = ACTIONS(2035), + [sym_true] = ACTIONS(2033), + [sym_false] = ACTIONS(2033), + [sym_none] = ACTIONS(2033), + [anon_sym_await] = ACTIONS(2033), [sym_comment] = ACTIONS(76), }, - [763] = { - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_as] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(634), - [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(636), - [anon_sym_or] = ACTIONS(638), + [817] = { + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_as] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(668), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(670), + [anon_sym_or] = ACTIONS(672), [sym_comment] = ACTIONS(76), }, - [764] = { - [sym__expression] = STATE(1141), - [sym__primary_expression] = STATE(119), + [818] = { + [sym__expression] = STATE(1217), + [sym__primary_expression] = STATE(125), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -30815,89 +32109,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_lambda] = ACTIONS(184), + [anon_sym_not] = ACTIONS(194), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_lambda] = ACTIONS(198), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(188), + [anon_sym_await] = ACTIONS(202), [sym_comment] = ACTIONS(76), }, - [765] = { - [aux_sym_concatenated_string_repeat1] = STATE(765), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_as] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [819] = { + [aux_sym_concatenated_string_repeat1] = STATE(819), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_as] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_COLON] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [766] = { - [anon_sym_COMMA] = ACTIONS(1942), - [anon_sym_COLON] = ACTIONS(1942), + [820] = { + [anon_sym_COMMA] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(2043), [sym_comment] = ACTIONS(76), }, - [767] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [821] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -30926,9 +32220,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1143), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(1944), + [aux_sym_module_repeat1] = STATE(1219), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(2045), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -30937,20 +32231,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -30971,96 +32265,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [768] = { - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_import] = ACTIONS(1263), - [anon_sym_from] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_print] = ACTIONS(1263), - [anon_sym_assert] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_del] = ACTIONS(1263), - [anon_sym_raise] = ACTIONS(1263), - [sym_pass_statement] = ACTIONS(1263), - [sym_break_statement] = ACTIONS(1263), - [sym_continue_statement] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_with] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_global] = ACTIONS(1263), - [anon_sym_nonlocal] = ACTIONS(1263), - [anon_sym_exec] = ACTIONS(1263), - [anon_sym_class] = ACTIONS(1263), - [anon_sym_AT] = ACTIONS(1261), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_yield] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1261), - [sym_ellipsis] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [sym_string] = ACTIONS(1263), - [sym_integer] = ACTIONS(1263), - [sym_float] = ACTIONS(1263), - [sym_identifier] = ACTIONS(1265), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [sym_none] = ACTIONS(1263), - [anon_sym_await] = ACTIONS(1263), + [822] = { + [ts_builtin_sym_end] = ACTIONS(1321), + [anon_sym_import] = ACTIONS(1323), + [anon_sym_from] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_print] = ACTIONS(1323), + [anon_sym_assert] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_del] = ACTIONS(1323), + [anon_sym_raise] = ACTIONS(1323), + [sym_pass_statement] = ACTIONS(1323), + [sym_break_statement] = ACTIONS(1323), + [sym_continue_statement] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_try] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1323), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(1323), + [anon_sym_global] = ACTIONS(1323), + [anon_sym_nonlocal] = ACTIONS(1323), + [anon_sym_exec] = ACTIONS(1323), + [anon_sym_class] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(1321), + [anon_sym_not] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_lambda] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1321), + [sym_ellipsis] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [sym_string] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [sym_identifier] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [sym_none] = ACTIONS(1323), + [anon_sym_await] = ACTIONS(1323), [sym_comment] = ACTIONS(76), }, - [769] = { - [ts_builtin_sym_end] = ACTIONS(1946), - [anon_sym_import] = ACTIONS(1948), - [anon_sym_from] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_print] = ACTIONS(1948), - [anon_sym_assert] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_del] = ACTIONS(1948), - [anon_sym_raise] = ACTIONS(1948), - [sym_pass_statement] = ACTIONS(1948), - [sym_break_statement] = ACTIONS(1948), - [sym_continue_statement] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_try] = ACTIONS(1948), - [anon_sym_with] = ACTIONS(1948), - [anon_sym_async] = ACTIONS(1948), - [anon_sym_def] = ACTIONS(1948), - [anon_sym_global] = ACTIONS(1948), - [anon_sym_nonlocal] = ACTIONS(1948), - [anon_sym_exec] = ACTIONS(1948), - [anon_sym_class] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_TILDE] = ACTIONS(1946), - [anon_sym_lambda] = ACTIONS(1948), - [anon_sym_yield] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1946), - [sym_ellipsis] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1946), - [sym_string] = ACTIONS(1948), - [sym_integer] = ACTIONS(1948), - [sym_float] = ACTIONS(1948), - [sym_identifier] = ACTIONS(1950), - [sym_true] = ACTIONS(1948), - [sym_false] = ACTIONS(1948), - [sym_none] = ACTIONS(1948), - [anon_sym_await] = ACTIONS(1948), + [823] = { + [ts_builtin_sym_end] = ACTIONS(2047), + [anon_sym_import] = ACTIONS(2049), + [anon_sym_from] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_assert] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_del] = ACTIONS(2049), + [anon_sym_raise] = ACTIONS(2049), + [sym_pass_statement] = ACTIONS(2049), + [sym_break_statement] = ACTIONS(2049), + [sym_continue_statement] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [anon_sym_try] = ACTIONS(2049), + [anon_sym_with] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_def] = ACTIONS(2049), + [anon_sym_global] = ACTIONS(2049), + [anon_sym_nonlocal] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_class] = ACTIONS(2049), + [anon_sym_AT] = ACTIONS(2047), + [anon_sym_not] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_lambda] = ACTIONS(2049), + [anon_sym_yield] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2047), + [sym_ellipsis] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [sym_string] = ACTIONS(2049), + [sym_integer] = ACTIONS(2049), + [sym_float] = ACTIONS(2049), + [sym_identifier] = ACTIONS(2051), + [sym_true] = ACTIONS(2049), + [sym_false] = ACTIONS(2049), + [sym_none] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2049), [sym_comment] = ACTIONS(76), }, - [770] = { - [sym__simple_statements] = STATE(768), + [824] = { + [sym__simple_statements] = STATE(822), [sym_import_statement] = STATE(10), [sym_import_from_statement] = STATE(10), [sym_print_statement] = STATE(10), @@ -31072,7 +32366,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_global_statement] = STATE(10), [sym_nonlocal_statement] = STATE(10), [sym_exec_statement] = STATE(10), - [sym__suite] = STATE(1144), + [sym__suite] = STATE(1220), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -31100,7 +32394,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(1273), + [sym__indent] = ACTIONS(1333), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -31134,146 +32428,146 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [771] = { - [aux_sym_with_statement_repeat1] = STATE(771), - [anon_sym_COMMA] = ACTIONS(1952), - [anon_sym_COLON] = ACTIONS(1942), + [825] = { + [aux_sym_with_statement_repeat1] = STATE(825), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_COLON] = ACTIONS(2043), [sym_comment] = ACTIONS(76), }, - [772] = { - [anon_sym_COMMA] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_COLON] = ACTIONS(1955), - [anon_sym_and] = ACTIONS(1311), - [anon_sym_or] = ACTIONS(1313), + [826] = { + [anon_sym_COMMA] = ACTIONS(2056), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(2056), + [anon_sym_and] = ACTIONS(1377), + [anon_sym_or] = ACTIONS(1379), [sym_comment] = ACTIONS(76), }, - [773] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [827] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(2058), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [774] = { - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_as] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_COLON] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(636), - [anon_sym_or] = ACTIONS(1550), + [828] = { + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_COLON] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(670), + [anon_sym_or] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [775] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_as] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [829] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [776] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_as] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(640), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(648), - [anon_sym_SLASH] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_SLASH_SLASH] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [830] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(684), + [anon_sym_SLASH_SLASH] = ACTIONS(684), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [777] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_as] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(640), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_COLON] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(648), - [anon_sym_SLASH] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_SLASH_SLASH] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_LT_LT] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), + [831] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_as] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(676), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(684), + [anon_sym_SLASH_SLASH] = ACTIONS(684), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_LT_LT] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [778] = { - [sym__primary_expression] = STATE(1146), + [832] = { + [sym__primary_expression] = STATE(1222), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -31292,13 +32586,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -31307,178 +32601,178 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [779] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_as] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(640), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_SLASH_SLASH] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [833] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(684), + [anon_sym_SLASH_SLASH] = ACTIONS(684), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [780] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_as] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(640), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(648), - [anon_sym_SLASH] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_SLASH_SLASH] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_LT_LT] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [834] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(676), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(684), + [anon_sym_SLASH_SLASH] = ACTIONS(684), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_LT_LT] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [781] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_as] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(640), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(648), - [anon_sym_SLASH] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_SLASH_SLASH] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_LT_LT] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [835] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(676), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(684), + [anon_sym_SLASH_SLASH] = ACTIONS(684), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_LT_LT] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [782] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_as] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(640), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(648), - [anon_sym_SLASH] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_SLASH_SLASH] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [836] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(676), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(684), + [anon_sym_SLASH_SLASH] = ACTIONS(684), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [783] = { - [aux_sym_comparison_operator_repeat1] = STATE(783), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_as] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_COLON] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1959), - [anon_sym_not] = ACTIONS(1962), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1965), - [anon_sym_LT_EQ] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1959), - [anon_sym_BANG_EQ] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1959), - [anon_sym_GT] = ACTIONS(1965), - [anon_sym_LT_GT] = ACTIONS(1959), - [anon_sym_is] = ACTIONS(1968), + [837] = { + [aux_sym_comparison_operator_repeat1] = STATE(837), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_as] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(2060), + [anon_sym_not] = ACTIONS(2063), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(2066), + [anon_sym_LT_EQ] = ACTIONS(2060), + [anon_sym_EQ_EQ] = ACTIONS(2060), + [anon_sym_BANG_EQ] = ACTIONS(2060), + [anon_sym_GT_EQ] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2066), + [anon_sym_LT_GT] = ACTIONS(2060), + [anon_sym_is] = ACTIONS(2069), [sym_comment] = ACTIONS(76), }, - [784] = { - [anon_sym_COLON] = ACTIONS(1971), - [anon_sym_DASH_GT] = ACTIONS(1971), + [838] = { + [anon_sym_COLON] = ACTIONS(2072), + [anon_sym_DASH_GT] = ACTIONS(2072), [sym_comment] = ACTIONS(76), }, - [785] = { - [sym__expression] = STATE(1153), - [sym__primary_expression] = STATE(1154), + [839] = { + [sym__expression] = STATE(1229), + [sym__primary_expression] = STATE(1230), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -31501,65 +32795,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(696), - [anon_sym_COMMA] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_COMMA] = ACTIONS(732), + [anon_sym_STAR] = ACTIONS(2074), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(696), + [anon_sym_COLON] = ACTIONS(732), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), - [anon_sym_lambda] = ACTIONS(1979), + [anon_sym_not] = ACTIONS(2076), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_lambda] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1983), + [anon_sym_await] = ACTIONS(2084), [sym_comment] = ACTIONS(76), }, - [786] = { - [aux_sym__parameters_repeat1] = STATE(1158), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_COMMA] = ACTIONS(1985), - [anon_sym_COLON] = ACTIONS(1987), - [anon_sym_EQ] = ACTIONS(1989), + [840] = { + [aux_sym__parameters_repeat1] = STATE(1234), + [anon_sym_RPAREN] = ACTIONS(748), + [anon_sym_COMMA] = ACTIONS(2086), + [anon_sym_COLON] = ACTIONS(2088), + [anon_sym_EQ] = ACTIONS(2090), [sym_comment] = ACTIONS(76), }, - [787] = { - [aux_sym__parameters_repeat1] = STATE(1162), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_COMMA] = ACTIONS(1991), - [anon_sym_COLON] = ACTIONS(1993), - [anon_sym_EQ] = ACTIONS(1995), + [841] = { + [aux_sym__parameters_repeat1] = STATE(1238), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_COLON] = ACTIONS(2094), + [anon_sym_EQ] = ACTIONS(2096), [sym_comment] = ACTIONS(76), }, - [788] = { - [anon_sym_RPAREN] = ACTIONS(1997), + [842] = { + [anon_sym_RPAREN] = ACTIONS(2098), [sym_comment] = ACTIONS(76), }, - [789] = { - [aux_sym__parameters_repeat1] = STATE(1162), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_COMMA] = ACTIONS(1991), + [843] = { + [aux_sym__parameters_repeat1] = STATE(1238), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(2092), [sym_comment] = ACTIONS(76), }, - [790] = { - [aux_sym__parameters_repeat1] = STATE(1162), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_COMMA] = ACTIONS(1991), - [anon_sym_COLON] = ACTIONS(1999), + [844] = { + [aux_sym__parameters_repeat1] = STATE(1238), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_COLON] = ACTIONS(2100), [sym_comment] = ACTIONS(76), }, - [791] = { - [sym__simple_statements] = STATE(768), + [845] = { + [sym__simple_statements] = STATE(822), [sym_import_statement] = STATE(10), [sym_import_from_statement] = STATE(10), [sym_print_statement] = STATE(10), @@ -31571,7 +32865,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_global_statement] = STATE(10), [sym_nonlocal_statement] = STATE(10), [sym_exec_statement] = STATE(10), - [sym__suite] = STATE(1165), + [sym__suite] = STATE(1241), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -31599,7 +32893,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(1273), + [sym__indent] = ACTIONS(1333), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -31633,9 +32927,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [792] = { - [sym__expression] = STATE(1166), - [sym__primary_expression] = STATE(105), + [846] = { + [sym__expression] = STATE(1242), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -31645,7 +32939,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_type] = STATE(1167), + [sym_type] = STATE(1243), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -31661,102 +32955,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [793] = { - [sym__newline] = ACTIONS(2001), - [anon_sym_COMMA] = ACTIONS(2001), + [847] = { + [sym__newline] = ACTIONS(2102), + [anon_sym_COMMA] = ACTIONS(2102), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2001), + [sym__semicolon] = ACTIONS(2102), }, - [794] = { - [aux_sym_global_statement_repeat1] = STATE(794), - [sym__newline] = ACTIONS(2001), - [anon_sym_COMMA] = ACTIONS(2003), + [848] = { + [aux_sym_global_statement_repeat1] = STATE(848), + [sym__newline] = ACTIONS(2102), + [anon_sym_COMMA] = ACTIONS(2104), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2001), + [sym__semicolon] = ACTIONS(2102), }, - [795] = { - [aux_sym_print_statement_repeat1] = STATE(1168), - [sym__newline] = ACTIONS(2006), - [anon_sym_COMMA] = ACTIONS(494), - [anon_sym_if] = ACTIONS(456), - [anon_sym_and] = ACTIONS(458), - [anon_sym_or] = ACTIONS(460), + [849] = { + [aux_sym_print_statement_repeat1] = STATE(1244), + [sym__newline] = ACTIONS(2107), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_if] = ACTIONS(470), + [anon_sym_and] = ACTIONS(472), + [anon_sym_or] = ACTIONS(474), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2006), + [sym__semicolon] = ACTIONS(2107), }, - [796] = { - [aux_sym_argument_list_repeat1] = STATE(1051), - [anon_sym_RPAREN] = ACTIONS(1732), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [850] = { + [aux_sym_argument_list_repeat1] = STATE(1109), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [797] = { - [ts_builtin_sym_end] = ACTIONS(2008), - [anon_sym_import] = ACTIONS(2010), - [anon_sym_from] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2008), - [anon_sym_print] = ACTIONS(2010), - [anon_sym_assert] = ACTIONS(2010), - [anon_sym_return] = ACTIONS(2010), - [anon_sym_del] = ACTIONS(2010), - [anon_sym_raise] = ACTIONS(2010), - [sym_pass_statement] = ACTIONS(2010), - [sym_break_statement] = ACTIONS(2010), - [sym_continue_statement] = ACTIONS(2010), - [anon_sym_if] = ACTIONS(2010), - [anon_sym_for] = ACTIONS(2010), - [anon_sym_while] = ACTIONS(2010), - [anon_sym_try] = ACTIONS(2010), - [anon_sym_with] = ACTIONS(2010), - [anon_sym_async] = ACTIONS(2010), - [anon_sym_def] = ACTIONS(2010), - [anon_sym_global] = ACTIONS(2010), - [anon_sym_nonlocal] = ACTIONS(2010), - [anon_sym_exec] = ACTIONS(2010), - [anon_sym_class] = ACTIONS(2010), - [anon_sym_AT] = ACTIONS(2008), - [anon_sym_not] = ACTIONS(2010), - [anon_sym_PLUS] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2008), - [anon_sym_lambda] = ACTIONS(2010), - [anon_sym_yield] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2008), - [sym_ellipsis] = ACTIONS(2008), - [anon_sym_LBRACE] = ACTIONS(2008), - [sym_string] = ACTIONS(2010), - [sym_integer] = ACTIONS(2010), - [sym_float] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2012), - [sym_true] = ACTIONS(2010), - [sym_false] = ACTIONS(2010), - [sym_none] = ACTIONS(2010), - [anon_sym_await] = ACTIONS(2010), + [851] = { + [ts_builtin_sym_end] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_from] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_print] = ACTIONS(2111), + [anon_sym_assert] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_del] = ACTIONS(2111), + [anon_sym_raise] = ACTIONS(2111), + [sym_pass_statement] = ACTIONS(2111), + [sym_break_statement] = ACTIONS(2111), + [sym_continue_statement] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_def] = ACTIONS(2111), + [anon_sym_global] = ACTIONS(2111), + [anon_sym_nonlocal] = ACTIONS(2111), + [anon_sym_exec] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_not] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_lambda] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2109), + [sym_ellipsis] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [sym_string] = ACTIONS(2111), + [sym_integer] = ACTIONS(2111), + [sym_float] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2113), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_none] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), [sym_comment] = ACTIONS(76), }, - [798] = { - [sym__simple_statements] = STATE(768), + [852] = { + [sym__simple_statements] = STATE(822), [sym_import_statement] = STATE(10), [sym_import_from_statement] = STATE(10), [sym_print_statement] = STATE(10), @@ -31768,7 +33062,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_global_statement] = STATE(10), [sym_nonlocal_statement] = STATE(10), [sym_exec_statement] = STATE(10), - [sym__suite] = STATE(1169), + [sym__suite] = STATE(1245), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -31796,7 +33090,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(1273), + [sym__indent] = ACTIONS(1333), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -31830,48 +33124,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [799] = { - [aux_sym_dotted_name_repeat1] = STATE(799), - [sym__newline] = ACTIONS(1639), - [anon_sym_DOT] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1639), + [853] = { + [sym__newline] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), [sym_comment] = ACTIONS(76), }, - [800] = { - [aux_sym_argument_list_repeat1] = STATE(974), - [anon_sym_RPAREN] = ACTIONS(1567), - [anon_sym_COMMA] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [854] = { + [aux_sym_dotted_name_repeat1] = STATE(854), + [sym__newline] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(1705), [sym_comment] = ACTIONS(76), }, - [801] = { - [anon_sym_async] = ACTIONS(2014), - [anon_sym_def] = ACTIONS(2014), - [anon_sym_class] = ACTIONS(2014), - [anon_sym_AT] = ACTIONS(2014), + [855] = { + [sym__newline] = ACTIONS(1629), [sym_comment] = ACTIONS(76), }, - [802] = { - [anon_sym_COMMA] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_COLON] = ACTIONS(2016), - [anon_sym_and] = ACTIONS(1311), - [anon_sym_or] = ACTIONS(1313), + [856] = { + [anon_sym_RPAREN] = ACTIONS(2118), [sym_comment] = ACTIONS(76), }, - [803] = { - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_and] = ACTIONS(1311), - [anon_sym_or] = ACTIONS(1313), + [857] = { + [aux_sym_argument_list_repeat1] = STATE(1248), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), [sym_comment] = ACTIONS(76), }, - [804] = { - [sym__expression] = STATE(1170), - [sym__primary_expression] = STATE(415), + [858] = { + [aux_sym_argument_list_repeat1] = STATE(1248), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), + [sym_comment] = ACTIONS(76), + }, + [859] = { + [anon_sym_async] = ACTIONS(2122), + [anon_sym_def] = ACTIONS(2122), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2122), + [sym_comment] = ACTIONS(76), + }, + [860] = { + [anon_sym_COMMA] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(2124), + [anon_sym_and] = ACTIONS(1377), + [anon_sym_or] = ACTIONS(1379), + [sym_comment] = ACTIONS(76), + }, + [861] = { + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_COLON] = ACTIONS(726), + [anon_sym_and] = ACTIONS(1377), + [anon_sym_or] = ACTIONS(1379), + [sym_comment] = ACTIONS(76), + }, + [862] = { + [sym__expression] = STATE(1249), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -31896,66 +33210,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [805] = { - [anon_sym_COLON] = ACTIONS(2018), + [863] = { + [anon_sym_COLON] = ACTIONS(2126), [sym_comment] = ACTIONS(76), }, - [806] = { - [aux_sym_concatenated_string_repeat1] = STATE(1172), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [864] = { + [aux_sym_concatenated_string_repeat1] = STATE(1251), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_COLON] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [807] = { - [sym__expression] = STATE(1173), - [sym__primary_expression] = STATE(509), + [865] = { + [sym__expression] = STATE(1252), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -31980,27 +33294,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [808] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(415), + [866] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -32025,27 +33339,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [809] = { - [sym__expression] = STATE(1174), - [sym__primary_expression] = STATE(415), + [867] = { + [sym__expression] = STATE(1253), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -32070,26 +33384,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [810] = { - [sym__primary_expression] = STATE(1175), + [868] = { + [sym__primary_expression] = STATE(1254), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -32108,13 +33422,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -32123,8 +33437,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [811] = { - [sym__primary_expression] = STATE(1176), + [869] = { + [sym__primary_expression] = STATE(1255), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -32143,13 +33457,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -32158,8 +33472,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [812] = { - [sym__primary_expression] = STATE(1177), + [870] = { + [sym__primary_expression] = STATE(1256), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -32178,13 +33492,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -32193,12 +33507,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [813] = { - [anon_sym_in] = ACTIONS(2020), + [871] = { + [anon_sym_in] = ACTIONS(2128), [sym_comment] = ACTIONS(76), }, - [814] = { - [sym__primary_expression] = STATE(1179), + [872] = { + [sym__primary_expression] = STATE(1258), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -32217,13 +33531,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -32232,8 +33546,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [815] = { - [sym__primary_expression] = STATE(618), + [873] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -32252,13 +33566,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -32267,8 +33581,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [816] = { - [sym__primary_expression] = STATE(1180), + [874] = { + [sym__primary_expression] = STATE(1259), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -32287,13 +33601,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -32302,8 +33616,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [817] = { - [sym__primary_expression] = STATE(1181), + [875] = { + [sym__primary_expression] = STATE(1260), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -32322,13 +33636,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -32337,8 +33651,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [818] = { - [sym__primary_expression] = STATE(1182), + [876] = { + [sym__primary_expression] = STATE(1261), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -32357,13 +33671,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -32372,8 +33686,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [819] = { - [sym__primary_expression] = STATE(1177), + [877] = { + [sym__primary_expression] = STATE(1256), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -32392,14 +33706,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2022), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_not] = ACTIONS(2130), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -32408,51 +33722,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [820] = { - [aux_sym_comparison_operator_repeat1] = STATE(1183), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_COLON] = ACTIONS(900), - [anon_sym_in] = ACTIONS(1319), - [anon_sym_not] = ACTIONS(1321), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_LT_EQ] = ACTIONS(1319), - [anon_sym_EQ_EQ] = ACTIONS(1319), - [anon_sym_BANG_EQ] = ACTIONS(1319), - [anon_sym_GT_EQ] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_LT_GT] = ACTIONS(1319), - [anon_sym_is] = ACTIONS(1337), + [878] = { + [aux_sym_comparison_operator_repeat1] = STATE(1262), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_COLON] = ACTIONS(936), + [anon_sym_in] = ACTIONS(1385), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(1401), + [anon_sym_LT_EQ] = ACTIONS(1385), + [anon_sym_EQ_EQ] = ACTIONS(1385), + [anon_sym_BANG_EQ] = ACTIONS(1385), + [anon_sym_GT_EQ] = ACTIONS(1385), + [anon_sym_GT] = ACTIONS(1401), + [anon_sym_LT_GT] = ACTIONS(1385), + [anon_sym_is] = ACTIONS(1403), [sym_comment] = ACTIONS(76), }, - [821] = { - [anon_sym_COMMA] = ACTIONS(2024), - [anon_sym_COLON] = ACTIONS(2024), - [anon_sym_EQ] = ACTIONS(714), + [879] = { + [anon_sym_COMMA] = ACTIONS(2132), + [anon_sym_COLON] = ACTIONS(2132), + [anon_sym_EQ] = ACTIONS(750), [sym_comment] = ACTIONS(76), }, - [822] = { - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_COLON] = ACTIONS(2026), - [anon_sym_EQ] = ACTIONS(720), + [880] = { + [anon_sym_COMMA] = ACTIONS(2134), + [anon_sym_COLON] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(756), [sym_comment] = ACTIONS(76), }, - [823] = { - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_COLON] = ACTIONS(2026), + [881] = { + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_COMMA] = ACTIONS(2134), + [anon_sym_COLON] = ACTIONS(2134), [sym_comment] = ACTIONS(76), }, - [824] = { - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_COLON] = ACTIONS(2026), + [882] = { + [anon_sym_COMMA] = ACTIONS(2134), + [anon_sym_COLON] = ACTIONS(2134), [sym_comment] = ACTIONS(76), }, - [825] = { - [sym__expression] = STATE(1184), - [sym__primary_expression] = STATE(831), + [883] = { + [sym__expression] = STATE(1263), + [sym__primary_expression] = STATE(889), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -32477,26 +33791,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_lambda] = ACTIONS(1349), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_lambda] = ACTIONS(1415), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1353), + [anon_sym_await] = ACTIONS(1419), [sym_comment] = ACTIONS(76), }, - [826] = { - [sym__primary_expression] = STATE(210), + [884] = { + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -32515,13 +33829,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -32530,60 +33844,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [827] = { - [sym_lambda_parameters] = STATE(1186), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2028), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [885] = { + [sym_lambda_parameters] = STATE(1265), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(2136), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [828] = { - [aux_sym_concatenated_string_repeat1] = STATE(1187), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_EQ] = ACTIONS(238), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [886] = { + [aux_sym_concatenated_string_repeat1] = STATE(1266), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(252), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [829] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(831), + [887] = { + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(889), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -32608,102 +33922,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_lambda] = ACTIONS(1349), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_lambda] = ACTIONS(1415), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1353), + [anon_sym_await] = ACTIONS(1419), [sym_comment] = ACTIONS(76), }, - [830] = { - [anon_sym_if] = ACTIONS(2030), - [anon_sym_EQ] = ACTIONS(2032), - [anon_sym_and] = ACTIONS(2034), - [anon_sym_or] = ACTIONS(2036), + [888] = { + [anon_sym_if] = ACTIONS(2138), + [anon_sym_EQ] = ACTIONS(2140), + [anon_sym_and] = ACTIONS(2142), + [anon_sym_or] = ACTIONS(2144), [sym_comment] = ACTIONS(76), }, - [831] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(1201), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_GT_GT] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(296), - [anon_sym_in] = ACTIONS(2042), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_not] = ACTIONS(2044), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_SLASH] = ACTIONS(2038), - [anon_sym_PERCENT] = ACTIONS(2048), - [anon_sym_SLASH_SLASH] = ACTIONS(2048), - [anon_sym_STAR_STAR] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_CARET] = ACTIONS(2056), - [anon_sym_LT_LT] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2042), - [anon_sym_EQ_EQ] = ACTIONS(2042), - [anon_sym_BANG_EQ] = ACTIONS(2042), - [anon_sym_GT_EQ] = ACTIONS(2042), - [anon_sym_GT] = ACTIONS(2058), - [anon_sym_LT_GT] = ACTIONS(2042), - [anon_sym_is] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(434), + [889] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(1280), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2146), + [anon_sym_GT_GT] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(310), + [anon_sym_in] = ACTIONS(2150), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_not] = ACTIONS(2152), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2154), + [anon_sym_SLASH] = ACTIONS(2146), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_SLASH_SLASH] = ACTIONS(2156), + [anon_sym_STAR_STAR] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_LT_EQ] = ACTIONS(2150), + [anon_sym_EQ_EQ] = ACTIONS(2150), + [anon_sym_BANG_EQ] = ACTIONS(2150), + [anon_sym_GT_EQ] = ACTIONS(2150), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_LT_GT] = ACTIONS(2150), + [anon_sym_is] = ACTIONS(2168), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [832] = { - [anon_sym_EQ] = ACTIONS(2062), + [890] = { + [anon_sym_EQ] = ACTIONS(2170), [sym_comment] = ACTIONS(76), }, - [833] = { - [anon_sym_COMMA] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_COLON] = ACTIONS(2064), - [anon_sym_and] = ACTIONS(1311), - [anon_sym_or] = ACTIONS(1313), + [891] = { + [anon_sym_COMMA] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(2172), + [anon_sym_and] = ACTIONS(1377), + [anon_sym_or] = ACTIONS(1379), [sym_comment] = ACTIONS(76), }, - [834] = { - [sym_default_parameter] = STATE(823), - [sym_typed_default_parameter] = STATE(823), - [sym_list_splat] = STATE(824), - [sym_dictionary_splat] = STATE(824), - [sym_typed_parameter] = STATE(823), - [sym_tuple] = STATE(823), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(1339), - [anon_sym_COLON] = ACTIONS(2066), - [anon_sym_exec] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1343), + [892] = { + [sym_default_parameter] = STATE(881), + [sym_typed_default_parameter] = STATE(881), + [sym_list_splat] = STATE(882), + [sym_dictionary_splat] = STATE(882), + [sym_typed_parameter] = STATE(881), + [sym_tuple] = STATE(881), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(1405), + [anon_sym_COLON] = ACTIONS(2174), + [anon_sym_exec] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1409), [sym_comment] = ACTIONS(76), }, - [835] = { - [aux_sym__parameters_repeat1] = STATE(835), - [anon_sym_COMMA] = ACTIONS(2068), - [anon_sym_COLON] = ACTIONS(2026), + [893] = { + [aux_sym__parameters_repeat1] = STATE(893), + [anon_sym_COMMA] = ACTIONS(2176), + [anon_sym_COLON] = ACTIONS(2134), [sym_comment] = ACTIONS(76), }, - [836] = { - [sym__expression] = STATE(1204), - [sym__primary_expression] = STATE(842), + [894] = { + [sym__expression] = STATE(1283), + [sym__primary_expression] = STATE(900), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -32728,26 +34042,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_lambda] = ACTIONS(1365), + [anon_sym_not] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), + [anon_sym_lambda] = ACTIONS(1431), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1435), [sym_comment] = ACTIONS(76), }, - [837] = { - [sym__primary_expression] = STATE(210), + [895] = { + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -32766,13 +34080,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -32781,62 +34095,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [838] = { - [sym_lambda_parameters] = STATE(1206), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2071), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [896] = { + [sym_lambda_parameters] = STATE(1285), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(2179), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [839] = { - [aux_sym_concatenated_string_repeat1] = STATE(1207), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_COLON] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_EQ] = ACTIONS(238), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [897] = { + [aux_sym_concatenated_string_repeat1] = STATE(1286), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_COLON] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(252), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [840] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(842), + [898] = { + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(900), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -32861,146 +34175,146 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_lambda] = ACTIONS(1365), + [anon_sym_not] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), + [anon_sym_lambda] = ACTIONS(1431), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1435), [sym_comment] = ACTIONS(76), }, - [841] = { - [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_COLON] = ACTIONS(2032), - [anon_sym_EQ] = ACTIONS(2032), - [anon_sym_and] = ACTIONS(2075), - [anon_sym_or] = ACTIONS(2077), + [899] = { + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_COLON] = ACTIONS(2140), + [anon_sym_EQ] = ACTIONS(2140), + [anon_sym_and] = ACTIONS(2183), + [anon_sym_or] = ACTIONS(2185), [sym_comment] = ACTIONS(76), }, - [842] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(1221), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_GT_GT] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(296), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_in] = ACTIONS(2083), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_not] = ACTIONS(2085), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_SLASH] = ACTIONS(2079), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(2089), - [anon_sym_STAR_STAR] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym_LT_EQ] = ACTIONS(2083), - [anon_sym_EQ_EQ] = ACTIONS(2083), - [anon_sym_BANG_EQ] = ACTIONS(2083), - [anon_sym_GT_EQ] = ACTIONS(2083), - [anon_sym_GT] = ACTIONS(2099), - [anon_sym_LT_GT] = ACTIONS(2083), - [anon_sym_is] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(434), + [900] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(1300), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(310), + [anon_sym_COLON] = ACTIONS(310), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_not] = ACTIONS(2193), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2197), + [anon_sym_SLASH_SLASH] = ACTIONS(2197), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_CARET] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2207), + [anon_sym_LT_GT] = ACTIONS(2191), + [anon_sym_is] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [843] = { - [anon_sym_COMMA] = ACTIONS(2103), - [anon_sym_COLON] = ACTIONS(2103), - [anon_sym_EQ] = ACTIONS(2105), + [901] = { + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_COLON] = ACTIONS(2211), + [anon_sym_EQ] = ACTIONS(2213), [sym_comment] = ACTIONS(76), }, - [844] = { - [anon_sym_COMMA] = ACTIONS(2107), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_COLON] = ACTIONS(2107), - [anon_sym_and] = ACTIONS(1311), - [anon_sym_or] = ACTIONS(1313), + [902] = { + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(2215), + [anon_sym_and] = ACTIONS(1377), + [anon_sym_or] = ACTIONS(1379), [sym_comment] = ACTIONS(76), }, - [845] = { - [sym_default_parameter] = STATE(823), - [sym_typed_default_parameter] = STATE(823), - [sym_list_splat] = STATE(824), - [sym_dictionary_splat] = STATE(824), - [sym_typed_parameter] = STATE(823), - [sym_tuple] = STATE(823), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(1339), - [anon_sym_COLON] = ACTIONS(2109), - [anon_sym_exec] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1343), + [903] = { + [sym_default_parameter] = STATE(881), + [sym_typed_default_parameter] = STATE(881), + [sym_list_splat] = STATE(882), + [sym_dictionary_splat] = STATE(882), + [sym_typed_parameter] = STATE(881), + [sym_tuple] = STATE(881), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(1405), + [anon_sym_COLON] = ACTIONS(2217), + [anon_sym_exec] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1409), [sym_comment] = ACTIONS(76), }, - [846] = { - [sym__newline] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(288), - [anon_sym_EQ] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(292), - [anon_sym_or] = ACTIONS(294), - [anon_sym_PLUS_EQ] = ACTIONS(2111), - [anon_sym_DASH_EQ] = ACTIONS(2111), - [anon_sym_STAR_EQ] = ACTIONS(2111), - [anon_sym_SLASH_EQ] = ACTIONS(2111), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2111), - [anon_sym_PERCENT_EQ] = ACTIONS(2111), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2111), - [anon_sym_GT_GT_EQ] = ACTIONS(2111), - [anon_sym_LT_LT_EQ] = ACTIONS(2111), - [anon_sym_AMP_EQ] = ACTIONS(2111), - [anon_sym_CARET_EQ] = ACTIONS(2111), - [anon_sym_PIPE_EQ] = ACTIONS(2111), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2111), + [904] = { + [sym__newline] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(302), + [anon_sym_EQ] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(306), + [anon_sym_or] = ACTIONS(308), + [anon_sym_PLUS_EQ] = ACTIONS(2219), + [anon_sym_DASH_EQ] = ACTIONS(2219), + [anon_sym_STAR_EQ] = ACTIONS(2219), + [anon_sym_SLASH_EQ] = ACTIONS(2219), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2219), + [anon_sym_PERCENT_EQ] = ACTIONS(2219), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2219), + [anon_sym_GT_GT_EQ] = ACTIONS(2219), + [anon_sym_LT_LT_EQ] = ACTIONS(2219), + [anon_sym_AMP_EQ] = ACTIONS(2219), + [anon_sym_CARET_EQ] = ACTIONS(2219), + [anon_sym_PIPE_EQ] = ACTIONS(2219), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2219), }, - [847] = { - [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_COLON] = ACTIONS(2032), - [anon_sym_and] = ACTIONS(1311), - [anon_sym_or] = ACTIONS(1313), + [905] = { + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(2140), + [anon_sym_and] = ACTIONS(1377), + [anon_sym_or] = ACTIONS(1379), [sym_comment] = ACTIONS(76), }, - [848] = { - [anon_sym_RPAREN] = ACTIONS(2103), - [anon_sym_COMMA] = ACTIONS(2103), - [anon_sym_COLON] = ACTIONS(2103), + [906] = { + [anon_sym_RPAREN] = ACTIONS(2211), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_COLON] = ACTIONS(2211), [sym_comment] = ACTIONS(76), }, - [849] = { - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_and] = ACTIONS(1383), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_RBRACK] = ACTIONS(690), + [907] = { + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_and] = ACTIONS(1449), + [anon_sym_or] = ACTIONS(1451), + [anon_sym_RBRACK] = ACTIONS(726), [sym_comment] = ACTIONS(76), }, - [850] = { - [sym__expression] = STATE(1223), - [sym__primary_expression] = STATE(435), + [908] = { + [sym__expression] = STATE(1302), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -33025,66 +34339,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [851] = { - [anon_sym_COLON] = ACTIONS(2113), + [909] = { + [anon_sym_COLON] = ACTIONS(2221), [sym_comment] = ACTIONS(76), }, - [852] = { - [aux_sym_concatenated_string_repeat1] = STATE(1225), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_RBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [910] = { + [aux_sym_concatenated_string_repeat1] = STATE(1304), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_RBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [853] = { - [sym__expression] = STATE(1226), - [sym__primary_expression] = STATE(509), + [911] = { + [sym__expression] = STATE(1305), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -33109,27 +34423,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [854] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(435), + [912] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -33154,27 +34468,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [855] = { - [sym__expression] = STATE(1227), - [sym__primary_expression] = STATE(435), + [913] = { + [sym__expression] = STATE(1306), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -33199,26 +34513,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [856] = { - [sym__primary_expression] = STATE(1228), + [914] = { + [sym__primary_expression] = STATE(1307), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -33237,13 +34551,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -33252,8 +34566,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [857] = { - [sym__primary_expression] = STATE(1229), + [915] = { + [sym__primary_expression] = STATE(1308), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -33272,13 +34586,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -33287,8 +34601,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [858] = { - [sym__primary_expression] = STATE(1230), + [916] = { + [sym__primary_expression] = STATE(1309), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -33307,13 +34621,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -33322,12 +34636,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [859] = { - [anon_sym_in] = ACTIONS(2115), + [917] = { + [anon_sym_in] = ACTIONS(2223), [sym_comment] = ACTIONS(76), }, - [860] = { - [sym__primary_expression] = STATE(1232), + [918] = { + [sym__primary_expression] = STATE(1311), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -33346,13 +34660,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -33361,8 +34675,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [861] = { - [sym__primary_expression] = STATE(618), + [919] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -33381,13 +34695,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -33396,8 +34710,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [862] = { - [sym__primary_expression] = STATE(1233), + [920] = { + [sym__primary_expression] = STATE(1312), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -33416,13 +34730,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -33431,8 +34745,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [863] = { - [sym__primary_expression] = STATE(1234), + [921] = { + [sym__primary_expression] = STATE(1313), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -33451,13 +34765,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -33466,8 +34780,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [864] = { - [sym__primary_expression] = STATE(1235), + [922] = { + [sym__primary_expression] = STATE(1314), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -33486,13 +34800,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -33501,8 +34815,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [865] = { - [sym__primary_expression] = STATE(1230), + [923] = { + [sym__primary_expression] = STATE(1309), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -33521,14 +34835,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_not] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -33537,37 +34851,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [866] = { - [aux_sym_comparison_operator_repeat1] = STATE(1236), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_in] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1393), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1407), - [anon_sym_LT_GT] = ACTIONS(1391), - [anon_sym_is] = ACTIONS(1409), - [anon_sym_RBRACK] = ACTIONS(900), + [924] = { + [aux_sym_comparison_operator_repeat1] = STATE(1315), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_in] = ACTIONS(1457), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT_GT] = ACTIONS(1457), + [anon_sym_is] = ACTIONS(1475), + [anon_sym_RBRACK] = ACTIONS(936), [sym_comment] = ACTIONS(76), }, - [867] = { - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(748), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(752), - [anon_sym_or] = ACTIONS(754), - [anon_sym_RBRACK] = ACTIONS(1357), + [925] = { + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(784), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(788), + [anon_sym_or] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(1423), [sym_comment] = ACTIONS(76), }, - [868] = { - [sym__expression] = STATE(1237), - [sym__primary_expression] = STATE(152), + [926] = { + [sym__expression] = STATE(1316), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -33592,125 +34906,125 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lambda] = ACTIONS(228), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(242), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(234), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, - [869] = { - [aux_sym_concatenated_string_repeat1] = STATE(869), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_RBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [927] = { + [aux_sym_concatenated_string_repeat1] = STATE(927), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_RBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [870] = { - [sym__newline] = ACTIONS(2119), - [anon_sym_DOT] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_GT_GT] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_in] = ACTIONS(2119), - [anon_sym_EQ] = ACTIONS(2121), - [anon_sym_not] = ACTIONS(2119), - [anon_sym_and] = ACTIONS(2119), - [anon_sym_or] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_PERCENT] = ACTIONS(2121), - [anon_sym_SLASH_SLASH] = ACTIONS(2121), - [anon_sym_STAR_STAR] = ACTIONS(2121), - [anon_sym_PIPE] = ACTIONS(2121), - [anon_sym_AMP] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2121), - [anon_sym_LT_LT] = ACTIONS(2121), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_LT_EQ] = ACTIONS(2119), - [anon_sym_EQ_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2119), - [anon_sym_GT] = ACTIONS(2121), - [anon_sym_LT_GT] = ACTIONS(2119), - [anon_sym_is] = ACTIONS(2119), - [anon_sym_PLUS_EQ] = ACTIONS(2119), - [anon_sym_DASH_EQ] = ACTIONS(2119), - [anon_sym_STAR_EQ] = ACTIONS(2119), - [anon_sym_SLASH_EQ] = ACTIONS(2119), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2119), - [anon_sym_PERCENT_EQ] = ACTIONS(2119), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2119), - [anon_sym_GT_GT_EQ] = ACTIONS(2119), - [anon_sym_LT_LT_EQ] = ACTIONS(2119), - [anon_sym_AMP_EQ] = ACTIONS(2119), - [anon_sym_CARET_EQ] = ACTIONS(2119), - [anon_sym_PIPE_EQ] = ACTIONS(2119), - [anon_sym_LBRACK] = ACTIONS(2119), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2119), + [928] = { + [sym__newline] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_COMMA] = ACTIONS(2227), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_GT_GT] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_in] = ACTIONS(2227), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2227), + [anon_sym_and] = ACTIONS(2227), + [anon_sym_or] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_PERCENT] = ACTIONS(2229), + [anon_sym_SLASH_SLASH] = ACTIONS(2229), + [anon_sym_STAR_STAR] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [anon_sym_LT_LT] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ] = ACTIONS(2227), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_GT] = ACTIONS(2229), + [anon_sym_LT_GT] = ACTIONS(2227), + [anon_sym_is] = ACTIONS(2227), + [anon_sym_PLUS_EQ] = ACTIONS(2227), + [anon_sym_DASH_EQ] = ACTIONS(2227), + [anon_sym_STAR_EQ] = ACTIONS(2227), + [anon_sym_SLASH_EQ] = ACTIONS(2227), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2227), + [anon_sym_PERCENT_EQ] = ACTIONS(2227), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2227), + [anon_sym_GT_GT_EQ] = ACTIONS(2227), + [anon_sym_LT_LT_EQ] = ACTIONS(2227), + [anon_sym_AMP_EQ] = ACTIONS(2227), + [anon_sym_CARET_EQ] = ACTIONS(2227), + [anon_sym_PIPE_EQ] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2227), }, - [871] = { - [anon_sym_COMMA] = ACTIONS(2123), - [anon_sym_RBRACK] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2123), + [929] = { + [anon_sym_COMMA] = ACTIONS(2231), + [anon_sym_RBRACK] = ACTIONS(2231), + [anon_sym_RBRACE] = ACTIONS(2231), [sym_comment] = ACTIONS(76), }, - [872] = { - [anon_sym_COMMA] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_and] = ACTIONS(1383), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_RBRACK] = ACTIONS(2123), + [930] = { + [anon_sym_COMMA] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_and] = ACTIONS(1449), + [anon_sym_or] = ACTIONS(1451), + [anon_sym_RBRACK] = ACTIONS(2231), [sym_comment] = ACTIONS(76), }, - [873] = { - [sym_list_splat] = STATE(871), - [sym__expression] = STATE(872), - [sym__primary_expression] = STATE(435), + [931] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(930), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -33733,104 +35047,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(222), + [anon_sym_STAR] = ACTIONS(236), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(2125), + [anon_sym_RBRACK] = ACTIONS(2233), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [874] = { - [aux_sym_list_repeat1] = STATE(874), - [anon_sym_COMMA] = ACTIONS(2127), - [anon_sym_RBRACK] = ACTIONS(2123), + [932] = { + [aux_sym_list_repeat1] = STATE(932), + [anon_sym_COMMA] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2231), [sym_comment] = ACTIONS(76), }, - [875] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(2130), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [933] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(2238), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [876] = { - [anon_sym_in] = ACTIONS(2132), + [934] = { + [anon_sym_in] = ACTIONS(2240), [sym_comment] = ACTIONS(76), }, - [877] = { - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(752), - [anon_sym_or] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(1550), + [935] = { + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(788), + [anon_sym_or] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [878] = { - [sym__newline] = ACTIONS(2134), - [anon_sym_DOT] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2134), - [anon_sym_COMMA] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_GT_GT] = ACTIONS(2136), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_EQ] = ACTIONS(2136), - [anon_sym_not] = ACTIONS(2134), - [anon_sym_and] = ACTIONS(2134), - [anon_sym_or] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2136), - [anon_sym_SLASH] = ACTIONS(2136), - [anon_sym_PERCENT] = ACTIONS(2136), - [anon_sym_SLASH_SLASH] = ACTIONS(2136), - [anon_sym_STAR_STAR] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_LT_LT] = ACTIONS(2136), - [anon_sym_LT] = ACTIONS(2136), - [anon_sym_LT_EQ] = ACTIONS(2134), - [anon_sym_EQ_EQ] = ACTIONS(2134), - [anon_sym_BANG_EQ] = ACTIONS(2134), - [anon_sym_GT_EQ] = ACTIONS(2134), - [anon_sym_GT] = ACTIONS(2136), - [anon_sym_LT_GT] = ACTIONS(2134), - [anon_sym_is] = ACTIONS(2134), - [anon_sym_PLUS_EQ] = ACTIONS(2134), - [anon_sym_DASH_EQ] = ACTIONS(2134), - [anon_sym_STAR_EQ] = ACTIONS(2134), - [anon_sym_SLASH_EQ] = ACTIONS(2134), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2134), - [anon_sym_PERCENT_EQ] = ACTIONS(2134), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2134), - [anon_sym_GT_GT_EQ] = ACTIONS(2134), - [anon_sym_LT_LT_EQ] = ACTIONS(2134), - [anon_sym_AMP_EQ] = ACTIONS(2134), - [anon_sym_CARET_EQ] = ACTIONS(2134), - [anon_sym_PIPE_EQ] = ACTIONS(2134), - [anon_sym_LBRACK] = ACTIONS(2134), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2134), + [936] = { + [sym__newline] = ACTIONS(2242), + [anon_sym_DOT] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_COMMA] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_in] = ACTIONS(2242), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_not] = ACTIONS(2242), + [anon_sym_and] = ACTIONS(2242), + [anon_sym_or] = ACTIONS(2242), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2244), + [anon_sym_SLASH_SLASH] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2244), + [anon_sym_LT_LT] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2242), + [anon_sym_EQ_EQ] = ACTIONS(2242), + [anon_sym_BANG_EQ] = ACTIONS(2242), + [anon_sym_GT_EQ] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_LT_GT] = ACTIONS(2242), + [anon_sym_is] = ACTIONS(2242), + [anon_sym_PLUS_EQ] = ACTIONS(2242), + [anon_sym_DASH_EQ] = ACTIONS(2242), + [anon_sym_STAR_EQ] = ACTIONS(2242), + [anon_sym_SLASH_EQ] = ACTIONS(2242), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2242), + [anon_sym_PERCENT_EQ] = ACTIONS(2242), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2242), + [anon_sym_GT_GT_EQ] = ACTIONS(2242), + [anon_sym_LT_LT_EQ] = ACTIONS(2242), + [anon_sym_AMP_EQ] = ACTIONS(2242), + [anon_sym_CARET_EQ] = ACTIONS(2242), + [anon_sym_PIPE_EQ] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2242), }, - [879] = { - [sym__expression] = STATE(1247), - [sym__primary_expression] = STATE(1248), + [937] = { + [sym__expression] = STATE(1326), + [sym__primary_expression] = STATE(1327), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -33855,143 +35169,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_lambda] = ACTIONS(2142), + [anon_sym_not] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_lambda] = ACTIONS(2250), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2146), + [anon_sym_await] = ACTIONS(2254), [sym_comment] = ACTIONS(76), }, - [880] = { - [sym_for_in_clause] = STATE(604), - [sym_if_clause] = STATE(604), - [aux_sym__comprehension_body_repeat1] = STATE(1249), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(750), - [anon_sym_RBRACK] = ACTIONS(1725), + [938] = { + [sym_for_in_clause] = STATE(632), + [sym_if_clause] = STATE(632), + [aux_sym__comprehension_body_repeat1] = STATE(1328), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(786), + [anon_sym_RBRACK] = ACTIONS(1791), [sym_comment] = ACTIONS(76), }, - [881] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [939] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [882] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_PERCENT] = ACTIONS(766), - [anon_sym_SLASH_SLASH] = ACTIONS(766), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [940] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(792), + [anon_sym_PERCENT] = ACTIONS(802), + [anon_sym_SLASH_SLASH] = ACTIONS(802), + [anon_sym_STAR_STAR] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [883] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_GT_GT] = ACTIONS(758), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_PERCENT] = ACTIONS(766), - [anon_sym_SLASH_SLASH] = ACTIONS(766), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(758), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACK] = ACTIONS(1581), + [941] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(792), + [anon_sym_PERCENT] = ACTIONS(802), + [anon_sym_SLASH_SLASH] = ACTIONS(802), + [anon_sym_STAR_STAR] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACK] = ACTIONS(1647), [sym_comment] = ACTIONS(76), }, - [884] = { - [sym__primary_expression] = STATE(1250), + [942] = { + [sym__primary_expression] = STATE(1329), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -34010,13 +35324,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -34025,189 +35339,189 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [885] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_PERCENT] = ACTIONS(766), - [anon_sym_SLASH_SLASH] = ACTIONS(766), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [943] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(792), + [anon_sym_PERCENT] = ACTIONS(802), + [anon_sym_SLASH_SLASH] = ACTIONS(802), + [anon_sym_STAR_STAR] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [886] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_GT_GT] = ACTIONS(758), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_PERCENT] = ACTIONS(766), - [anon_sym_SLASH_SLASH] = ACTIONS(766), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(758), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [944] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(792), + [anon_sym_PERCENT] = ACTIONS(802), + [anon_sym_SLASH_SLASH] = ACTIONS(802), + [anon_sym_STAR_STAR] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [887] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_GT_GT] = ACTIONS(758), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_PERCENT] = ACTIONS(766), - [anon_sym_SLASH_SLASH] = ACTIONS(766), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(758), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [945] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(792), + [anon_sym_PERCENT] = ACTIONS(802), + [anon_sym_SLASH_SLASH] = ACTIONS(802), + [anon_sym_STAR_STAR] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [888] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_GT_GT] = ACTIONS(758), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_PERCENT] = ACTIONS(766), - [anon_sym_SLASH_SLASH] = ACTIONS(766), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(758), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [946] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(792), + [anon_sym_PERCENT] = ACTIONS(802), + [anon_sym_SLASH_SLASH] = ACTIONS(802), + [anon_sym_STAR_STAR] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [889] = { - [aux_sym_comparison_operator_repeat1] = STATE(889), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(2148), - [anon_sym_not] = ACTIONS(2151), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_LT_EQ] = ACTIONS(2148), - [anon_sym_EQ_EQ] = ACTIONS(2148), - [anon_sym_BANG_EQ] = ACTIONS(2148), - [anon_sym_GT_EQ] = ACTIONS(2148), - [anon_sym_GT] = ACTIONS(2154), - [anon_sym_LT_GT] = ACTIONS(2148), - [anon_sym_is] = ACTIONS(2157), - [anon_sym_RBRACK] = ACTIONS(1581), + [947] = { + [aux_sym_comparison_operator_repeat1] = STATE(947), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2259), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(2262), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_GT] = ACTIONS(2262), + [anon_sym_LT_GT] = ACTIONS(2256), + [anon_sym_is] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(1647), [sym_comment] = ACTIONS(76), }, - [890] = { - [anon_sym_COMMA] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_and] = ACTIONS(1433), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(2016), + [948] = { + [anon_sym_COMMA] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1499), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(2124), [sym_comment] = ACTIONS(76), }, - [891] = { - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_and] = ACTIONS(1433), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(690), + [949] = { + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_and] = ACTIONS(1499), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(726), [sym_comment] = ACTIONS(76), }, - [892] = { - [sym__expression] = STATE(1251), - [sym__primary_expression] = STATE(467), + [950] = { + [sym__expression] = STATE(1330), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -34232,66 +35546,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [893] = { - [anon_sym_COLON] = ACTIONS(2160), + [951] = { + [anon_sym_COLON] = ACTIONS(2268), [sym_comment] = ACTIONS(76), }, - [894] = { - [aux_sym_concatenated_string_repeat1] = STATE(1253), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [952] = { + [aux_sym_concatenated_string_repeat1] = STATE(1332), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_RBRACE] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [895] = { - [sym__expression] = STATE(1254), - [sym__primary_expression] = STATE(509), + [953] = { + [sym__expression] = STATE(1333), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -34316,27 +35630,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [896] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(467), + [954] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -34361,27 +35675,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [897] = { - [sym__expression] = STATE(1255), - [sym__primary_expression] = STATE(467), + [955] = { + [sym__expression] = STATE(1334), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -34406,26 +35720,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [898] = { - [sym__primary_expression] = STATE(1256), + [956] = { + [sym__primary_expression] = STATE(1335), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -34444,13 +35758,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -34459,8 +35773,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [899] = { - [sym__primary_expression] = STATE(1257), + [957] = { + [sym__primary_expression] = STATE(1336), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -34479,13 +35793,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -34494,8 +35808,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [900] = { - [sym__primary_expression] = STATE(1258), + [958] = { + [sym__primary_expression] = STATE(1337), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -34514,13 +35828,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -34529,12 +35843,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [901] = { - [anon_sym_in] = ACTIONS(2162), + [959] = { + [anon_sym_in] = ACTIONS(2270), [sym_comment] = ACTIONS(76), }, - [902] = { - [sym__primary_expression] = STATE(1260), + [960] = { + [sym__primary_expression] = STATE(1339), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -34553,13 +35867,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -34568,8 +35882,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [903] = { - [sym__primary_expression] = STATE(618), + [961] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -34588,13 +35902,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -34603,8 +35917,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [904] = { - [sym__primary_expression] = STATE(1261), + [962] = { + [sym__primary_expression] = STATE(1340), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -34623,13 +35937,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -34638,8 +35952,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [905] = { - [sym__primary_expression] = STATE(1262), + [963] = { + [sym__primary_expression] = STATE(1341), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -34658,13 +35972,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -34673,8 +35987,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [906] = { - [sym__primary_expression] = STATE(1263), + [964] = { + [sym__primary_expression] = STATE(1342), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -34693,13 +36007,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -34708,8 +36022,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [907] = { - [sym__primary_expression] = STATE(1258), + [965] = { + [sym__primary_expression] = STATE(1337), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -34728,14 +36042,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_not] = ACTIONS(2272), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -34744,38 +36058,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [908] = { - [aux_sym_comparison_operator_repeat1] = STATE(1264), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_in] = ACTIONS(1441), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT_GT] = ACTIONS(1441), - [anon_sym_is] = ACTIONS(1459), - [anon_sym_RBRACE] = ACTIONS(900), + [966] = { + [aux_sym_comparison_operator_repeat1] = STATE(1343), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_in] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_GT] = ACTIONS(1507), + [anon_sym_is] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(936), [sym_comment] = ACTIONS(76), }, - [909] = { - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(806), - [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(812), - [anon_sym_or] = ACTIONS(814), - [anon_sym_RBRACE] = ACTIONS(1357), + [967] = { + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(842), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(848), + [anon_sym_or] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(1423), [sym_comment] = ACTIONS(76), }, - [910] = { - [sym__expression] = STATE(1265), - [sym__primary_expression] = STATE(164), + [968] = { + [sym__expression] = STATE(1344), + [sym__primary_expression] = STATE(170), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -34800,64 +36114,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_lambda] = ACTIONS(248), + [anon_sym_not] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(254), + [anon_sym_await] = ACTIONS(268), [sym_comment] = ACTIONS(76), }, - [911] = { - [aux_sym_concatenated_string_repeat1] = STATE(911), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [969] = { + [aux_sym_concatenated_string_repeat1] = STATE(969), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_COLON] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [912] = { - [sym__expression] = STATE(466), - [sym__primary_expression] = STATE(467), + [970] = { + [sym__expression] = STATE(494), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -34880,87 +36194,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_COMMA] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(732), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(696), - [sym_string] = ACTIONS(790), + [anon_sym_RBRACE] = ACTIONS(732), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [913] = { - [sym__newline] = ACTIONS(2166), - [anon_sym_DOT] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2168), - [anon_sym_GT_GT] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_in] = ACTIONS(2166), - [anon_sym_EQ] = ACTIONS(2168), - [anon_sym_not] = ACTIONS(2166), - [anon_sym_and] = ACTIONS(2166), - [anon_sym_or] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_PERCENT] = ACTIONS(2168), - [anon_sym_SLASH_SLASH] = ACTIONS(2168), - [anon_sym_STAR_STAR] = ACTIONS(2168), - [anon_sym_PIPE] = ACTIONS(2168), - [anon_sym_AMP] = ACTIONS(2168), - [anon_sym_CARET] = ACTIONS(2168), - [anon_sym_LT_LT] = ACTIONS(2168), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_LT_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ] = ACTIONS(2166), - [anon_sym_GT_EQ] = ACTIONS(2166), - [anon_sym_GT] = ACTIONS(2168), - [anon_sym_LT_GT] = ACTIONS(2166), - [anon_sym_is] = ACTIONS(2166), - [anon_sym_PLUS_EQ] = ACTIONS(2166), - [anon_sym_DASH_EQ] = ACTIONS(2166), - [anon_sym_STAR_EQ] = ACTIONS(2166), - [anon_sym_SLASH_EQ] = ACTIONS(2166), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2166), - [anon_sym_PERCENT_EQ] = ACTIONS(2166), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2166), - [anon_sym_GT_GT_EQ] = ACTIONS(2166), - [anon_sym_LT_LT_EQ] = ACTIONS(2166), - [anon_sym_AMP_EQ] = ACTIONS(2166), - [anon_sym_CARET_EQ] = ACTIONS(2166), - [anon_sym_PIPE_EQ] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2166), + [971] = { + [sym__newline] = ACTIONS(2274), + [anon_sym_DOT] = ACTIONS(2274), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_COMMA] = ACTIONS(2274), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_GT_GT] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(2276), + [anon_sym_not] = ACTIONS(2274), + [anon_sym_and] = ACTIONS(2274), + [anon_sym_or] = ACTIONS(2274), + [anon_sym_PLUS] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_PERCENT] = ACTIONS(2276), + [anon_sym_SLASH_SLASH] = ACTIONS(2276), + [anon_sym_STAR_STAR] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2276), + [anon_sym_CARET] = ACTIONS(2276), + [anon_sym_LT_LT] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_LT_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ] = ACTIONS(2274), + [anon_sym_GT_EQ] = ACTIONS(2274), + [anon_sym_GT] = ACTIONS(2276), + [anon_sym_LT_GT] = ACTIONS(2274), + [anon_sym_is] = ACTIONS(2274), + [anon_sym_PLUS_EQ] = ACTIONS(2274), + [anon_sym_DASH_EQ] = ACTIONS(2274), + [anon_sym_STAR_EQ] = ACTIONS(2274), + [anon_sym_SLASH_EQ] = ACTIONS(2274), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2274), + [anon_sym_PERCENT_EQ] = ACTIONS(2274), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2274), + [anon_sym_GT_GT_EQ] = ACTIONS(2274), + [anon_sym_LT_LT_EQ] = ACTIONS(2274), + [anon_sym_AMP_EQ] = ACTIONS(2274), + [anon_sym_CARET_EQ] = ACTIONS(2274), + [anon_sym_PIPE_EQ] = ACTIONS(2274), + [anon_sym_LBRACK] = ACTIONS(2274), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2274), }, - [914] = { - [anon_sym_COMMA] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_and] = ACTIONS(1433), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(2123), + [972] = { + [anon_sym_COMMA] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1499), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(2231), [sym_comment] = ACTIONS(76), }, - [915] = { - [sym_list_splat] = STATE(871), - [sym__expression] = STATE(914), - [sym__primary_expression] = STATE(467), + [973] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(972), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -34983,101 +36297,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1529), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(2170), - [sym_string] = ACTIONS(790), + [anon_sym_RBRACE] = ACTIONS(2278), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [916] = { - [aux_sym_list_repeat1] = STATE(916), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2123), + [974] = { + [aux_sym_list_repeat1] = STATE(974), + [anon_sym_COMMA] = ACTIONS(2280), + [anon_sym_RBRACE] = ACTIONS(2231), [sym_comment] = ACTIONS(76), }, - [917] = { - [anon_sym_STAR] = ACTIONS(782), + [975] = { + [anon_sym_STAR] = ACTIONS(818), [sym_comment] = ACTIONS(76), }, - [918] = { - [sym__newline] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2175), - [anon_sym_EQ] = ACTIONS(2177), - [anon_sym_not] = ACTIONS(2175), - [anon_sym_and] = ACTIONS(2175), - [anon_sym_or] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_SLASH] = ACTIONS(2177), - [anon_sym_PERCENT] = ACTIONS(2177), - [anon_sym_SLASH_SLASH] = ACTIONS(2177), - [anon_sym_STAR_STAR] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2177), - [anon_sym_LT_GT] = ACTIONS(2175), - [anon_sym_is] = ACTIONS(2175), - [anon_sym_PLUS_EQ] = ACTIONS(2175), - [anon_sym_DASH_EQ] = ACTIONS(2175), - [anon_sym_STAR_EQ] = ACTIONS(2175), - [anon_sym_SLASH_EQ] = ACTIONS(2175), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2175), - [anon_sym_PERCENT_EQ] = ACTIONS(2175), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2175), - [anon_sym_GT_GT_EQ] = ACTIONS(2175), - [anon_sym_LT_LT_EQ] = ACTIONS(2175), - [anon_sym_AMP_EQ] = ACTIONS(2175), - [anon_sym_CARET_EQ] = ACTIONS(2175), - [anon_sym_PIPE_EQ] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2175), + [976] = { + [sym__newline] = ACTIONS(2283), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_COMMA] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2283), + [anon_sym_in] = ACTIONS(2283), + [anon_sym_EQ] = ACTIONS(2285), + [anon_sym_not] = ACTIONS(2283), + [anon_sym_and] = ACTIONS(2283), + [anon_sym_or] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2285), + [anon_sym_SLASH_SLASH] = ACTIONS(2285), + [anon_sym_STAR_STAR] = ACTIONS(2285), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_LT_GT] = ACTIONS(2283), + [anon_sym_is] = ACTIONS(2283), + [anon_sym_PLUS_EQ] = ACTIONS(2283), + [anon_sym_DASH_EQ] = ACTIONS(2283), + [anon_sym_STAR_EQ] = ACTIONS(2283), + [anon_sym_SLASH_EQ] = ACTIONS(2283), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2283), + [anon_sym_PERCENT_EQ] = ACTIONS(2283), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2283), + [anon_sym_GT_GT_EQ] = ACTIONS(2283), + [anon_sym_LT_LT_EQ] = ACTIONS(2283), + [anon_sym_AMP_EQ] = ACTIONS(2283), + [anon_sym_CARET_EQ] = ACTIONS(2283), + [anon_sym_PIPE_EQ] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2283), }, - [919] = { - [anon_sym_COMMA] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), + [977] = { + [anon_sym_COMMA] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2287), [sym_comment] = ACTIONS(76), }, - [920] = { - [anon_sym_if] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(2181), - [anon_sym_and] = ACTIONS(568), - [anon_sym_or] = ACTIONS(570), + [978] = { + [anon_sym_if] = ACTIONS(598), + [anon_sym_COLON] = ACTIONS(2289), + [anon_sym_and] = ACTIONS(602), + [anon_sym_or] = ACTIONS(604), [sym_comment] = ACTIONS(76), }, - [921] = { - [sym_dictionary_splat] = STATE(919), - [sym__expression] = STATE(920), - [sym__primary_expression] = STATE(105), + [979] = { + [sym_dictionary_splat] = STATE(977), + [sym__expression] = STATE(978), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -35091,7 +36405,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), [sym_dictionary_comprehension] = STATE(61), - [sym_pair] = STATE(919), + [sym_pair] = STATE(977), [sym_set] = STATE(61), [sym_set_comprehension] = STATE(61), [sym_parenthesized_expression] = STATE(61), @@ -35101,44 +36415,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1539), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(2183), - [sym_string] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(2291), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [922] = { - [aux_sym_dictionary_repeat1] = STATE(922), - [anon_sym_COMMA] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2179), + [980] = { + [aux_sym_dictionary_repeat1] = STATE(980), + [anon_sym_COMMA] = ACTIONS(2293), + [anon_sym_RBRACE] = ACTIONS(2287), [sym_comment] = ACTIONS(76), }, - [923] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(2188), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [981] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [924] = { - [sym__expression] = STATE(1272), - [sym__primary_expression] = STATE(930), + [982] = { + [sym__expression] = STATE(1351), + [sym__primary_expression] = STATE(988), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -35163,26 +36477,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_lambda] = ACTIONS(1483), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_lambda] = ACTIONS(1549), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1553), [sym_comment] = ACTIONS(76), }, - [925] = { - [sym__primary_expression] = STATE(210), + [983] = { + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -35201,13 +36515,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -35216,62 +36530,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [926] = { - [sym_lambda_parameters] = STATE(1274), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2190), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [984] = { + [sym_lambda_parameters] = STATE(1353), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(2298), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [927] = { - [aux_sym_concatenated_string_repeat1] = STATE(1275), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_for] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [anon_sym_RBRACE] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [985] = { + [aux_sym_concatenated_string_repeat1] = STATE(1354), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_for] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [anon_sym_RBRACE] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [928] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(930), + [986] = { + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(988), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -35296,134 +36610,134 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_lambda] = ACTIONS(1483), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_lambda] = ACTIONS(1549), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1553), [sym_comment] = ACTIONS(76), }, - [929] = { - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_and] = ACTIONS(2196), - [anon_sym_or] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2192), + [987] = { + [anon_sym_COMMA] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_and] = ACTIONS(2304), + [anon_sym_or] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(2300), [sym_comment] = ACTIONS(76), }, - [930] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(1289), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_GT_GT] = ACTIONS(2202), - [anon_sym_if] = ACTIONS(296), - [anon_sym_for] = ACTIONS(296), - [anon_sym_in] = ACTIONS(2204), - [anon_sym_not] = ACTIONS(2206), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_PERCENT] = ACTIONS(2210), - [anon_sym_SLASH_SLASH] = ACTIONS(2210), - [anon_sym_STAR_STAR] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_CARET] = ACTIONS(2218), - [anon_sym_LT_LT] = ACTIONS(2202), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_LT_EQ] = ACTIONS(2204), - [anon_sym_EQ_EQ] = ACTIONS(2204), - [anon_sym_BANG_EQ] = ACTIONS(2204), - [anon_sym_GT_EQ] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_LT_GT] = ACTIONS(2204), - [anon_sym_is] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(296), + [988] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(1368), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(2308), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(310), + [anon_sym_for] = ACTIONS(310), + [anon_sym_in] = ACTIONS(2312), + [anon_sym_not] = ACTIONS(2314), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(2316), + [anon_sym_DASH] = ACTIONS(2316), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_SLASH_SLASH] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2322), + [anon_sym_AMP] = ACTIONS(2324), + [anon_sym_CARET] = ACTIONS(2326), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_LT_EQ] = ACTIONS(2312), + [anon_sym_EQ_EQ] = ACTIONS(2312), + [anon_sym_BANG_EQ] = ACTIONS(2312), + [anon_sym_GT_EQ] = ACTIONS(2312), + [anon_sym_GT] = ACTIONS(2328), + [anon_sym_LT_GT] = ACTIONS(2312), + [anon_sym_is] = ACTIONS(2330), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(310), [sym_comment] = ACTIONS(76), }, - [931] = { - [anon_sym_in] = ACTIONS(2224), + [989] = { + [anon_sym_in] = ACTIONS(2332), [sym_comment] = ACTIONS(76), }, - [932] = { - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_COLON] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(812), - [anon_sym_or] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), + [990] = { + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_COLON] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(848), + [anon_sym_or] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [933] = { - [sym__newline] = ACTIONS(2226), - [anon_sym_DOT] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_COMMA] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2228), - [anon_sym_GT_GT] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_in] = ACTIONS(2226), - [anon_sym_EQ] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2226), - [anon_sym_and] = ACTIONS(2226), - [anon_sym_or] = ACTIONS(2226), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_SLASH] = ACTIONS(2228), - [anon_sym_PERCENT] = ACTIONS(2228), - [anon_sym_SLASH_SLASH] = ACTIONS(2228), - [anon_sym_STAR_STAR] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2228), - [anon_sym_AMP] = ACTIONS(2228), - [anon_sym_CARET] = ACTIONS(2228), - [anon_sym_LT_LT] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2228), - [anon_sym_LT_EQ] = ACTIONS(2226), - [anon_sym_EQ_EQ] = ACTIONS(2226), - [anon_sym_BANG_EQ] = ACTIONS(2226), - [anon_sym_GT_EQ] = ACTIONS(2226), - [anon_sym_GT] = ACTIONS(2228), - [anon_sym_LT_GT] = ACTIONS(2226), - [anon_sym_is] = ACTIONS(2226), - [anon_sym_PLUS_EQ] = ACTIONS(2226), - [anon_sym_DASH_EQ] = ACTIONS(2226), - [anon_sym_STAR_EQ] = ACTIONS(2226), - [anon_sym_SLASH_EQ] = ACTIONS(2226), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2226), - [anon_sym_PERCENT_EQ] = ACTIONS(2226), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2226), - [anon_sym_GT_GT_EQ] = ACTIONS(2226), - [anon_sym_LT_LT_EQ] = ACTIONS(2226), - [anon_sym_AMP_EQ] = ACTIONS(2226), - [anon_sym_CARET_EQ] = ACTIONS(2226), - [anon_sym_PIPE_EQ] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2226), + [991] = { + [sym__newline] = ACTIONS(2334), + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_GT_GT] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_in] = ACTIONS(2334), + [anon_sym_EQ] = ACTIONS(2336), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_and] = ACTIONS(2334), + [anon_sym_or] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2336), + [anon_sym_DASH] = ACTIONS(2336), + [anon_sym_SLASH] = ACTIONS(2336), + [anon_sym_PERCENT] = ACTIONS(2336), + [anon_sym_SLASH_SLASH] = ACTIONS(2336), + [anon_sym_STAR_STAR] = ACTIONS(2336), + [anon_sym_PIPE] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym_CARET] = ACTIONS(2336), + [anon_sym_LT_LT] = ACTIONS(2336), + [anon_sym_LT] = ACTIONS(2336), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2336), + [anon_sym_LT_GT] = ACTIONS(2334), + [anon_sym_is] = ACTIONS(2334), + [anon_sym_PLUS_EQ] = ACTIONS(2334), + [anon_sym_DASH_EQ] = ACTIONS(2334), + [anon_sym_STAR_EQ] = ACTIONS(2334), + [anon_sym_SLASH_EQ] = ACTIONS(2334), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2334), + [anon_sym_PERCENT_EQ] = ACTIONS(2334), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2334), + [anon_sym_GT_GT_EQ] = ACTIONS(2334), + [anon_sym_LT_LT_EQ] = ACTIONS(2334), + [anon_sym_AMP_EQ] = ACTIONS(2334), + [anon_sym_CARET_EQ] = ACTIONS(2334), + [anon_sym_PIPE_EQ] = ACTIONS(2334), + [anon_sym_LBRACK] = ACTIONS(2334), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2334), }, - [934] = { - [sym__expression] = STATE(1296), - [sym__primary_expression] = STATE(1297), + [992] = { + [sym__expression] = STATE(1375), + [sym__primary_expression] = STATE(1376), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -35448,146 +36762,146 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_lambda] = ACTIONS(2234), + [anon_sym_not] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_lambda] = ACTIONS(2342), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2346), [sym_comment] = ACTIONS(76), }, - [935] = { - [sym_for_in_clause] = STATE(604), - [sym_if_clause] = STATE(604), - [aux_sym__comprehension_body_repeat1] = STATE(1298), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(810), - [anon_sym_RBRACE] = ACTIONS(1725), + [993] = { + [sym_for_in_clause] = STATE(632), + [sym_if_clause] = STATE(632), + [aux_sym__comprehension_body_repeat1] = STATE(1377), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(1791), [sym_comment] = ACTIONS(76), }, - [936] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [994] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(864), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [937] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_SLASH] = ACTIONS(816), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_SLASH_SLASH] = ACTIONS(826), - [anon_sym_STAR_STAR] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [995] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_STAR_STAR] = ACTIONS(864), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [938] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_COLON] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_SLASH] = ACTIONS(816), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_SLASH_SLASH] = ACTIONS(826), - [anon_sym_STAR_STAR] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(1581), + [996] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(854), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_STAR_STAR] = ACTIONS(864), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(868), + [anon_sym_CARET] = ACTIONS(870), + [anon_sym_LT_LT] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(1647), [sym_comment] = ACTIONS(76), }, - [939] = { - [sym__primary_expression] = STATE(1299), + [997] = { + [sym__primary_expression] = STATE(1378), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -35606,13 +36920,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -35621,224 +36935,224 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [940] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(816), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_SLASH_SLASH] = ACTIONS(826), - [anon_sym_STAR_STAR] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [998] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_STAR_STAR] = ACTIONS(864), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [941] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_SLASH] = ACTIONS(816), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_SLASH_SLASH] = ACTIONS(826), - [anon_sym_STAR_STAR] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [999] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(854), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_STAR_STAR] = ACTIONS(864), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(868), + [anon_sym_CARET] = ACTIONS(870), + [anon_sym_LT_LT] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [942] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_SLASH] = ACTIONS(816), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_SLASH_SLASH] = ACTIONS(826), - [anon_sym_STAR_STAR] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1000] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(854), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_STAR_STAR] = ACTIONS(864), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(870), + [anon_sym_LT_LT] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [943] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_SLASH] = ACTIONS(816), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_SLASH_SLASH] = ACTIONS(826), - [anon_sym_STAR_STAR] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1001] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(854), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_STAR_STAR] = ACTIONS(864), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [944] = { - [aux_sym_comparison_operator_repeat1] = STATE(944), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_COLON] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(2240), - [anon_sym_not] = ACTIONS(2243), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2246), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_is] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(1581), + [1002] = { + [aux_sym_comparison_operator_repeat1] = STATE(1002), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(2348), + [anon_sym_not] = ACTIONS(2351), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(2354), + [anon_sym_LT_EQ] = ACTIONS(2348), + [anon_sym_EQ_EQ] = ACTIONS(2348), + [anon_sym_BANG_EQ] = ACTIONS(2348), + [anon_sym_GT_EQ] = ACTIONS(2348), + [anon_sym_GT] = ACTIONS(2354), + [anon_sym_LT_GT] = ACTIONS(2348), + [anon_sym_is] = ACTIONS(2357), + [anon_sym_RBRACE] = ACTIONS(1647), [sym_comment] = ACTIONS(76), }, - [945] = { - [sym__newline] = ACTIONS(2252), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_COMMA] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_in] = ACTIONS(2252), - [anon_sym_EQ] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2252), - [anon_sym_and] = ACTIONS(2252), - [anon_sym_or] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(2254), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_SLASH] = ACTIONS(2254), - [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_SLASH_SLASH] = ACTIONS(2254), - [anon_sym_STAR_STAR] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2254), - [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_LT_EQ] = ACTIONS(2252), - [anon_sym_EQ_EQ] = ACTIONS(2252), - [anon_sym_BANG_EQ] = ACTIONS(2252), - [anon_sym_GT_EQ] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2254), - [anon_sym_LT_GT] = ACTIONS(2252), - [anon_sym_is] = ACTIONS(2252), - [anon_sym_PLUS_EQ] = ACTIONS(2252), - [anon_sym_DASH_EQ] = ACTIONS(2252), - [anon_sym_STAR_EQ] = ACTIONS(2252), - [anon_sym_SLASH_EQ] = ACTIONS(2252), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2252), - [anon_sym_PERCENT_EQ] = ACTIONS(2252), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2252), - [anon_sym_GT_GT_EQ] = ACTIONS(2252), - [anon_sym_LT_LT_EQ] = ACTIONS(2252), - [anon_sym_AMP_EQ] = ACTIONS(2252), - [anon_sym_CARET_EQ] = ACTIONS(2252), - [anon_sym_PIPE_EQ] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2252), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2252), + [1003] = { + [sym__newline] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2362), + [anon_sym_GT_GT] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_EQ] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2360), + [anon_sym_and] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_SLASH] = ACTIONS(2362), + [anon_sym_PERCENT] = ACTIONS(2362), + [anon_sym_SLASH_SLASH] = ACTIONS(2362), + [anon_sym_STAR_STAR] = ACTIONS(2362), + [anon_sym_PIPE] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(2362), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2362), + [anon_sym_LT_GT] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_PLUS_EQ] = ACTIONS(2360), + [anon_sym_DASH_EQ] = ACTIONS(2360), + [anon_sym_STAR_EQ] = ACTIONS(2360), + [anon_sym_SLASH_EQ] = ACTIONS(2360), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2360), + [anon_sym_PERCENT_EQ] = ACTIONS(2360), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_LT_LT_EQ] = ACTIONS(2360), + [anon_sym_AMP_EQ] = ACTIONS(2360), + [anon_sym_CARET_EQ] = ACTIONS(2360), + [anon_sym_PIPE_EQ] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2360), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2360), }, - [946] = { - [sym__expression] = STATE(502), + [1004] = { + [sym__expression] = STATE(530), [sym__primary_expression] = STATE(39), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -35861,28 +37175,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(852), + [sym__newline] = ACTIONS(888), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_EQ] = ACTIONS(852), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_EQ] = ACTIONS(888), + [anon_sym_exec] = ACTIONS(218), [anon_sym_not] = ACTIONS(54), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(890), [anon_sym_TILDE] = ACTIONS(56), [anon_sym_lambda] = ACTIONS(58), - [anon_sym_PLUS_EQ] = ACTIONS(852), - [anon_sym_DASH_EQ] = ACTIONS(852), - [anon_sym_STAR_EQ] = ACTIONS(852), - [anon_sym_SLASH_EQ] = ACTIONS(852), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(852), - [anon_sym_PERCENT_EQ] = ACTIONS(852), - [anon_sym_STAR_STAR_EQ] = ACTIONS(852), - [anon_sym_GT_GT_EQ] = ACTIONS(852), - [anon_sym_LT_LT_EQ] = ACTIONS(852), - [anon_sym_AMP_EQ] = ACTIONS(852), - [anon_sym_CARET_EQ] = ACTIONS(852), - [anon_sym_PIPE_EQ] = ACTIONS(852), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), [anon_sym_LBRACK] = ACTIONS(62), [sym_ellipsis] = ACTIONS(64), [anon_sym_LBRACE] = ACTIONS(66), @@ -35895,38 +37209,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(70), [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(852), + [sym__semicolon] = ACTIONS(888), }, - [947] = { - [aux_sym_print_statement_repeat1] = STATE(513), - [sym__newline] = ACTIONS(852), - [anon_sym_COMMA] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(852), - [anon_sym_PLUS_EQ] = ACTIONS(852), - [anon_sym_DASH_EQ] = ACTIONS(852), - [anon_sym_STAR_EQ] = ACTIONS(852), - [anon_sym_SLASH_EQ] = ACTIONS(852), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(852), - [anon_sym_PERCENT_EQ] = ACTIONS(852), - [anon_sym_STAR_STAR_EQ] = ACTIONS(852), - [anon_sym_GT_GT_EQ] = ACTIONS(852), - [anon_sym_LT_LT_EQ] = ACTIONS(852), - [anon_sym_AMP_EQ] = ACTIONS(852), - [anon_sym_CARET_EQ] = ACTIONS(852), - [anon_sym_PIPE_EQ] = ACTIONS(852), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(852), + [1005] = { + [aux_sym_print_statement_repeat1] = STATE(541), + [sym__newline] = ACTIONS(888), + [anon_sym_COMMA] = ACTIONS(2364), + [anon_sym_EQ] = ACTIONS(888), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_STAR_STAR_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(888), }, - [948] = { - [anon_sym_if] = ACTIONS(690), - [anon_sym_else] = ACTIONS(690), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1006] = { + [anon_sym_if] = ACTIONS(726), + [anon_sym_else] = ACTIONS(726), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [949] = { - [sym__expression] = STATE(1301), - [sym__primary_expression] = STATE(509), + [1007] = { + [sym__expression] = STATE(1380), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -35951,65 +37265,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [950] = { - [anon_sym_COLON] = ACTIONS(2258), + [1008] = { + [anon_sym_COLON] = ACTIONS(2366), [sym_comment] = ACTIONS(76), }, - [951] = { - [aux_sym_concatenated_string_repeat1] = STATE(1303), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_else] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [1009] = { + [aux_sym_concatenated_string_repeat1] = STATE(1382), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_else] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [952] = { - [sym__expression] = STATE(1304), - [sym__primary_expression] = STATE(509), + [1010] = { + [sym__expression] = STATE(1383), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -36034,26 +37348,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [953] = { - [sym__expression] = STATE(1305), + [1011] = { + [sym__expression] = STATE(1384), [sym__primary_expression] = STATE(39), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -36077,8 +37391,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), @@ -36097,9 +37411,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [954] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(509), + [1012] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -36124,27 +37438,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [955] = { - [sym__expression] = STATE(1306), - [sym__primary_expression] = STATE(509), + [1013] = { + [sym__expression] = STATE(1385), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -36169,26 +37483,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [956] = { - [sym__primary_expression] = STATE(1307), + [1014] = { + [sym__primary_expression] = STATE(1386), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -36207,13 +37521,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -36222,8 +37536,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [957] = { - [sym__primary_expression] = STATE(1308), + [1015] = { + [sym__primary_expression] = STATE(1387), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -36242,13 +37556,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -36257,8 +37571,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [958] = { - [sym__primary_expression] = STATE(1309), + [1016] = { + [sym__primary_expression] = STATE(1388), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -36277,13 +37591,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -36292,12 +37606,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [959] = { - [anon_sym_in] = ACTIONS(2260), + [1017] = { + [anon_sym_in] = ACTIONS(2368), [sym_comment] = ACTIONS(76), }, - [960] = { - [sym__primary_expression] = STATE(1311), + [1018] = { + [sym__primary_expression] = STATE(1390), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -36316,13 +37630,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -36331,8 +37645,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [961] = { - [sym__primary_expression] = STATE(618), + [1019] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -36351,13 +37665,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -36366,8 +37680,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [962] = { - [sym__primary_expression] = STATE(1312), + [1020] = { + [sym__primary_expression] = STATE(1391), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -36386,13 +37700,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -36401,8 +37715,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [963] = { - [sym__primary_expression] = STATE(1313), + [1021] = { + [sym__primary_expression] = STATE(1392), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -36421,13 +37735,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -36436,8 +37750,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [964] = { - [sym__primary_expression] = STATE(1314), + [1022] = { + [sym__primary_expression] = STATE(1393), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -36456,13 +37770,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -36471,8 +37785,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [965] = { - [sym__primary_expression] = STATE(1309), + [1023] = { + [sym__primary_expression] = STATE(1388), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -36491,14 +37805,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -36507,26 +37821,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [966] = { - [aux_sym_comparison_operator_repeat1] = STATE(1315), - [anon_sym_if] = ACTIONS(900), - [anon_sym_else] = ACTIONS(900), - [anon_sym_in] = ACTIONS(1530), - [anon_sym_not] = ACTIONS(1532), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_LT_EQ] = ACTIONS(1530), - [anon_sym_EQ_EQ] = ACTIONS(1530), - [anon_sym_BANG_EQ] = ACTIONS(1530), - [anon_sym_GT_EQ] = ACTIONS(1530), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_LT_GT] = ACTIONS(1530), - [anon_sym_is] = ACTIONS(1548), + [1024] = { + [aux_sym_comparison_operator_repeat1] = STATE(1394), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_not] = ACTIONS(1598), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_LT_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ] = ACTIONS(1596), + [anon_sym_BANG_EQ] = ACTIONS(1596), + [anon_sym_GT_EQ] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_LT_GT] = ACTIONS(1596), + [anon_sym_is] = ACTIONS(1614), [sym_comment] = ACTIONS(76), }, - [967] = { - [sym__expression] = STATE(502), + [1025] = { + [sym__expression] = STATE(530), [sym__primary_expression] = STATE(39), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -36550,8 +37864,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_exec] = ACTIONS(218), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), @@ -36570,56 +37884,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [968] = { - [sym__newline] = ACTIONS(2264), - [anon_sym_DOT] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2264), - [anon_sym_COMMA] = ACTIONS(2264), - [anon_sym_STAR] = ACTIONS(2266), - [anon_sym_GT_GT] = ACTIONS(2266), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2264), - [anon_sym_EQ] = ACTIONS(2266), - [anon_sym_not] = ACTIONS(2264), - [anon_sym_and] = ACTIONS(2264), - [anon_sym_or] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2266), - [anon_sym_DASH] = ACTIONS(2266), - [anon_sym_SLASH] = ACTIONS(2266), - [anon_sym_PERCENT] = ACTIONS(2266), - [anon_sym_SLASH_SLASH] = ACTIONS(2266), - [anon_sym_STAR_STAR] = ACTIONS(2266), - [anon_sym_PIPE] = ACTIONS(2266), - [anon_sym_AMP] = ACTIONS(2266), - [anon_sym_CARET] = ACTIONS(2266), - [anon_sym_LT_LT] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_LT_EQ] = ACTIONS(2264), - [anon_sym_EQ_EQ] = ACTIONS(2264), - [anon_sym_BANG_EQ] = ACTIONS(2264), - [anon_sym_GT_EQ] = ACTIONS(2264), - [anon_sym_GT] = ACTIONS(2266), - [anon_sym_LT_GT] = ACTIONS(2264), - [anon_sym_is] = ACTIONS(2264), - [anon_sym_PLUS_EQ] = ACTIONS(2264), - [anon_sym_DASH_EQ] = ACTIONS(2264), - [anon_sym_STAR_EQ] = ACTIONS(2264), - [anon_sym_SLASH_EQ] = ACTIONS(2264), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2264), - [anon_sym_PERCENT_EQ] = ACTIONS(2264), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2264), - [anon_sym_GT_GT_EQ] = ACTIONS(2264), - [anon_sym_LT_LT_EQ] = ACTIONS(2264), - [anon_sym_AMP_EQ] = ACTIONS(2264), - [anon_sym_CARET_EQ] = ACTIONS(2264), - [anon_sym_PIPE_EQ] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2264), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2264), + [1026] = { + [sym__newline] = ACTIONS(2372), + [anon_sym_DOT] = ACTIONS(2372), + [anon_sym_LPAREN] = ACTIONS(2372), + [anon_sym_COMMA] = ACTIONS(2372), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_GT_GT] = ACTIONS(2374), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_in] = ACTIONS(2372), + [anon_sym_EQ] = ACTIONS(2374), + [anon_sym_not] = ACTIONS(2372), + [anon_sym_and] = ACTIONS(2372), + [anon_sym_or] = ACTIONS(2372), + [anon_sym_PLUS] = ACTIONS(2374), + [anon_sym_DASH] = ACTIONS(2374), + [anon_sym_SLASH] = ACTIONS(2374), + [anon_sym_PERCENT] = ACTIONS(2374), + [anon_sym_SLASH_SLASH] = ACTIONS(2374), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2374), + [anon_sym_CARET] = ACTIONS(2374), + [anon_sym_LT_LT] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_LT_EQ] = ACTIONS(2372), + [anon_sym_EQ_EQ] = ACTIONS(2372), + [anon_sym_BANG_EQ] = ACTIONS(2372), + [anon_sym_GT_EQ] = ACTIONS(2372), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_LT_GT] = ACTIONS(2372), + [anon_sym_is] = ACTIONS(2372), + [anon_sym_PLUS_EQ] = ACTIONS(2372), + [anon_sym_DASH_EQ] = ACTIONS(2372), + [anon_sym_STAR_EQ] = ACTIONS(2372), + [anon_sym_SLASH_EQ] = ACTIONS(2372), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2372), + [anon_sym_PERCENT_EQ] = ACTIONS(2372), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2372), + [anon_sym_GT_GT_EQ] = ACTIONS(2372), + [anon_sym_LT_LT_EQ] = ACTIONS(2372), + [anon_sym_AMP_EQ] = ACTIONS(2372), + [anon_sym_CARET_EQ] = ACTIONS(2372), + [anon_sym_PIPE_EQ] = ACTIONS(2372), + [anon_sym_LBRACK] = ACTIONS(2372), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2372), }, - [969] = { - [sym__expression] = STATE(1316), - [sym__primary_expression] = STATE(221), + [1027] = { + [sym__expression] = STATE(1395), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -36644,35 +37958,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [970] = { - [anon_sym_RPAREN] = ACTIONS(1307), - [anon_sym_COMMA] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [1028] = { + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [971] = { - [sym__expression] = STATE(1317), - [sym__primary_expression] = STATE(221), + [1029] = { + [sym__expression] = STATE(1396), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -36697,27 +38011,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [972] = { - [sym__expression] = STATE(1318), - [sym__primary_expression] = STATE(221), + [1030] = { + [sym__expression] = STATE(1397), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -36742,29 +38056,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [973] = { - [sym_list_splat] = STATE(1320), - [sym_dictionary_splat] = STATE(1320), - [sym__expression] = STATE(1321), - [sym__primary_expression] = STATE(221), + [1031] = { + [sym_list_splat] = STATE(1399), + [sym_dictionary_splat] = STATE(1399), + [sym__expression] = STATE(1400), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -36774,7 +38088,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_keyword_argument] = STATE(1320), + [sym_keyword_argument] = STATE(1399), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -36788,86 +38102,86 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_print] = ACTIONS(876), - [anon_sym_exec] = ACTIONS(876), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_RPAREN] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(878), + [sym_identifier] = ACTIONS(914), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [974] = { - [aux_sym_argument_list_repeat1] = STATE(1323), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_COMMA] = ACTIONS(2270), + [1032] = { + [aux_sym_argument_list_repeat1] = STATE(1402), + [anon_sym_RPAREN] = ACTIONS(2376), + [anon_sym_COMMA] = ACTIONS(2378), [sym_comment] = ACTIONS(76), }, - [975] = { - [sym_argument_list] = STATE(189), - [sym_generator_expression] = STATE(189), - [sym__newline] = ACTIONS(2272), - [anon_sym_DOT] = ACTIONS(298), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(302), - [anon_sym_GT_GT] = ACTIONS(304), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_EQ] = ACTIONS(2274), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(302), - [anon_sym_PERCENT] = ACTIONS(302), - [anon_sym_SLASH_SLASH] = ACTIONS(302), - [anon_sym_STAR_STAR] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(316), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(304), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_PLUS_EQ] = ACTIONS(2272), - [anon_sym_DASH_EQ] = ACTIONS(2272), - [anon_sym_STAR_EQ] = ACTIONS(2272), - [anon_sym_SLASH_EQ] = ACTIONS(2272), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2272), - [anon_sym_PERCENT_EQ] = ACTIONS(2272), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2272), - [anon_sym_GT_GT_EQ] = ACTIONS(2272), - [anon_sym_LT_LT_EQ] = ACTIONS(2272), - [anon_sym_AMP_EQ] = ACTIONS(2272), - [anon_sym_CARET_EQ] = ACTIONS(2272), - [anon_sym_PIPE_EQ] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(326), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2272), + [1033] = { + [sym_argument_list] = STATE(195), + [sym_generator_expression] = STATE(195), + [sym__newline] = ACTIONS(2380), + [anon_sym_DOT] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_EQ] = ACTIONS(2382), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_SLASH_SLASH] = ACTIONS(316), + [anon_sym_STAR_STAR] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_AMP] = ACTIONS(332), + [anon_sym_CARET] = ACTIONS(334), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_PLUS_EQ] = ACTIONS(2380), + [anon_sym_DASH_EQ] = ACTIONS(2380), + [anon_sym_STAR_EQ] = ACTIONS(2380), + [anon_sym_SLASH_EQ] = ACTIONS(2380), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2380), + [anon_sym_PERCENT_EQ] = ACTIONS(2380), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2380), + [anon_sym_GT_GT_EQ] = ACTIONS(2380), + [anon_sym_LT_LT_EQ] = ACTIONS(2380), + [anon_sym_AMP_EQ] = ACTIONS(2380), + [anon_sym_CARET_EQ] = ACTIONS(2380), + [anon_sym_PIPE_EQ] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(340), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2380), }, - [976] = { - [sym__expression] = STATE(1324), - [sym__primary_expression] = STATE(435), + [1034] = { + [sym__expression] = STATE(1403), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -36890,49 +38204,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_COMMA] = ACTIONS(2276), + [anon_sym_COMMA] = ACTIONS(2384), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(2276), + [anon_sym_RBRACK] = ACTIONS(2384), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [977] = { - [anon_sym_COMMA] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_COLON] = ACTIONS(2278), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1599), - [anon_sym_RBRACK] = ACTIONS(2276), + [1035] = { + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_COLON] = ACTIONS(2386), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1665), + [anon_sym_RBRACK] = ACTIONS(2384), [sym_comment] = ACTIONS(76), }, - [978] = { - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1599), - [anon_sym_RBRACK] = ACTIONS(690), + [1036] = { + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_COLON] = ACTIONS(726), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1665), + [anon_sym_RBRACK] = ACTIONS(726), [sym_comment] = ACTIONS(76), }, - [979] = { - [sym__expression] = STATE(1326), - [sym__primary_expression] = STATE(538), + [1037] = { + [sym__expression] = STATE(1405), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -36957,67 +38271,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [980] = { - [anon_sym_COLON] = ACTIONS(2280), + [1038] = { + [anon_sym_COLON] = ACTIONS(2388), [sym_comment] = ACTIONS(76), }, - [981] = { - [aux_sym_concatenated_string_repeat1] = STATE(1328), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_RBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [1039] = { + [aux_sym_concatenated_string_repeat1] = STATE(1407), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_COLON] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_RBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [982] = { - [sym__expression] = STATE(1330), - [sym__primary_expression] = STATE(538), + [1040] = { + [sym__expression] = STATE(1409), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -37026,7 +38340,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_lambda] = STATE(67), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), - [sym_slice] = STATE(1331), + [sym_slice] = STATE(1410), [sym_call] = STATE(61), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), @@ -37042,30 +38356,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(920), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(2282), + [anon_sym_RBRACK] = ACTIONS(2390), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [983] = { - [sym__expression] = STATE(1332), - [sym__primary_expression] = STATE(509), + [1041] = { + [sym__expression] = STATE(1411), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -37090,27 +38404,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [984] = { - [sym__expression] = STATE(1333), - [sym__primary_expression] = STATE(538), + [1042] = { + [sym__expression] = STATE(1412), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -37133,32 +38447,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_COMMA] = ACTIONS(2276), + [anon_sym_COMMA] = ACTIONS(2384), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(2278), + [anon_sym_COLON] = ACTIONS(2386), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(2276), + [anon_sym_RBRACK] = ACTIONS(2384), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [985] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(538), + [1043] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -37183,27 +38497,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [986] = { - [sym__expression] = STATE(1334), - [sym__primary_expression] = STATE(538), + [1044] = { + [sym__expression] = STATE(1413), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -37228,79 +38542,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [987] = { - [sym__newline] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2284), - [anon_sym_STAR] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2286), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_EQ] = ACTIONS(2286), - [anon_sym_not] = ACTIONS(2284), - [anon_sym_and] = ACTIONS(2284), - [anon_sym_or] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2286), - [anon_sym_DASH] = ACTIONS(2286), - [anon_sym_SLASH] = ACTIONS(2286), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_SLASH_SLASH] = ACTIONS(2286), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2286), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2286), - [anon_sym_LT_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_GT_EQ] = ACTIONS(2284), - [anon_sym_GT] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2284), - [anon_sym_is] = ACTIONS(2284), - [anon_sym_PLUS_EQ] = ACTIONS(2284), - [anon_sym_DASH_EQ] = ACTIONS(2284), - [anon_sym_STAR_EQ] = ACTIONS(2284), - [anon_sym_SLASH_EQ] = ACTIONS(2284), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2284), - [anon_sym_PERCENT_EQ] = ACTIONS(2284), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2284), - [anon_sym_GT_GT_EQ] = ACTIONS(2284), - [anon_sym_LT_LT_EQ] = ACTIONS(2284), - [anon_sym_AMP_EQ] = ACTIONS(2284), - [anon_sym_CARET_EQ] = ACTIONS(2284), - [anon_sym_PIPE_EQ] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2284), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2284), + [1045] = { + [sym__newline] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2394), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_EQ] = ACTIONS(2394), + [anon_sym_not] = ACTIONS(2392), + [anon_sym_and] = ACTIONS(2392), + [anon_sym_or] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2394), + [anon_sym_DASH] = ACTIONS(2394), + [anon_sym_SLASH] = ACTIONS(2394), + [anon_sym_PERCENT] = ACTIONS(2394), + [anon_sym_SLASH_SLASH] = ACTIONS(2394), + [anon_sym_STAR_STAR] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_AMP] = ACTIONS(2394), + [anon_sym_CARET] = ACTIONS(2394), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_LT_EQ] = ACTIONS(2392), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_GT_EQ] = ACTIONS(2392), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_LT_GT] = ACTIONS(2392), + [anon_sym_is] = ACTIONS(2392), + [anon_sym_PLUS_EQ] = ACTIONS(2392), + [anon_sym_DASH_EQ] = ACTIONS(2392), + [anon_sym_STAR_EQ] = ACTIONS(2392), + [anon_sym_SLASH_EQ] = ACTIONS(2392), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2392), + [anon_sym_PERCENT_EQ] = ACTIONS(2392), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2392), + [anon_sym_GT_GT_EQ] = ACTIONS(2392), + [anon_sym_LT_LT_EQ] = ACTIONS(2392), + [anon_sym_AMP_EQ] = ACTIONS(2392), + [anon_sym_CARET_EQ] = ACTIONS(2392), + [anon_sym_PIPE_EQ] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2392), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2392), }, - [988] = { - [aux_sym_subscript_repeat1] = STATE(1336), - [anon_sym_COMMA] = ACTIONS(2288), - [anon_sym_RBRACK] = ACTIONS(2282), + [1046] = { + [aux_sym_subscript_repeat1] = STATE(1415), + [anon_sym_COMMA] = ACTIONS(2396), + [anon_sym_RBRACK] = ACTIONS(2390), [sym_comment] = ACTIONS(76), }, - [989] = { - [sym__primary_expression] = STATE(1337), + [1047] = { + [sym__primary_expression] = STATE(1416), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -37319,13 +38633,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -37334,8 +38648,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [990] = { - [sym__primary_expression] = STATE(1338), + [1048] = { + [sym__primary_expression] = STATE(1417), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -37354,13 +38668,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -37369,8 +38683,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [991] = { - [sym__primary_expression] = STATE(1339), + [1049] = { + [sym__primary_expression] = STATE(1418), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -37389,13 +38703,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -37404,12 +38718,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [992] = { - [anon_sym_in] = ACTIONS(2290), + [1050] = { + [anon_sym_in] = ACTIONS(2398), [sym_comment] = ACTIONS(76), }, - [993] = { - [sym__primary_expression] = STATE(1341), + [1051] = { + [sym__primary_expression] = STATE(1420), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -37428,13 +38742,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -37443,8 +38757,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [994] = { - [sym__primary_expression] = STATE(618), + [1052] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -37463,13 +38777,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -37478,8 +38792,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [995] = { - [sym__primary_expression] = STATE(1342), + [1053] = { + [sym__primary_expression] = STATE(1421), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -37498,13 +38812,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -37513,8 +38827,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [996] = { - [sym__primary_expression] = STATE(1343), + [1054] = { + [sym__primary_expression] = STATE(1422), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -37533,13 +38847,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -37548,8 +38862,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [997] = { - [sym__primary_expression] = STATE(1344), + [1055] = { + [sym__primary_expression] = STATE(1423), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -37568,13 +38882,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -37583,8 +38897,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [998] = { - [sym__primary_expression] = STATE(1339), + [1056] = { + [sym__primary_expression] = STATE(1418), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -37603,14 +38917,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_not] = ACTIONS(2400), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -37619,159 +38933,159 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [999] = { - [aux_sym_comparison_operator_repeat1] = STATE(1345), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_COLON] = ACTIONS(900), - [anon_sym_in] = ACTIONS(1607), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1607), - [anon_sym_EQ_EQ] = ACTIONS(1607), - [anon_sym_BANG_EQ] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1607), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_GT] = ACTIONS(1607), - [anon_sym_is] = ACTIONS(1625), - [anon_sym_RBRACK] = ACTIONS(900), + [1057] = { + [aux_sym_comparison_operator_repeat1] = STATE(1424), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_COLON] = ACTIONS(936), + [anon_sym_in] = ACTIONS(1673), + [anon_sym_not] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_LT_EQ] = ACTIONS(1673), + [anon_sym_EQ_EQ] = ACTIONS(1673), + [anon_sym_BANG_EQ] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1673), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_LT_GT] = ACTIONS(1673), + [anon_sym_is] = ACTIONS(1691), + [anon_sym_RBRACK] = ACTIONS(936), [sym_comment] = ACTIONS(76), }, - [1000] = { - [sym_aliased_import] = STATE(543), - [sym_dotted_name] = STATE(544), + [1058] = { + [sym_aliased_import] = STATE(571), + [sym_dotted_name] = STATE(572), [sym_identifier] = ACTIONS(78), [sym_comment] = ACTIONS(76), }, - [1001] = { - [aux_sym_dotted_name_repeat1] = STATE(1346), - [anon_sym_DOT] = ACTIONS(352), - [anon_sym_RPAREN] = ACTIONS(334), - [anon_sym_COMMA] = ACTIONS(334), - [anon_sym_as] = ACTIONS(334), + [1059] = { + [aux_sym_dotted_name_repeat1] = STATE(1425), + [anon_sym_DOT] = ACTIONS(366), + [anon_sym_RPAREN] = ACTIONS(348), + [anon_sym_COMMA] = ACTIONS(348), + [anon_sym_as] = ACTIONS(348), [sym_comment] = ACTIONS(76), }, - [1002] = { - [anon_sym_RPAREN] = ACTIONS(2294), + [1060] = { + [anon_sym_RPAREN] = ACTIONS(2402), [sym_comment] = ACTIONS(76), }, - [1003] = { - [aux_sym__import_list_repeat1] = STATE(1349), - [anon_sym_RPAREN] = ACTIONS(340), - [anon_sym_COMMA] = ACTIONS(2296), + [1061] = { + [aux_sym__import_list_repeat1] = STATE(1428), + [anon_sym_RPAREN] = ACTIONS(354), + [anon_sym_COMMA] = ACTIONS(2404), [sym_comment] = ACTIONS(76), }, - [1004] = { - [aux_sym__import_list_repeat1] = STATE(1349), - [anon_sym_RPAREN] = ACTIONS(340), - [anon_sym_COMMA] = ACTIONS(2296), - [anon_sym_as] = ACTIONS(2298), + [1062] = { + [aux_sym__import_list_repeat1] = STATE(1428), + [anon_sym_RPAREN] = ACTIONS(354), + [anon_sym_COMMA] = ACTIONS(2404), + [anon_sym_as] = ACTIONS(2406), [sym_comment] = ACTIONS(76), }, - [1005] = { - [sym__import_list] = STATE(1351), - [sym_aliased_import] = STATE(1003), - [sym_dotted_name] = STATE(1004), - [sym_identifier] = ACTIONS(1656), + [1063] = { + [sym__import_list] = STATE(1430), + [sym_aliased_import] = STATE(1061), + [sym_dotted_name] = STATE(1062), + [sym_identifier] = ACTIONS(1722), [sym_comment] = ACTIONS(76), }, - [1006] = { - [sym__newline] = ACTIONS(2300), + [1064] = { + [sym__newline] = ACTIONS(2408), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2300), + [sym__semicolon] = ACTIONS(2408), }, - [1007] = { - [anon_sym_DOT] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1699), - [anon_sym_COMMA] = ACTIONS(1699), - [anon_sym_as] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_COLON] = ACTIONS(1699), - [anon_sym_else] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_in] = ACTIONS(1699), - [anon_sym_EQ] = ACTIONS(1701), - [anon_sym_not] = ACTIONS(1699), - [anon_sym_and] = ACTIONS(1699), - [anon_sym_or] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_SLASH] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1699), - [anon_sym_SLASH_SLASH] = ACTIONS(1699), - [anon_sym_STAR_STAR] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_LT_LT] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_GT] = ACTIONS(1699), - [anon_sym_is] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_RBRACK] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), + [1065] = { + [anon_sym_DOT] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_GT_GT] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_COLON] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_EQ] = ACTIONS(1767), + [anon_sym_not] = ACTIONS(1765), + [anon_sym_and] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_PERCENT] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(1765), + [anon_sym_STAR_STAR] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_LT_GT] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1765), + [anon_sym_RBRACK] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), [sym_comment] = ACTIONS(76), }, - [1008] = { - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_RPAREN] = ACTIONS(1709), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_GT_GT] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_COLON] = ACTIONS(1709), - [anon_sym_else] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_in] = ACTIONS(1709), - [anon_sym_EQ] = ACTIONS(1711), - [anon_sym_not] = ACTIONS(1709), - [anon_sym_and] = ACTIONS(1709), - [anon_sym_or] = ACTIONS(1709), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_PERCENT] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(1709), - [anon_sym_STAR_STAR] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1709), - [anon_sym_CARET] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1709), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1709), - [anon_sym_BANG_EQ] = ACTIONS(1709), - [anon_sym_GT_EQ] = ACTIONS(1709), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_LT_GT] = ACTIONS(1709), - [anon_sym_is] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_RBRACK] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), + [1066] = { + [anon_sym_DOT] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_RPAREN] = ACTIONS(1775), + [anon_sym_COMMA] = ACTIONS(1775), + [anon_sym_as] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_GT_GT] = ACTIONS(1775), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_COLON] = ACTIONS(1775), + [anon_sym_else] = ACTIONS(1775), + [anon_sym_for] = ACTIONS(1775), + [anon_sym_in] = ACTIONS(1775), + [anon_sym_EQ] = ACTIONS(1777), + [anon_sym_not] = ACTIONS(1775), + [anon_sym_and] = ACTIONS(1775), + [anon_sym_or] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_SLASH] = ACTIONS(1777), + [anon_sym_PERCENT] = ACTIONS(1775), + [anon_sym_SLASH_SLASH] = ACTIONS(1775), + [anon_sym_STAR_STAR] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_LT_LT] = ACTIONS(1775), + [anon_sym_LT] = ACTIONS(1777), + [anon_sym_LT_EQ] = ACTIONS(1775), + [anon_sym_EQ_EQ] = ACTIONS(1775), + [anon_sym_BANG_EQ] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1775), + [anon_sym_GT] = ACTIONS(1777), + [anon_sym_LT_GT] = ACTIONS(1775), + [anon_sym_is] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_RBRACK] = ACTIONS(1775), + [anon_sym_RBRACE] = ACTIONS(1775), [sym_comment] = ACTIONS(76), }, - [1009] = { - [sym__expression] = STATE(596), - [sym__primary_expression] = STATE(221), + [1067] = { + [sym__expression] = STATE(624), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_yield] = STATE(597), + [sym_yield] = STATE(625), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -37788,48 +39102,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2410), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_yield] = ACTIONS(98), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1010] = { - [anon_sym_RPAREN] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(398), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(402), - [anon_sym_or] = ACTIONS(404), + [1068] = { + [anon_sym_RPAREN] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(412), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(416), + [anon_sym_or] = ACTIONS(418), [sym_comment] = ACTIONS(76), }, - [1011] = { - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [1069] = { + [anon_sym_RPAREN] = ACTIONS(1423), + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [1012] = { - [sym__expression] = STATE(1353), - [sym__primary_expression] = STATE(221), + [1070] = { + [sym__expression] = STATE(1432), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -37854,85 +39168,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1013] = { - [aux_sym_concatenated_string_repeat1] = STATE(1013), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [1071] = { + [aux_sym_concatenated_string_repeat1] = STATE(1071), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [1014] = { - [anon_sym_RPAREN] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [1072] = { + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [1015] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(2304), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1073] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(2412), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1016] = { - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1550), + [1074] = { + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [1017] = { - [sym__expression] = STATE(1014), - [sym__primary_expression] = STATE(221), + [1075] = { + [sym__expression] = STATE(1072), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -37955,141 +39269,141 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(1554), - [anon_sym_COMMA] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_COMMA] = ACTIONS(1620), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1018] = { - [aux_sym_print_statement_repeat1] = STATE(1018), - [anon_sym_RPAREN] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(2306), + [1076] = { + [aux_sym_print_statement_repeat1] = STATE(1076), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(2414), [sym_comment] = ACTIONS(76), }, - [1019] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1077] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1020] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_PERCENT] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1078] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_SLASH] = ACTIONS(1096), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_SLASH_SLASH] = ACTIONS(1106), + [anon_sym_STAR_STAR] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1021] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1062), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_PERCENT] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_LT_LT] = ACTIONS(1062), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), + [1079] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_GT_GT] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_SLASH] = ACTIONS(1096), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_SLASH_SLASH] = ACTIONS(1106), + [anon_sym_STAR_STAR] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_CARET] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1022] = { - [sym__primary_expression] = STATE(1356), + [1080] = { + [sym__primary_expression] = STATE(1435), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -38108,13 +39422,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -38123,209 +39437,209 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1023] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_PERCENT] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1081] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1096), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_SLASH_SLASH] = ACTIONS(1106), + [anon_sym_STAR_STAR] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1024] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1062), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_PERCENT] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_LT_LT] = ACTIONS(1062), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1082] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_GT_GT] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_SLASH] = ACTIONS(1096), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_SLASH_SLASH] = ACTIONS(1106), + [anon_sym_STAR_STAR] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_CARET] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1025] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1062), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_PERCENT] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_LT_LT] = ACTIONS(1062), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1083] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_GT_GT] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_SLASH] = ACTIONS(1096), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_SLASH_SLASH] = ACTIONS(1106), + [anon_sym_STAR_STAR] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1026] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1062), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_PERCENT] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1062), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1084] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_GT_GT] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_SLASH] = ACTIONS(1096), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_SLASH_SLASH] = ACTIONS(1106), + [anon_sym_STAR_STAR] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1027] = { - [aux_sym_comparison_operator_repeat1] = STATE(1027), - [anon_sym_RPAREN] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(2309), - [anon_sym_not] = ACTIONS(2312), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(2315), - [anon_sym_LT_EQ] = ACTIONS(2309), - [anon_sym_EQ_EQ] = ACTIONS(2309), - [anon_sym_BANG_EQ] = ACTIONS(2309), - [anon_sym_GT_EQ] = ACTIONS(2309), - [anon_sym_GT] = ACTIONS(2315), - [anon_sym_LT_GT] = ACTIONS(2309), - [anon_sym_is] = ACTIONS(2318), + [1085] = { + [aux_sym_comparison_operator_repeat1] = STATE(1085), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(2417), + [anon_sym_not] = ACTIONS(2420), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(2423), + [anon_sym_LT_EQ] = ACTIONS(2417), + [anon_sym_EQ_EQ] = ACTIONS(2417), + [anon_sym_BANG_EQ] = ACTIONS(2417), + [anon_sym_GT_EQ] = ACTIONS(2417), + [anon_sym_GT] = ACTIONS(2423), + [anon_sym_LT_GT] = ACTIONS(2417), + [anon_sym_is] = ACTIONS(2426), [sym_comment] = ACTIONS(76), }, - [1028] = { - [anon_sym_DOT] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_RPAREN] = ACTIONS(2119), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_as] = ACTIONS(2119), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_GT_GT] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_COLON] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2119), - [anon_sym_for] = ACTIONS(2119), - [anon_sym_in] = ACTIONS(2119), - [anon_sym_EQ] = ACTIONS(2121), - [anon_sym_not] = ACTIONS(2119), - [anon_sym_and] = ACTIONS(2119), - [anon_sym_or] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2119), - [anon_sym_DASH] = ACTIONS(2119), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_PERCENT] = ACTIONS(2119), - [anon_sym_SLASH_SLASH] = ACTIONS(2119), - [anon_sym_STAR_STAR] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_LT_LT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_LT_EQ] = ACTIONS(2119), - [anon_sym_EQ_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2119), - [anon_sym_GT] = ACTIONS(2121), - [anon_sym_LT_GT] = ACTIONS(2119), - [anon_sym_is] = ACTIONS(2119), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_RBRACK] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), + [1086] = { + [anon_sym_DOT] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_RPAREN] = ACTIONS(2227), + [anon_sym_COMMA] = ACTIONS(2227), + [anon_sym_as] = ACTIONS(2227), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_GT_GT] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_COLON] = ACTIONS(2227), + [anon_sym_else] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_in] = ACTIONS(2227), + [anon_sym_EQ] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2227), + [anon_sym_and] = ACTIONS(2227), + [anon_sym_or] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_PERCENT] = ACTIONS(2227), + [anon_sym_SLASH_SLASH] = ACTIONS(2227), + [anon_sym_STAR_STAR] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_LT_LT] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ] = ACTIONS(2227), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_GT] = ACTIONS(2229), + [anon_sym_LT_GT] = ACTIONS(2227), + [anon_sym_is] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_RBRACK] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), [sym_comment] = ACTIONS(76), }, - [1029] = { - [sym_list_splat] = STATE(871), - [sym__expression] = STATE(872), - [sym__primary_expression] = STATE(435), + [1087] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(930), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -38348,112 +39662,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(222), + [anon_sym_STAR] = ACTIONS(236), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(2321), + [anon_sym_RBRACK] = ACTIONS(2429), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [1030] = { - [anon_sym_DOT] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2134), - [anon_sym_COMMA] = ACTIONS(2134), - [anon_sym_as] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_GT_GT] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_else] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_EQ] = ACTIONS(2136), - [anon_sym_not] = ACTIONS(2134), - [anon_sym_and] = ACTIONS(2134), - [anon_sym_or] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_SLASH] = ACTIONS(2136), - [anon_sym_PERCENT] = ACTIONS(2134), - [anon_sym_SLASH_SLASH] = ACTIONS(2134), - [anon_sym_STAR_STAR] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_AMP] = ACTIONS(2134), - [anon_sym_CARET] = ACTIONS(2134), - [anon_sym_LT_LT] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2136), - [anon_sym_LT_EQ] = ACTIONS(2134), - [anon_sym_EQ_EQ] = ACTIONS(2134), - [anon_sym_BANG_EQ] = ACTIONS(2134), - [anon_sym_GT_EQ] = ACTIONS(2134), - [anon_sym_GT] = ACTIONS(2136), - [anon_sym_LT_GT] = ACTIONS(2134), - [anon_sym_is] = ACTIONS(2134), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_RBRACK] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), + [1088] = { + [anon_sym_DOT] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_COMMA] = ACTIONS(2242), + [anon_sym_as] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_COLON] = ACTIONS(2242), + [anon_sym_else] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_in] = ACTIONS(2242), + [anon_sym_EQ] = ACTIONS(2244), + [anon_sym_not] = ACTIONS(2242), + [anon_sym_and] = ACTIONS(2242), + [anon_sym_or] = ACTIONS(2242), + [anon_sym_PLUS] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2242), + [anon_sym_SLASH_SLASH] = ACTIONS(2242), + [anon_sym_STAR_STAR] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_CARET] = ACTIONS(2242), + [anon_sym_LT_LT] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2242), + [anon_sym_EQ_EQ] = ACTIONS(2242), + [anon_sym_BANG_EQ] = ACTIONS(2242), + [anon_sym_GT_EQ] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_LT_GT] = ACTIONS(2242), + [anon_sym_is] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_RBRACK] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), [sym_comment] = ACTIONS(76), }, - [1031] = { - [anon_sym_DOT] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_RPAREN] = ACTIONS(2166), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_as] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2168), - [anon_sym_GT_GT] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_COLON] = ACTIONS(2166), - [anon_sym_else] = ACTIONS(2166), - [anon_sym_for] = ACTIONS(2166), - [anon_sym_in] = ACTIONS(2166), - [anon_sym_EQ] = ACTIONS(2168), - [anon_sym_not] = ACTIONS(2166), - [anon_sym_and] = ACTIONS(2166), - [anon_sym_or] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_PERCENT] = ACTIONS(2166), - [anon_sym_SLASH_SLASH] = ACTIONS(2166), - [anon_sym_STAR_STAR] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_CARET] = ACTIONS(2166), - [anon_sym_LT_LT] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_LT_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ] = ACTIONS(2166), - [anon_sym_GT_EQ] = ACTIONS(2166), - [anon_sym_GT] = ACTIONS(2168), - [anon_sym_LT_GT] = ACTIONS(2166), - [anon_sym_is] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_RBRACK] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), + [1089] = { + [anon_sym_DOT] = ACTIONS(2274), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_COMMA] = ACTIONS(2274), + [anon_sym_as] = ACTIONS(2274), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_COLON] = ACTIONS(2274), + [anon_sym_else] = ACTIONS(2274), + [anon_sym_for] = ACTIONS(2274), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(2276), + [anon_sym_not] = ACTIONS(2274), + [anon_sym_and] = ACTIONS(2274), + [anon_sym_or] = ACTIONS(2274), + [anon_sym_PLUS] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_PERCENT] = ACTIONS(2274), + [anon_sym_SLASH_SLASH] = ACTIONS(2274), + [anon_sym_STAR_STAR] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2274), + [anon_sym_CARET] = ACTIONS(2274), + [anon_sym_LT_LT] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_LT_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ] = ACTIONS(2274), + [anon_sym_GT_EQ] = ACTIONS(2274), + [anon_sym_GT] = ACTIONS(2276), + [anon_sym_LT_GT] = ACTIONS(2274), + [anon_sym_is] = ACTIONS(2274), + [anon_sym_LBRACK] = ACTIONS(2274), + [anon_sym_RBRACK] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2274), [sym_comment] = ACTIONS(76), }, - [1032] = { - [sym_list_splat] = STATE(871), - [sym__expression] = STATE(914), - [sym__primary_expression] = STATE(467), + [1090] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(972), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -38476,72 +39790,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1529), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(2323), - [sym_string] = ACTIONS(790), + [anon_sym_RBRACE] = ACTIONS(2431), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [1033] = { - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_GT_GT] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_COLON] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2175), - [anon_sym_EQ] = ACTIONS(2177), - [anon_sym_not] = ACTIONS(2175), - [anon_sym_and] = ACTIONS(2175), - [anon_sym_or] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2177), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_SLASH_SLASH] = ACTIONS(2175), - [anon_sym_STAR_STAR] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2177), - [anon_sym_LT_GT] = ACTIONS(2175), - [anon_sym_is] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_RBRACK] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), + [1091] = { + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_RPAREN] = ACTIONS(2283), + [anon_sym_COMMA] = ACTIONS(2283), + [anon_sym_as] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2283), + [anon_sym_if] = ACTIONS(2283), + [anon_sym_COLON] = ACTIONS(2283), + [anon_sym_else] = ACTIONS(2283), + [anon_sym_for] = ACTIONS(2283), + [anon_sym_in] = ACTIONS(2283), + [anon_sym_EQ] = ACTIONS(2285), + [anon_sym_not] = ACTIONS(2283), + [anon_sym_and] = ACTIONS(2283), + [anon_sym_or] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2283), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(2283), + [anon_sym_STAR_STAR] = ACTIONS(2283), + [anon_sym_PIPE] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_CARET] = ACTIONS(2283), + [anon_sym_LT_LT] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_LT_GT] = ACTIONS(2283), + [anon_sym_is] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_RBRACK] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), [sym_comment] = ACTIONS(76), }, - [1034] = { - [sym_dictionary_splat] = STATE(919), - [sym__expression] = STATE(920), - [sym__primary_expression] = STATE(105), + [1092] = { + [sym_dictionary_splat] = STATE(977), + [sym__expression] = STATE(978), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -38555,7 +39869,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), [sym_dictionary_comprehension] = STATE(61), - [sym_pair] = STATE(919), + [sym_pair] = STATE(977), [sym_set] = STATE(61), [sym_set_comprehension] = STATE(61), [sym_parenthesized_expression] = STATE(61), @@ -38565,110 +39879,110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1539), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(2325), - [sym_string] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(2433), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [1035] = { - [anon_sym_DOT] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_RPAREN] = ACTIONS(2226), - [anon_sym_COMMA] = ACTIONS(2226), - [anon_sym_as] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2228), - [anon_sym_GT_GT] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_COLON] = ACTIONS(2226), - [anon_sym_else] = ACTIONS(2226), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_in] = ACTIONS(2226), - [anon_sym_EQ] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2226), - [anon_sym_and] = ACTIONS(2226), - [anon_sym_or] = ACTIONS(2226), - [anon_sym_PLUS] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2228), - [anon_sym_PERCENT] = ACTIONS(2226), - [anon_sym_SLASH_SLASH] = ACTIONS(2226), - [anon_sym_STAR_STAR] = ACTIONS(2226), - [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2226), - [anon_sym_CARET] = ACTIONS(2226), - [anon_sym_LT_LT] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2228), - [anon_sym_LT_EQ] = ACTIONS(2226), - [anon_sym_EQ_EQ] = ACTIONS(2226), - [anon_sym_BANG_EQ] = ACTIONS(2226), - [anon_sym_GT_EQ] = ACTIONS(2226), - [anon_sym_GT] = ACTIONS(2228), - [anon_sym_LT_GT] = ACTIONS(2226), - [anon_sym_is] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_RBRACK] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), + [1093] = { + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_RPAREN] = ACTIONS(2334), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_GT_GT] = ACTIONS(2334), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_COLON] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2334), + [anon_sym_for] = ACTIONS(2334), + [anon_sym_in] = ACTIONS(2334), + [anon_sym_EQ] = ACTIONS(2336), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_and] = ACTIONS(2334), + [anon_sym_or] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_SLASH] = ACTIONS(2336), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_SLASH_SLASH] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2336), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2336), + [anon_sym_LT_GT] = ACTIONS(2334), + [anon_sym_is] = ACTIONS(2334), + [anon_sym_LBRACK] = ACTIONS(2334), + [anon_sym_RBRACK] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), [sym_comment] = ACTIONS(76), }, - [1036] = { - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_RPAREN] = ACTIONS(2252), - [anon_sym_COMMA] = ACTIONS(2252), - [anon_sym_as] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_COLON] = ACTIONS(2252), - [anon_sym_else] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_in] = ACTIONS(2252), - [anon_sym_EQ] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2252), - [anon_sym_and] = ACTIONS(2252), - [anon_sym_or] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_SLASH] = ACTIONS(2254), - [anon_sym_PERCENT] = ACTIONS(2252), - [anon_sym_SLASH_SLASH] = ACTIONS(2252), - [anon_sym_STAR_STAR] = ACTIONS(2252), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_AMP] = ACTIONS(2252), - [anon_sym_CARET] = ACTIONS(2252), - [anon_sym_LT_LT] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_LT_EQ] = ACTIONS(2252), - [anon_sym_EQ_EQ] = ACTIONS(2252), - [anon_sym_BANG_EQ] = ACTIONS(2252), - [anon_sym_GT_EQ] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2254), - [anon_sym_LT_GT] = ACTIONS(2252), - [anon_sym_is] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_RBRACK] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2252), + [1094] = { + [anon_sym_DOT] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_RPAREN] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2362), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_COLON] = ACTIONS(2360), + [anon_sym_else] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_EQ] = ACTIONS(2362), + [anon_sym_not] = ACTIONS(2360), + [anon_sym_and] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_SLASH] = ACTIONS(2362), + [anon_sym_PERCENT] = ACTIONS(2360), + [anon_sym_SLASH_SLASH] = ACTIONS(2360), + [anon_sym_STAR_STAR] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2362), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2362), + [anon_sym_LT_GT] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2360), + [anon_sym_RBRACK] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2360), [sym_comment] = ACTIONS(76), }, - [1037] = { - [sym__expression] = STATE(1360), + [1095] = { + [sym__expression] = STATE(1439), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -38712,9 +40026,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(112), [sym_comment] = ACTIONS(76), }, - [1038] = { - [sym__expression_within_for_in_clause] = STATE(1362), - [sym__expression] = STATE(1363), + [1096] = { + [sym__expression_within_for_in_clause] = STATE(1441), + [sym__expression] = STATE(1442), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -38722,7 +40036,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -38745,7 +40059,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(94), [anon_sym_DASH] = ACTIONS(94), [anon_sym_TILDE] = ACTIONS(94), - [anon_sym_lambda] = ACTIONS(2327), + [anon_sym_lambda] = ACTIONS(2435), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), @@ -38759,9 +40073,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(112), [sym_comment] = ACTIONS(76), }, - [1039] = { - [sym__expression] = STATE(1365), - [sym__primary_expression] = STATE(1045), + [1097] = { + [sym__expression] = STATE(1444), + [sym__primary_expression] = STATE(1103), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -38786,26 +40100,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_lambda] = ACTIONS(1717), + [anon_sym_not] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), + [anon_sym_lambda] = ACTIONS(1783), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(1787), [sym_comment] = ACTIONS(76), }, - [1040] = { - [sym__primary_expression] = STATE(210), + [1098] = { + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -38824,13 +40138,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -38839,61 +40153,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1041] = { - [sym_lambda_parameters] = STATE(1367), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2329), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [1099] = { + [sym_lambda_parameters] = STATE(1446), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(2437), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [1042] = { - [aux_sym_concatenated_string_repeat1] = STATE(1368), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_RPAREN] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_for] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [1100] = { + [aux_sym_concatenated_string_repeat1] = STATE(1447), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_RPAREN] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_for] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [1043] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(1045), + [1101] = { + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(1103), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -38918,134 +40232,134 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_lambda] = ACTIONS(1717), + [anon_sym_not] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), + [anon_sym_lambda] = ACTIONS(1783), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(1787), [sym_comment] = ACTIONS(76), }, - [1044] = { - [anon_sym_RPAREN] = ACTIONS(2331), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_and] = ACTIONS(2333), - [anon_sym_or] = ACTIONS(2335), + [1102] = { + [anon_sym_RPAREN] = ACTIONS(2439), + [anon_sym_if] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_and] = ACTIONS(2441), + [anon_sym_or] = ACTIONS(2443), [sym_comment] = ACTIONS(76), }, - [1045] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(1382), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_GT_GT] = ACTIONS(2339), - [anon_sym_if] = ACTIONS(296), - [anon_sym_for] = ACTIONS(296), - [anon_sym_in] = ACTIONS(2341), - [anon_sym_not] = ACTIONS(2343), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_SLASH_SLASH] = ACTIONS(2347), - [anon_sym_STAR_STAR] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_CARET] = ACTIONS(2355), - [anon_sym_LT_LT] = ACTIONS(2339), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_LT_EQ] = ACTIONS(2341), - [anon_sym_EQ_EQ] = ACTIONS(2341), - [anon_sym_BANG_EQ] = ACTIONS(2341), - [anon_sym_GT_EQ] = ACTIONS(2341), - [anon_sym_GT] = ACTIONS(2357), - [anon_sym_LT_GT] = ACTIONS(2341), - [anon_sym_is] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(434), + [1103] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(1461), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(310), + [anon_sym_for] = ACTIONS(310), + [anon_sym_in] = ACTIONS(2449), + [anon_sym_not] = ACTIONS(2451), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2455), + [anon_sym_SLASH_SLASH] = ACTIONS(2455), + [anon_sym_STAR_STAR] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2459), + [anon_sym_AMP] = ACTIONS(2461), + [anon_sym_CARET] = ACTIONS(2463), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_is] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1046] = { - [sym_for_in_clause] = STATE(604), - [sym_if_clause] = STATE(604), - [aux_sym__comprehension_body_repeat1] = STATE(1046), - [anon_sym_RPAREN] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2366), + [1104] = { + [sym_for_in_clause] = STATE(632), + [sym_if_clause] = STATE(632), + [aux_sym__comprehension_body_repeat1] = STATE(1104), + [anon_sym_RPAREN] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2474), [sym_comment] = ACTIONS(76), }, - [1047] = { - [sym__newline] = ACTIONS(2369), - [anon_sym_DOT] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_COMMA] = ACTIONS(2369), - [anon_sym_STAR] = ACTIONS(2371), - [anon_sym_GT_GT] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_in] = ACTIONS(2369), - [anon_sym_EQ] = ACTIONS(2371), - [anon_sym_not] = ACTIONS(2369), - [anon_sym_and] = ACTIONS(2369), - [anon_sym_or] = ACTIONS(2369), - [anon_sym_PLUS] = ACTIONS(2371), - [anon_sym_DASH] = ACTIONS(2371), - [anon_sym_SLASH] = ACTIONS(2371), - [anon_sym_PERCENT] = ACTIONS(2371), - [anon_sym_SLASH_SLASH] = ACTIONS(2371), - [anon_sym_STAR_STAR] = ACTIONS(2371), - [anon_sym_PIPE] = ACTIONS(2371), - [anon_sym_AMP] = ACTIONS(2371), - [anon_sym_CARET] = ACTIONS(2371), - [anon_sym_LT_LT] = ACTIONS(2371), - [anon_sym_LT] = ACTIONS(2371), - [anon_sym_LT_EQ] = ACTIONS(2369), - [anon_sym_EQ_EQ] = ACTIONS(2369), - [anon_sym_BANG_EQ] = ACTIONS(2369), - [anon_sym_GT_EQ] = ACTIONS(2369), - [anon_sym_GT] = ACTIONS(2371), - [anon_sym_LT_GT] = ACTIONS(2369), - [anon_sym_is] = ACTIONS(2369), - [anon_sym_PLUS_EQ] = ACTIONS(2369), - [anon_sym_DASH_EQ] = ACTIONS(2369), - [anon_sym_STAR_EQ] = ACTIONS(2369), - [anon_sym_SLASH_EQ] = ACTIONS(2369), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2369), - [anon_sym_PERCENT_EQ] = ACTIONS(2369), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2369), - [anon_sym_GT_GT_EQ] = ACTIONS(2369), - [anon_sym_LT_LT_EQ] = ACTIONS(2369), - [anon_sym_AMP_EQ] = ACTIONS(2369), - [anon_sym_CARET_EQ] = ACTIONS(2369), - [anon_sym_PIPE_EQ] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2369), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2369), + [1105] = { + [sym__newline] = ACTIONS(2477), + [anon_sym_DOT] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_GT_GT] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_in] = ACTIONS(2477), + [anon_sym_EQ] = ACTIONS(2479), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_and] = ACTIONS(2477), + [anon_sym_or] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_SLASH] = ACTIONS(2479), + [anon_sym_PERCENT] = ACTIONS(2479), + [anon_sym_SLASH_SLASH] = ACTIONS(2479), + [anon_sym_STAR_STAR] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_LT_LT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT_GT] = ACTIONS(2477), + [anon_sym_is] = ACTIONS(2477), + [anon_sym_PLUS_EQ] = ACTIONS(2477), + [anon_sym_DASH_EQ] = ACTIONS(2477), + [anon_sym_STAR_EQ] = ACTIONS(2477), + [anon_sym_SLASH_EQ] = ACTIONS(2477), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2477), + [anon_sym_PERCENT_EQ] = ACTIONS(2477), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2477), + [anon_sym_GT_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_LT_EQ] = ACTIONS(2477), + [anon_sym_AMP_EQ] = ACTIONS(2477), + [anon_sym_CARET_EQ] = ACTIONS(2477), + [anon_sym_PIPE_EQ] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2477), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2477), }, - [1048] = { - [sym__expression] = STATE(596), - [sym__primary_expression] = STATE(221), + [1106] = { + [sym__expression] = STATE(624), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_yield] = STATE(597), + [sym_yield] = STATE(625), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -39064,70 +40378,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_yield] = ACTIONS(98), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1049] = { - [anon_sym_DOT] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2264), - [anon_sym_RPAREN] = ACTIONS(2264), - [anon_sym_COMMA] = ACTIONS(2264), - [anon_sym_as] = ACTIONS(2264), - [anon_sym_STAR] = ACTIONS(2266), - [anon_sym_GT_GT] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_COLON] = ACTIONS(2264), - [anon_sym_else] = ACTIONS(2264), - [anon_sym_for] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2264), - [anon_sym_EQ] = ACTIONS(2266), - [anon_sym_not] = ACTIONS(2264), - [anon_sym_and] = ACTIONS(2264), - [anon_sym_or] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2266), - [anon_sym_PERCENT] = ACTIONS(2264), - [anon_sym_SLASH_SLASH] = ACTIONS(2264), - [anon_sym_STAR_STAR] = ACTIONS(2264), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_CARET] = ACTIONS(2264), - [anon_sym_LT_LT] = ACTIONS(2264), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_LT_EQ] = ACTIONS(2264), - [anon_sym_EQ_EQ] = ACTIONS(2264), - [anon_sym_BANG_EQ] = ACTIONS(2264), - [anon_sym_GT_EQ] = ACTIONS(2264), - [anon_sym_GT] = ACTIONS(2266), - [anon_sym_LT_GT] = ACTIONS(2264), - [anon_sym_is] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2264), - [anon_sym_RBRACK] = ACTIONS(2264), - [anon_sym_RBRACE] = ACTIONS(2264), + [1107] = { + [anon_sym_DOT] = ACTIONS(2372), + [anon_sym_LPAREN] = ACTIONS(2372), + [anon_sym_RPAREN] = ACTIONS(2372), + [anon_sym_COMMA] = ACTIONS(2372), + [anon_sym_as] = ACTIONS(2372), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_GT_GT] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_COLON] = ACTIONS(2372), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_in] = ACTIONS(2372), + [anon_sym_EQ] = ACTIONS(2374), + [anon_sym_not] = ACTIONS(2372), + [anon_sym_and] = ACTIONS(2372), + [anon_sym_or] = ACTIONS(2372), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_SLASH] = ACTIONS(2374), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_SLASH_SLASH] = ACTIONS(2372), + [anon_sym_STAR_STAR] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2372), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_CARET] = ACTIONS(2372), + [anon_sym_LT_LT] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_LT_EQ] = ACTIONS(2372), + [anon_sym_EQ_EQ] = ACTIONS(2372), + [anon_sym_BANG_EQ] = ACTIONS(2372), + [anon_sym_GT_EQ] = ACTIONS(2372), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_LT_GT] = ACTIONS(2372), + [anon_sym_is] = ACTIONS(2372), + [anon_sym_LBRACK] = ACTIONS(2372), + [anon_sym_RBRACK] = ACTIONS(2372), + [anon_sym_RBRACE] = ACTIONS(2372), [sym_comment] = ACTIONS(76), }, - [1050] = { - [sym_list_splat] = STATE(1320), - [sym_dictionary_splat] = STATE(1320), - [sym__expression] = STATE(1321), - [sym__primary_expression] = STATE(221), + [1108] = { + [sym_list_splat] = STATE(1399), + [sym_dictionary_splat] = STATE(1399), + [sym__expression] = STATE(1400), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -39137,7 +40451,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_keyword_argument] = STATE(1320), + [sym_keyword_argument] = STATE(1399), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -39151,73 +40465,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_print] = ACTIONS(876), - [anon_sym_exec] = ACTIONS(876), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_RPAREN] = ACTIONS(2481), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(878), + [sym_identifier] = ACTIONS(914), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1051] = { - [aux_sym_argument_list_repeat1] = STATE(1323), - [anon_sym_RPAREN] = ACTIONS(2373), - [anon_sym_COMMA] = ACTIONS(2375), + [1109] = { + [aux_sym_argument_list_repeat1] = STATE(1402), + [anon_sym_RPAREN] = ACTIONS(2481), + [anon_sym_COMMA] = ACTIONS(2483), [sym_comment] = ACTIONS(76), }, - [1052] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_SLASH_SLASH] = ACTIONS(420), - [anon_sym_STAR_STAR] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(424), - [anon_sym_AMP] = ACTIONS(426), - [anon_sym_CARET] = ACTIONS(428), - [anon_sym_LT_LT] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), + [1110] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(2380), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_GT_GT] = ACTIONS(426), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(424), + [anon_sym_PERCENT] = ACTIONS(434), + [anon_sym_SLASH_SLASH] = ACTIONS(434), + [anon_sym_STAR_STAR] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_AMP] = ACTIONS(440), + [anon_sym_CARET] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1053] = { - [sym__expression] = STATE(1330), - [sym__primary_expression] = STATE(538), + [1111] = { + [sym__expression] = STATE(1409), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -39226,7 +40540,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_lambda] = STATE(67), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), - [sym_slice] = STATE(1331), + [sym_slice] = STATE(1410), [sym_call] = STATE(61), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), @@ -39242,153 +40556,151 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(920), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(2377), + [anon_sym_RBRACK] = ACTIONS(2485), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [1054] = { - [anon_sym_DOT] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_RPAREN] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2284), - [anon_sym_as] = ACTIONS(2284), - [anon_sym_STAR] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_COLON] = ACTIONS(2284), - [anon_sym_else] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_EQ] = ACTIONS(2286), - [anon_sym_not] = ACTIONS(2284), - [anon_sym_and] = ACTIONS(2284), - [anon_sym_or] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2286), - [anon_sym_PERCENT] = ACTIONS(2284), - [anon_sym_SLASH_SLASH] = ACTIONS(2284), - [anon_sym_STAR_STAR] = ACTIONS(2284), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2284), - [anon_sym_LT_LT] = ACTIONS(2284), - [anon_sym_LT] = ACTIONS(2286), - [anon_sym_LT_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_GT_EQ] = ACTIONS(2284), - [anon_sym_GT] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2284), - [anon_sym_is] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2284), - [anon_sym_RBRACK] = ACTIONS(2284), - [anon_sym_RBRACE] = ACTIONS(2284), + [1112] = { + [anon_sym_DOT] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2392), + [anon_sym_RPAREN] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2392), + [anon_sym_as] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_COLON] = ACTIONS(2392), + [anon_sym_else] = ACTIONS(2392), + [anon_sym_for] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_EQ] = ACTIONS(2394), + [anon_sym_not] = ACTIONS(2392), + [anon_sym_and] = ACTIONS(2392), + [anon_sym_or] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2394), + [anon_sym_PERCENT] = ACTIONS(2392), + [anon_sym_SLASH_SLASH] = ACTIONS(2392), + [anon_sym_STAR_STAR] = ACTIONS(2392), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_LT_EQ] = ACTIONS(2392), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_GT_EQ] = ACTIONS(2392), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_LT_GT] = ACTIONS(2392), + [anon_sym_is] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2392), + [anon_sym_RBRACK] = ACTIONS(2392), + [anon_sym_RBRACE] = ACTIONS(2392), [sym_comment] = ACTIONS(76), }, - [1055] = { - [aux_sym_subscript_repeat1] = STATE(1336), - [anon_sym_COMMA] = ACTIONS(2379), - [anon_sym_RBRACK] = ACTIONS(2377), + [1113] = { + [aux_sym_subscript_repeat1] = STATE(1415), + [anon_sym_COMMA] = ACTIONS(2487), + [anon_sym_RBRACK] = ACTIONS(2485), [sym_comment] = ACTIONS(76), }, - [1056] = { - [sym__newline] = ACTIONS(1699), - [anon_sym_from] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_COMMA] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_in] = ACTIONS(1699), - [anon_sym_not] = ACTIONS(1699), - [anon_sym_and] = ACTIONS(1699), - [anon_sym_or] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_SLASH] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1699), - [anon_sym_SLASH_SLASH] = ACTIONS(1699), - [anon_sym_STAR_STAR] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_LT_LT] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_GT] = ACTIONS(1699), - [anon_sym_is] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1699), + [1114] = { + [sym__newline] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_GT_GT] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_not] = ACTIONS(1765), + [anon_sym_and] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_PERCENT] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(1765), + [anon_sym_STAR_STAR] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_LT_GT] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1765), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1765), }, - [1057] = { - [sym__newline] = ACTIONS(1709), - [anon_sym_from] = ACTIONS(1709), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_GT_GT] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_in] = ACTIONS(1709), - [anon_sym_not] = ACTIONS(1709), - [anon_sym_and] = ACTIONS(1709), - [anon_sym_or] = ACTIONS(1709), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_PERCENT] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(1709), - [anon_sym_STAR_STAR] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1709), - [anon_sym_CARET] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1709), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1709), - [anon_sym_BANG_EQ] = ACTIONS(1709), - [anon_sym_GT_EQ] = ACTIONS(1709), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_LT_GT] = ACTIONS(1709), - [anon_sym_is] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1709), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1709), + [1115] = { + [sym__newline] = ACTIONS(1775), + [anon_sym_DOT] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_COMMA] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_GT_GT] = ACTIONS(1775), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_in] = ACTIONS(1775), + [anon_sym_not] = ACTIONS(1775), + [anon_sym_and] = ACTIONS(1775), + [anon_sym_or] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_SLASH] = ACTIONS(1777), + [anon_sym_PERCENT] = ACTIONS(1775), + [anon_sym_SLASH_SLASH] = ACTIONS(1775), + [anon_sym_STAR_STAR] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_LT_LT] = ACTIONS(1775), + [anon_sym_LT] = ACTIONS(1777), + [anon_sym_LT_EQ] = ACTIONS(1775), + [anon_sym_EQ_EQ] = ACTIONS(1775), + [anon_sym_BANG_EQ] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1775), + [anon_sym_GT] = ACTIONS(1777), + [anon_sym_LT_GT] = ACTIONS(1775), + [anon_sym_is] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(1775), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1775), }, - [1058] = { - [sym__expression] = STATE(596), - [sym__primary_expression] = STATE(221), + [1116] = { + [sym__expression] = STATE(624), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_yield] = STATE(597), + [sym_yield] = STATE(625), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -39405,76 +40717,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2489), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_yield] = ACTIONS(98), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1059] = { - [sym__newline] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(456), - [anon_sym_and] = ACTIONS(458), - [anon_sym_or] = ACTIONS(460), + [1117] = { + [sym__newline] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(470), + [anon_sym_and] = ACTIONS(472), + [anon_sym_or] = ACTIONS(474), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2111), + [sym__semicolon] = ACTIONS(2219), }, - [1060] = { - [sym__newline] = ACTIONS(2119), - [anon_sym_from] = ACTIONS(2119), - [anon_sym_DOT] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_GT_GT] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_in] = ACTIONS(2119), - [anon_sym_not] = ACTIONS(2119), - [anon_sym_and] = ACTIONS(2119), - [anon_sym_or] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2119), - [anon_sym_DASH] = ACTIONS(2119), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_PERCENT] = ACTIONS(2119), - [anon_sym_SLASH_SLASH] = ACTIONS(2119), - [anon_sym_STAR_STAR] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_LT_LT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_LT_EQ] = ACTIONS(2119), - [anon_sym_EQ_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2119), - [anon_sym_GT] = ACTIONS(2121), - [anon_sym_LT_GT] = ACTIONS(2119), - [anon_sym_is] = ACTIONS(2119), - [anon_sym_LBRACK] = ACTIONS(2119), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2119), + [1118] = { + [sym__newline] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_COMMA] = ACTIONS(2227), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_GT_GT] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_in] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(2227), + [anon_sym_and] = ACTIONS(2227), + [anon_sym_or] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_PERCENT] = ACTIONS(2227), + [anon_sym_SLASH_SLASH] = ACTIONS(2227), + [anon_sym_STAR_STAR] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_LT_LT] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ] = ACTIONS(2227), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_GT] = ACTIONS(2229), + [anon_sym_LT_GT] = ACTIONS(2227), + [anon_sym_is] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2227), }, - [1061] = { - [sym_list_splat] = STATE(871), - [sym__expression] = STATE(872), - [sym__primary_expression] = STATE(435), + [1119] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(930), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -39497,102 +40808,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(222), + [anon_sym_STAR] = ACTIONS(236), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(2383), + [anon_sym_RBRACK] = ACTIONS(2491), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [1062] = { - [sym__newline] = ACTIONS(2134), - [anon_sym_from] = ACTIONS(2134), - [anon_sym_DOT] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2134), - [anon_sym_COMMA] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_GT_GT] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_not] = ACTIONS(2134), - [anon_sym_and] = ACTIONS(2134), - [anon_sym_or] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_SLASH] = ACTIONS(2136), - [anon_sym_PERCENT] = ACTIONS(2134), - [anon_sym_SLASH_SLASH] = ACTIONS(2134), - [anon_sym_STAR_STAR] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_AMP] = ACTIONS(2134), - [anon_sym_CARET] = ACTIONS(2134), - [anon_sym_LT_LT] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2136), - [anon_sym_LT_EQ] = ACTIONS(2134), - [anon_sym_EQ_EQ] = ACTIONS(2134), - [anon_sym_BANG_EQ] = ACTIONS(2134), - [anon_sym_GT_EQ] = ACTIONS(2134), - [anon_sym_GT] = ACTIONS(2136), - [anon_sym_LT_GT] = ACTIONS(2134), - [anon_sym_is] = ACTIONS(2134), - [anon_sym_LBRACK] = ACTIONS(2134), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2134), + [1120] = { + [sym__newline] = ACTIONS(2242), + [anon_sym_DOT] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_COMMA] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_in] = ACTIONS(2242), + [anon_sym_not] = ACTIONS(2242), + [anon_sym_and] = ACTIONS(2242), + [anon_sym_or] = ACTIONS(2242), + [anon_sym_PLUS] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2242), + [anon_sym_SLASH_SLASH] = ACTIONS(2242), + [anon_sym_STAR_STAR] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_CARET] = ACTIONS(2242), + [anon_sym_LT_LT] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2242), + [anon_sym_EQ_EQ] = ACTIONS(2242), + [anon_sym_BANG_EQ] = ACTIONS(2242), + [anon_sym_GT_EQ] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_LT_GT] = ACTIONS(2242), + [anon_sym_is] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2242), }, - [1063] = { - [sym__newline] = ACTIONS(2166), - [anon_sym_from] = ACTIONS(2166), - [anon_sym_DOT] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2168), - [anon_sym_GT_GT] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_in] = ACTIONS(2166), - [anon_sym_not] = ACTIONS(2166), - [anon_sym_and] = ACTIONS(2166), - [anon_sym_or] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_PERCENT] = ACTIONS(2166), - [anon_sym_SLASH_SLASH] = ACTIONS(2166), - [anon_sym_STAR_STAR] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_CARET] = ACTIONS(2166), - [anon_sym_LT_LT] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_LT_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ] = ACTIONS(2166), - [anon_sym_GT_EQ] = ACTIONS(2166), - [anon_sym_GT] = ACTIONS(2168), - [anon_sym_LT_GT] = ACTIONS(2166), - [anon_sym_is] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2166), + [1121] = { + [sym__newline] = ACTIONS(2274), + [anon_sym_DOT] = ACTIONS(2274), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_COMMA] = ACTIONS(2274), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_not] = ACTIONS(2274), + [anon_sym_and] = ACTIONS(2274), + [anon_sym_or] = ACTIONS(2274), + [anon_sym_PLUS] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_PERCENT] = ACTIONS(2274), + [anon_sym_SLASH_SLASH] = ACTIONS(2274), + [anon_sym_STAR_STAR] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2274), + [anon_sym_CARET] = ACTIONS(2274), + [anon_sym_LT_LT] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_LT_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ] = ACTIONS(2274), + [anon_sym_GT_EQ] = ACTIONS(2274), + [anon_sym_GT] = ACTIONS(2276), + [anon_sym_LT_GT] = ACTIONS(2274), + [anon_sym_is] = ACTIONS(2274), + [anon_sym_LBRACK] = ACTIONS(2274), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2274), }, - [1064] = { - [sym_list_splat] = STATE(871), - [sym__expression] = STATE(914), - [sym__primary_expression] = STATE(467), + [1122] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(972), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -39615,67 +40924,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1529), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(2385), - [sym_string] = ACTIONS(790), + [anon_sym_RBRACE] = ACTIONS(2493), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [1065] = { - [sym__newline] = ACTIONS(2175), - [anon_sym_from] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_GT_GT] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2175), - [anon_sym_not] = ACTIONS(2175), - [anon_sym_and] = ACTIONS(2175), - [anon_sym_or] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2177), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_SLASH_SLASH] = ACTIONS(2175), - [anon_sym_STAR_STAR] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2177), - [anon_sym_LT_GT] = ACTIONS(2175), - [anon_sym_is] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2175), + [1123] = { + [sym__newline] = ACTIONS(2283), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_COMMA] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2283), + [anon_sym_if] = ACTIONS(2283), + [anon_sym_in] = ACTIONS(2283), + [anon_sym_not] = ACTIONS(2283), + [anon_sym_and] = ACTIONS(2283), + [anon_sym_or] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2283), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(2283), + [anon_sym_STAR_STAR] = ACTIONS(2283), + [anon_sym_PIPE] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_CARET] = ACTIONS(2283), + [anon_sym_LT_LT] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_LT_GT] = ACTIONS(2283), + [anon_sym_is] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2283), }, - [1066] = { - [sym_dictionary_splat] = STATE(919), - [sym__expression] = STATE(920), - [sym__primary_expression] = STATE(105), + [1124] = { + [sym_dictionary_splat] = STATE(977), + [sym__expression] = STATE(978), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -39689,7 +40997,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), [sym_dictionary_comprehension] = STATE(61), - [sym_pair] = STATE(919), + [sym_pair] = STATE(977), [sym_set] = STATE(61), [sym_set_comprehension] = STATE(61), [sym_parenthesized_expression] = STATE(61), @@ -39699,100 +41007,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1539), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(2387), - [sym_string] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(2495), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [1067] = { - [sym__newline] = ACTIONS(2226), - [anon_sym_from] = ACTIONS(2226), - [anon_sym_DOT] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_COMMA] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2228), - [anon_sym_GT_GT] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_in] = ACTIONS(2226), - [anon_sym_not] = ACTIONS(2226), - [anon_sym_and] = ACTIONS(2226), - [anon_sym_or] = ACTIONS(2226), - [anon_sym_PLUS] = ACTIONS(2226), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2228), - [anon_sym_PERCENT] = ACTIONS(2226), - [anon_sym_SLASH_SLASH] = ACTIONS(2226), - [anon_sym_STAR_STAR] = ACTIONS(2226), - [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2226), - [anon_sym_CARET] = ACTIONS(2226), - [anon_sym_LT_LT] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2228), - [anon_sym_LT_EQ] = ACTIONS(2226), - [anon_sym_EQ_EQ] = ACTIONS(2226), - [anon_sym_BANG_EQ] = ACTIONS(2226), - [anon_sym_GT_EQ] = ACTIONS(2226), - [anon_sym_GT] = ACTIONS(2228), - [anon_sym_LT_GT] = ACTIONS(2226), - [anon_sym_is] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2226), + [1125] = { + [sym__newline] = ACTIONS(2334), + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_GT_GT] = ACTIONS(2334), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_in] = ACTIONS(2334), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_and] = ACTIONS(2334), + [anon_sym_or] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_SLASH] = ACTIONS(2336), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_SLASH_SLASH] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2336), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2336), + [anon_sym_LT_GT] = ACTIONS(2334), + [anon_sym_is] = ACTIONS(2334), + [anon_sym_LBRACK] = ACTIONS(2334), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2334), }, - [1068] = { - [sym__newline] = ACTIONS(2252), - [anon_sym_from] = ACTIONS(2252), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_COMMA] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_in] = ACTIONS(2252), - [anon_sym_not] = ACTIONS(2252), - [anon_sym_and] = ACTIONS(2252), - [anon_sym_or] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_SLASH] = ACTIONS(2254), - [anon_sym_PERCENT] = ACTIONS(2252), - [anon_sym_SLASH_SLASH] = ACTIONS(2252), - [anon_sym_STAR_STAR] = ACTIONS(2252), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_AMP] = ACTIONS(2252), - [anon_sym_CARET] = ACTIONS(2252), - [anon_sym_LT_LT] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_LT_EQ] = ACTIONS(2252), - [anon_sym_EQ_EQ] = ACTIONS(2252), - [anon_sym_BANG_EQ] = ACTIONS(2252), - [anon_sym_GT_EQ] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2254), - [anon_sym_LT_GT] = ACTIONS(2252), - [anon_sym_is] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2252), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2252), + [1126] = { + [sym__newline] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2362), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_not] = ACTIONS(2360), + [anon_sym_and] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_SLASH] = ACTIONS(2362), + [anon_sym_PERCENT] = ACTIONS(2360), + [anon_sym_SLASH_SLASH] = ACTIONS(2360), + [anon_sym_STAR_STAR] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2362), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2362), + [anon_sym_LT_GT] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2360), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2360), }, - [1069] = { - [sym__expression] = STATE(1391), + [1127] = { + [sym__expression] = STATE(1470), [sym__primary_expression] = STATE(82), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -39836,46 +41142,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(136), [sym_comment] = ACTIONS(76), }, - [1070] = { - [sym__newline] = ACTIONS(2264), - [anon_sym_from] = ACTIONS(2264), - [anon_sym_DOT] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2264), - [anon_sym_COMMA] = ACTIONS(2264), - [anon_sym_STAR] = ACTIONS(2266), - [anon_sym_GT_GT] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2264), - [anon_sym_not] = ACTIONS(2264), - [anon_sym_and] = ACTIONS(2264), - [anon_sym_or] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2266), - [anon_sym_PERCENT] = ACTIONS(2264), - [anon_sym_SLASH_SLASH] = ACTIONS(2264), - [anon_sym_STAR_STAR] = ACTIONS(2264), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_CARET] = ACTIONS(2264), - [anon_sym_LT_LT] = ACTIONS(2264), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_LT_EQ] = ACTIONS(2264), - [anon_sym_EQ_EQ] = ACTIONS(2264), - [anon_sym_BANG_EQ] = ACTIONS(2264), - [anon_sym_GT_EQ] = ACTIONS(2264), - [anon_sym_GT] = ACTIONS(2266), - [anon_sym_LT_GT] = ACTIONS(2264), - [anon_sym_is] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2264), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2264), + [1128] = { + [sym__newline] = ACTIONS(2372), + [anon_sym_DOT] = ACTIONS(2372), + [anon_sym_LPAREN] = ACTIONS(2372), + [anon_sym_COMMA] = ACTIONS(2372), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_GT_GT] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_in] = ACTIONS(2372), + [anon_sym_not] = ACTIONS(2372), + [anon_sym_and] = ACTIONS(2372), + [anon_sym_or] = ACTIONS(2372), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_SLASH] = ACTIONS(2374), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_SLASH_SLASH] = ACTIONS(2372), + [anon_sym_STAR_STAR] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2372), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_CARET] = ACTIONS(2372), + [anon_sym_LT_LT] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_LT_EQ] = ACTIONS(2372), + [anon_sym_EQ_EQ] = ACTIONS(2372), + [anon_sym_BANG_EQ] = ACTIONS(2372), + [anon_sym_GT_EQ] = ACTIONS(2372), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_LT_GT] = ACTIONS(2372), + [anon_sym_is] = ACTIONS(2372), + [anon_sym_LBRACK] = ACTIONS(2372), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2372), }, - [1071] = { - [sym_list_splat] = STATE(1320), - [sym_dictionary_splat] = STATE(1320), - [sym__expression] = STATE(1321), - [sym__primary_expression] = STATE(221), + [1129] = { + [sym_list_splat] = STATE(1399), + [sym_dictionary_splat] = STATE(1399), + [sym__expression] = STATE(1400), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -39885,7 +41190,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_keyword_argument] = STATE(1320), + [sym_keyword_argument] = STATE(1399), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -39899,73 +41204,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(2389), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_print] = ACTIONS(876), - [anon_sym_exec] = ACTIONS(876), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(878), + [sym_identifier] = ACTIONS(914), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1072] = { - [aux_sym_argument_list_repeat1] = STATE(1323), - [anon_sym_RPAREN] = ACTIONS(2389), - [anon_sym_COMMA] = ACTIONS(2391), + [1130] = { + [aux_sym_argument_list_repeat1] = STATE(1402), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_COMMA] = ACTIONS(2499), [sym_comment] = ACTIONS(76), }, - [1073] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(2272), - [anon_sym_DOT] = ACTIONS(462), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(468), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_SLASH_SLASH] = ACTIONS(476), - [anon_sym_STAR_STAR] = ACTIONS(478), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_AMP] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_LT_LT] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(490), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2272), + [1131] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(2380), + [anon_sym_DOT] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), + [anon_sym_CARET] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(504), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2380), }, - [1074] = { - [sym__expression] = STATE(1330), - [sym__primary_expression] = STATE(538), + [1132] = { + [sym__expression] = STATE(1409), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -39974,7 +41279,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_lambda] = STATE(67), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), - [sym_slice] = STATE(1331), + [sym_slice] = STATE(1410), [sym_call] = STATE(61), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), @@ -39990,79 +41295,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(920), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(2393), + [anon_sym_RBRACK] = ACTIONS(2501), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [1075] = { - [sym__newline] = ACTIONS(2284), - [anon_sym_from] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2284), - [anon_sym_STAR] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_not] = ACTIONS(2284), - [anon_sym_and] = ACTIONS(2284), - [anon_sym_or] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2286), - [anon_sym_PERCENT] = ACTIONS(2284), - [anon_sym_SLASH_SLASH] = ACTIONS(2284), - [anon_sym_STAR_STAR] = ACTIONS(2284), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2284), - [anon_sym_LT_LT] = ACTIONS(2284), - [anon_sym_LT] = ACTIONS(2286), - [anon_sym_LT_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_GT_EQ] = ACTIONS(2284), - [anon_sym_GT] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2284), - [anon_sym_is] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2284), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2284), + [1133] = { + [sym__newline] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_not] = ACTIONS(2392), + [anon_sym_and] = ACTIONS(2392), + [anon_sym_or] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2394), + [anon_sym_PERCENT] = ACTIONS(2392), + [anon_sym_SLASH_SLASH] = ACTIONS(2392), + [anon_sym_STAR_STAR] = ACTIONS(2392), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_LT_EQ] = ACTIONS(2392), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_GT_EQ] = ACTIONS(2392), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_LT_GT] = ACTIONS(2392), + [anon_sym_is] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2392), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2392), }, - [1076] = { - [aux_sym_subscript_repeat1] = STATE(1336), - [anon_sym_COMMA] = ACTIONS(2395), - [anon_sym_RBRACK] = ACTIONS(2393), + [1134] = { + [aux_sym_subscript_repeat1] = STATE(1415), + [anon_sym_COMMA] = ACTIONS(2503), + [anon_sym_RBRACK] = ACTIONS(2501), [sym_comment] = ACTIONS(76), }, - [1077] = { - [sym__newline] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_and] = ACTIONS(1166), - [anon_sym_or] = ACTIONS(1168), + [1135] = { + [sym__newline] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_and] = ACTIONS(1202), + [anon_sym_or] = ACTIONS(1204), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1357), + [sym__semicolon] = ACTIONS(1423), }, - [1078] = { - [sym__expression] = STATE(1396), - [sym__primary_expression] = STATE(310), + [1136] = { + [sym__expression] = STATE(1475), + [sym__primary_expression] = STATE(316), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), [sym_binary_operator] = STATE(76), @@ -40087,181 +41391,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(502), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_lambda] = ACTIONS(506), + [anon_sym_not] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_lambda] = ACTIONS(520), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), [sym_true] = ACTIONS(132), [sym_false] = ACTIONS(132), [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(510), + [anon_sym_await] = ACTIONS(524), [sym_comment] = ACTIONS(76), }, - [1079] = { - [aux_sym_concatenated_string_repeat1] = STATE(1079), - [sym__newline] = ACTIONS(1499), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1776), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1499), + [1137] = { + [aux_sym_concatenated_string_repeat1] = STATE(1137), + [sym__newline] = ACTIONS(1565), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1842), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1565), }, - [1080] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(2397), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1138] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(2505), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1081] = { - [sym__newline] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(1166), - [anon_sym_or] = ACTIONS(1550), + [1139] = { + [sym__newline] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(1202), + [anon_sym_or] = ACTIONS(1616), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1550), + [sym__semicolon] = ACTIONS(1616), }, - [1082] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [1140] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [1083] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_SLASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1180), - [anon_sym_SLASH_SLASH] = ACTIONS(1180), - [anon_sym_STAR_STAR] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [1141] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_SLASH] = ACTIONS(1206), + [anon_sym_PERCENT] = ACTIONS(1216), + [anon_sym_SLASH_SLASH] = ACTIONS(1216), + [anon_sym_STAR_STAR] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [1084] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1581), - [anon_sym_DOT] = ACTIONS(462), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_SLASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1180), - [anon_sym_SLASH_SLASH] = ACTIONS(1180), - [anon_sym_STAR_STAR] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1172), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(490), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1581), + [1142] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(1647), + [anon_sym_DOT] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_SLASH] = ACTIONS(1206), + [anon_sym_PERCENT] = ACTIONS(1216), + [anon_sym_SLASH_SLASH] = ACTIONS(1216), + [anon_sym_STAR_STAR] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1224), + [anon_sym_LT_LT] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(504), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1647), }, - [1085] = { - [sym__primary_expression] = STATE(1398), + [1143] = { + [sym__primary_expression] = STATE(1477), [sym_binary_operator] = STATE(76), [sym_unary_operator] = STATE(76), [sym_attribute] = STATE(76), @@ -40280,13 +41584,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(138), [anon_sym_print] = ACTIONS(118), [anon_sym_exec] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), [anon_sym_LBRACK] = ACTIONS(142), [sym_ellipsis] = ACTIONS(126), [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), + [sym_string] = ACTIONS(522), [sym_integer] = ACTIONS(132), [sym_float] = ACTIONS(132), [sym_identifier] = ACTIONS(134), @@ -40295,312 +41599,533 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(132), [sym_comment] = ACTIONS(76), }, - [1086] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1180), - [anon_sym_SLASH_SLASH] = ACTIONS(1180), - [anon_sym_STAR_STAR] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [1144] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1206), + [anon_sym_PERCENT] = ACTIONS(1216), + [anon_sym_SLASH_SLASH] = ACTIONS(1216), + [anon_sym_STAR_STAR] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [1087] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_SLASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1180), - [anon_sym_SLASH_SLASH] = ACTIONS(1180), - [anon_sym_STAR_STAR] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1172), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [1145] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_SLASH] = ACTIONS(1206), + [anon_sym_PERCENT] = ACTIONS(1216), + [anon_sym_SLASH_SLASH] = ACTIONS(1216), + [anon_sym_STAR_STAR] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1224), + [anon_sym_LT_LT] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [1088] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_SLASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1180), - [anon_sym_SLASH_SLASH] = ACTIONS(1180), - [anon_sym_STAR_STAR] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1172), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [1146] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_SLASH] = ACTIONS(1206), + [anon_sym_PERCENT] = ACTIONS(1216), + [anon_sym_SLASH_SLASH] = ACTIONS(1216), + [anon_sym_STAR_STAR] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1224), + [anon_sym_LT_LT] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [1089] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_SLASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1180), - [anon_sym_SLASH_SLASH] = ACTIONS(1180), - [anon_sym_STAR_STAR] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1172), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1577), + [1147] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_SLASH] = ACTIONS(1206), + [anon_sym_PERCENT] = ACTIONS(1216), + [anon_sym_SLASH_SLASH] = ACTIONS(1216), + [anon_sym_STAR_STAR] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1643), }, - [1090] = { - [aux_sym_comparison_operator_repeat1] = STATE(1090), - [sym__newline] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(2399), - [anon_sym_not] = ACTIONS(2402), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_LT_EQ] = ACTIONS(2399), - [anon_sym_EQ_EQ] = ACTIONS(2399), - [anon_sym_BANG_EQ] = ACTIONS(2399), - [anon_sym_GT_EQ] = ACTIONS(2399), - [anon_sym_GT] = ACTIONS(2405), - [anon_sym_LT_GT] = ACTIONS(2399), - [anon_sym_is] = ACTIONS(2408), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1581), + [1148] = { + [aux_sym_comparison_operator_repeat1] = STATE(1148), + [sym__newline] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(2507), + [anon_sym_not] = ACTIONS(2510), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_LT_EQ] = ACTIONS(2507), + [anon_sym_EQ_EQ] = ACTIONS(2507), + [anon_sym_BANG_EQ] = ACTIONS(2507), + [anon_sym_GT_EQ] = ACTIONS(2507), + [anon_sym_GT] = ACTIONS(2513), + [anon_sym_LT_GT] = ACTIONS(2507), + [anon_sym_is] = ACTIONS(2516), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1647), }, - [1091] = { - [sym__newline] = ACTIONS(2111), - [anon_sym_from] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(520), - [anon_sym_and] = ACTIONS(522), - [anon_sym_or] = ACTIONS(524), + [1149] = { + [sym__newline] = ACTIONS(1765), + [anon_sym_from] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_GT_GT] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_not] = ACTIONS(1765), + [anon_sym_and] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_PERCENT] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(1765), + [anon_sym_STAR_STAR] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_LT_GT] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1765), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1765), + }, + [1150] = { + [sym__newline] = ACTIONS(1775), + [anon_sym_from] = ACTIONS(1775), + [anon_sym_DOT] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_COMMA] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_GT_GT] = ACTIONS(1775), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_in] = ACTIONS(1775), + [anon_sym_not] = ACTIONS(1775), + [anon_sym_and] = ACTIONS(1775), + [anon_sym_or] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_SLASH] = ACTIONS(1777), + [anon_sym_PERCENT] = ACTIONS(1775), + [anon_sym_SLASH_SLASH] = ACTIONS(1775), + [anon_sym_STAR_STAR] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_LT_LT] = ACTIONS(1775), + [anon_sym_LT] = ACTIONS(1777), + [anon_sym_LT_EQ] = ACTIONS(1775), + [anon_sym_EQ_EQ] = ACTIONS(1775), + [anon_sym_BANG_EQ] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1775), + [anon_sym_GT] = ACTIONS(1777), + [anon_sym_LT_GT] = ACTIONS(1775), + [anon_sym_is] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(1775), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(1775), + }, + [1151] = { + [sym__expression] = STATE(624), + [sym__primary_expression] = STATE(227), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_yield] = STATE(625), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_RPAREN] = ACTIONS(2519), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(98), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(394), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2111), }, - [1092] = { - [sym__expression] = STATE(1399), - [sym__primary_expression] = STATE(95), - [sym_not_operator] = STATE(40), - [sym_boolean_operator] = STATE(40), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_comparison_operator] = STATE(40), - [sym_lambda] = STATE(40), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_conditional_expression] = STATE(40), - [sym_concatenated_string] = STATE(76), - [sym_await] = STATE(40), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_lambda] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(158), + [1152] = { + [sym__newline] = ACTIONS(2219), + [anon_sym_from] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(548), + [anon_sym_and] = ACTIONS(550), + [anon_sym_or] = ACTIONS(552), [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2219), }, - [1093] = { - [sym__expression] = STATE(690), - [sym__primary_expression] = STATE(95), - [sym_not_operator] = STATE(40), - [sym_boolean_operator] = STATE(40), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_comparison_operator] = STATE(40), - [sym_lambda] = STATE(40), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_conditional_expression] = STATE(40), - [sym_concatenated_string] = STATE(76), - [sym_await] = STATE(40), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_lambda] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(156), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(158), + [1153] = { + [sym__newline] = ACTIONS(2227), + [anon_sym_from] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_COMMA] = ACTIONS(2227), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_GT_GT] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_in] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(2227), + [anon_sym_and] = ACTIONS(2227), + [anon_sym_or] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_PERCENT] = ACTIONS(2227), + [anon_sym_SLASH_SLASH] = ACTIONS(2227), + [anon_sym_STAR_STAR] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_LT_LT] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ] = ACTIONS(2227), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_GT] = ACTIONS(2229), + [anon_sym_LT_GT] = ACTIONS(2227), + [anon_sym_is] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2227), + }, + [1154] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(930), + [sym__primary_expression] = STATE(463), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_RBRACK] = ACTIONS(2521), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(772), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [1094] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(2272), - [anon_sym_from] = ACTIONS(2272), - [anon_sym_DOT] = ACTIONS(462), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(526), - [anon_sym_GT_GT] = ACTIONS(528), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_SLASH_SLASH] = ACTIONS(536), - [anon_sym_STAR_STAR] = ACTIONS(538), - [anon_sym_PIPE] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(490), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2272), + [1155] = { + [sym__newline] = ACTIONS(2242), + [anon_sym_from] = ACTIONS(2242), + [anon_sym_DOT] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_COMMA] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_in] = ACTIONS(2242), + [anon_sym_not] = ACTIONS(2242), + [anon_sym_and] = ACTIONS(2242), + [anon_sym_or] = ACTIONS(2242), + [anon_sym_PLUS] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2242), + [anon_sym_SLASH_SLASH] = ACTIONS(2242), + [anon_sym_STAR_STAR] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_CARET] = ACTIONS(2242), + [anon_sym_LT_LT] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2242), + [anon_sym_EQ_EQ] = ACTIONS(2242), + [anon_sym_BANG_EQ] = ACTIONS(2242), + [anon_sym_GT_EQ] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_LT_GT] = ACTIONS(2242), + [anon_sym_is] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2242), }, - [1095] = { - [anon_sym_if] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(568), - [anon_sym_or] = ACTIONS(570), + [1156] = { + [sym__newline] = ACTIONS(2274), + [anon_sym_from] = ACTIONS(2274), + [anon_sym_DOT] = ACTIONS(2274), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_COMMA] = ACTIONS(2274), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_not] = ACTIONS(2274), + [anon_sym_and] = ACTIONS(2274), + [anon_sym_or] = ACTIONS(2274), + [anon_sym_PLUS] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2276), + [anon_sym_PERCENT] = ACTIONS(2274), + [anon_sym_SLASH_SLASH] = ACTIONS(2274), + [anon_sym_STAR_STAR] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2274), + [anon_sym_CARET] = ACTIONS(2274), + [anon_sym_LT_LT] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_LT_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ] = ACTIONS(2274), + [anon_sym_GT_EQ] = ACTIONS(2274), + [anon_sym_GT] = ACTIONS(2276), + [anon_sym_LT_GT] = ACTIONS(2274), + [anon_sym_is] = ACTIONS(2274), + [anon_sym_LBRACK] = ACTIONS(2274), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2274), + }, + [1157] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(972), + [sym__primary_expression] = STATE(495), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [anon_sym_RBRACE] = ACTIONS(2523), + [sym_string] = ACTIONS(826), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [1096] = { - [sym__expression] = STATE(1400), - [sym__primary_expression] = STATE(105), + [1158] = { + [sym__newline] = ACTIONS(2283), + [anon_sym_from] = ACTIONS(2283), + [anon_sym_DOT] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_COMMA] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2283), + [anon_sym_if] = ACTIONS(2283), + [anon_sym_in] = ACTIONS(2283), + [anon_sym_not] = ACTIONS(2283), + [anon_sym_and] = ACTIONS(2283), + [anon_sym_or] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2283), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(2283), + [anon_sym_STAR_STAR] = ACTIONS(2283), + [anon_sym_PIPE] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_CARET] = ACTIONS(2283), + [anon_sym_LT_LT] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_LT_GT] = ACTIONS(2283), + [anon_sym_is] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2283), + }, + [1159] = { + [sym_dictionary_splat] = STATE(977), + [sym__expression] = STATE(978), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -40614,6 +42139,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), [sym_dictionary_comprehension] = STATE(61), + [sym_pair] = STATE(977), [sym_set] = STATE(61), [sym_set_comprehension] = STATE(61), [sym_parenthesized_expression] = STATE(61), @@ -40623,96 +42149,527 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_STAR] = ACTIONS(1539), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [anon_sym_RBRACE] = ACTIONS(2525), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(186), + [sym_comment] = ACTIONS(76), + }, + [1160] = { + [sym__newline] = ACTIONS(2334), + [anon_sym_from] = ACTIONS(2334), + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_GT_GT] = ACTIONS(2334), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_in] = ACTIONS(2334), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_and] = ACTIONS(2334), + [anon_sym_or] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_SLASH] = ACTIONS(2336), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_SLASH_SLASH] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2336), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2336), + [anon_sym_LT_GT] = ACTIONS(2334), + [anon_sym_is] = ACTIONS(2334), + [anon_sym_LBRACK] = ACTIONS(2334), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2334), + }, + [1161] = { + [sym__newline] = ACTIONS(2360), + [anon_sym_from] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2362), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_not] = ACTIONS(2360), + [anon_sym_and] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_SLASH] = ACTIONS(2362), + [anon_sym_PERCENT] = ACTIONS(2360), + [anon_sym_SLASH_SLASH] = ACTIONS(2360), + [anon_sym_STAR_STAR] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2362), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2362), + [anon_sym_LT_GT] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2360), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2360), + }, + [1162] = { + [sym__expression] = STATE(1482), + [sym__primary_expression] = STATE(100), + [sym_not_operator] = STATE(101), + [sym_boolean_operator] = STATE(101), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_comparison_operator] = STATE(101), + [sym_lambda] = STATE(101), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_conditional_expression] = STATE(101), + [sym_concatenated_string] = STATE(94), + [sym_await] = STATE(101), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_not] = ACTIONS(154), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_lambda] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), [anon_sym_await] = ACTIONS(172), [sym_comment] = ACTIONS(76), }, - [1097] = { - [ts_builtin_sym_end] = ACTIONS(1892), - [anon_sym_import] = ACTIONS(1894), - [anon_sym_from] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_print] = ACTIONS(1894), - [anon_sym_assert] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_del] = ACTIONS(1894), - [anon_sym_raise] = ACTIONS(1894), - [sym_pass_statement] = ACTIONS(1894), - [sym_break_statement] = ACTIONS(1894), - [sym_continue_statement] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_elif] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_with] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1894), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_global] = ACTIONS(1894), - [anon_sym_nonlocal] = ACTIONS(1894), - [anon_sym_exec] = ACTIONS(1894), - [anon_sym_class] = ACTIONS(1894), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_lambda] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1892), - [sym_ellipsis] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1892), - [sym_string] = ACTIONS(1894), - [sym_integer] = ACTIONS(1894), - [sym_float] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [sym_true] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [sym_none] = ACTIONS(1894), - [anon_sym_await] = ACTIONS(1894), + [1163] = { + [sym__expression] = STATE(735), + [sym__primary_expression] = STATE(100), + [sym_not_operator] = STATE(101), + [sym_boolean_operator] = STATE(101), + [sym_binary_operator] = STATE(94), + [sym_unary_operator] = STATE(94), + [sym_comparison_operator] = STATE(101), + [sym_lambda] = STATE(101), + [sym_attribute] = STATE(94), + [sym_subscript] = STATE(94), + [sym_call] = STATE(94), + [sym_list] = STATE(94), + [sym_list_comprehension] = STATE(94), + [sym_dictionary] = STATE(94), + [sym_dictionary_comprehension] = STATE(94), + [sym_set] = STATE(94), + [sym_set_comprehension] = STATE(94), + [sym_parenthesized_expression] = STATE(94), + [sym_tuple] = STATE(94), + [sym_generator_expression] = STATE(94), + [sym_conditional_expression] = STATE(101), + [sym_concatenated_string] = STATE(94), + [sym_await] = STATE(101), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_print] = ACTIONS(152), + [anon_sym_exec] = ACTIONS(152), + [anon_sym_not] = ACTIONS(154), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_lambda] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(160), + [sym_ellipsis] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_string] = ACTIONS(166), + [sym_integer] = ACTIONS(168), + [sym_float] = ACTIONS(168), + [sym_identifier] = ACTIONS(170), + [sym_true] = ACTIONS(168), + [sym_false] = ACTIONS(168), + [sym_none] = ACTIONS(168), + [anon_sym_await] = ACTIONS(172), [sym_comment] = ACTIONS(76), }, - [1098] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [1164] = { + [sym__newline] = ACTIONS(2372), + [anon_sym_from] = ACTIONS(2372), + [anon_sym_DOT] = ACTIONS(2372), + [anon_sym_LPAREN] = ACTIONS(2372), + [anon_sym_COMMA] = ACTIONS(2372), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_GT_GT] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_in] = ACTIONS(2372), + [anon_sym_not] = ACTIONS(2372), + [anon_sym_and] = ACTIONS(2372), + [anon_sym_or] = ACTIONS(2372), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_SLASH] = ACTIONS(2374), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_SLASH_SLASH] = ACTIONS(2372), + [anon_sym_STAR_STAR] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2372), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_CARET] = ACTIONS(2372), + [anon_sym_LT_LT] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_LT_EQ] = ACTIONS(2372), + [anon_sym_EQ_EQ] = ACTIONS(2372), + [anon_sym_BANG_EQ] = ACTIONS(2372), + [anon_sym_GT_EQ] = ACTIONS(2372), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_LT_GT] = ACTIONS(2372), + [anon_sym_is] = ACTIONS(2372), + [anon_sym_LBRACK] = ACTIONS(2372), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2372), + }, + [1165] = { + [sym_list_splat] = STATE(1399), + [sym_dictionary_splat] = STATE(1399), + [sym__expression] = STATE(1400), + [sym__primary_expression] = STATE(227), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_keyword_argument] = STATE(1399), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_RPAREN] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(394), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(914), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(396), + [sym_comment] = ACTIONS(76), + }, + [1166] = { + [aux_sym_argument_list_repeat1] = STATE(1402), + [anon_sym_RPAREN] = ACTIONS(2527), + [anon_sym_COMMA] = ACTIONS(2529), + [sym_comment] = ACTIONS(76), + }, + [1167] = { + [sym_argument_list] = STATE(357), + [sym_generator_expression] = STATE(357), + [sym__newline] = ACTIONS(2380), + [anon_sym_from] = ACTIONS(2380), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_SLASH_SLASH] = ACTIONS(568), + [anon_sym_STAR_STAR] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(574), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(582), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2380), + }, + [1168] = { + [sym__expression] = STATE(1409), + [sym__primary_expression] = STATE(566), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_slice] = STATE(1410), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_print] = ACTIONS(90), + [anon_sym_COLON] = ACTIONS(920), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_RBRACK] = ACTIONS(2531), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(928), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(930), + [sym_comment] = ACTIONS(76), + }, + [1169] = { + [sym__newline] = ACTIONS(2392), + [anon_sym_from] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_not] = ACTIONS(2392), + [anon_sym_and] = ACTIONS(2392), + [anon_sym_or] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2394), + [anon_sym_PERCENT] = ACTIONS(2392), + [anon_sym_SLASH_SLASH] = ACTIONS(2392), + [anon_sym_STAR_STAR] = ACTIONS(2392), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_LT_EQ] = ACTIONS(2392), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_GT_EQ] = ACTIONS(2392), + [anon_sym_GT] = ACTIONS(2394), + [anon_sym_LT_GT] = ACTIONS(2392), + [anon_sym_is] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2392), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2392), + }, + [1170] = { + [aux_sym_subscript_repeat1] = STATE(1415), + [anon_sym_COMMA] = ACTIONS(2533), + [anon_sym_RBRACK] = ACTIONS(2531), + [sym_comment] = ACTIONS(76), + }, + [1171] = { + [anon_sym_if] = ACTIONS(598), + [anon_sym_COLON] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(602), + [anon_sym_or] = ACTIONS(604), + [sym_comment] = ACTIONS(76), + }, + [1172] = { + [sym__expression] = STATE(1487), + [sym__primary_expression] = STATE(111), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(184), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(186), + [sym_comment] = ACTIONS(76), + }, + [1173] = { + [ts_builtin_sym_end] = ACTIONS(1993), + [anon_sym_import] = ACTIONS(1995), + [anon_sym_from] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_del] = ACTIONS(1995), + [anon_sym_raise] = ACTIONS(1995), + [sym_pass_statement] = ACTIONS(1995), + [sym_break_statement] = ACTIONS(1995), + [sym_continue_statement] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_elif] = ACTIONS(1995), + [anon_sym_else] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1995), + [anon_sym_with] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1995), + [anon_sym_global] = ACTIONS(1995), + [anon_sym_nonlocal] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_class] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(1993), + [anon_sym_not] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_lambda] = ACTIONS(1995), + [anon_sym_yield] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1993), + [sym_ellipsis] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [sym_string] = ACTIONS(1995), + [sym_integer] = ACTIONS(1995), + [sym_float] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1997), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_none] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(1995), + [sym_comment] = ACTIONS(76), + }, + [1174] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -40741,9 +42698,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1130), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(2411), + [aux_sym_module_repeat1] = STATE(1206), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(2535), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -40752,20 +42709,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -40786,64 +42743,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1099] = { - [ts_builtin_sym_end] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_from] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_print] = ACTIONS(552), - [anon_sym_assert] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_del] = ACTIONS(552), - [anon_sym_raise] = ACTIONS(552), - [sym_pass_statement] = ACTIONS(552), - [sym_break_statement] = ACTIONS(552), - [sym_continue_statement] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_elif] = ACTIONS(552), - [anon_sym_else] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_try] = ACTIONS(552), - [anon_sym_with] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_def] = ACTIONS(552), - [anon_sym_global] = ACTIONS(552), - [anon_sym_nonlocal] = ACTIONS(552), - [anon_sym_exec] = ACTIONS(552), - [anon_sym_class] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(550), - [anon_sym_not] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_TILDE] = ACTIONS(550), - [anon_sym_lambda] = ACTIONS(552), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_LBRACK] = ACTIONS(550), - [sym_ellipsis] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(550), - [sym_string] = ACTIONS(552), - [sym_integer] = ACTIONS(552), - [sym_float] = ACTIONS(552), - [sym_identifier] = ACTIONS(554), - [sym_true] = ACTIONS(552), - [sym_false] = ACTIONS(552), - [sym_none] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), + [1175] = { + [ts_builtin_sym_end] = ACTIONS(584), + [anon_sym_import] = ACTIONS(586), + [anon_sym_from] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_print] = ACTIONS(586), + [anon_sym_assert] = ACTIONS(586), + [anon_sym_return] = ACTIONS(586), + [anon_sym_del] = ACTIONS(586), + [anon_sym_raise] = ACTIONS(586), + [sym_pass_statement] = ACTIONS(586), + [sym_break_statement] = ACTIONS(586), + [sym_continue_statement] = ACTIONS(586), + [anon_sym_if] = ACTIONS(586), + [anon_sym_elif] = ACTIONS(586), + [anon_sym_else] = ACTIONS(586), + [anon_sym_for] = ACTIONS(586), + [anon_sym_while] = ACTIONS(586), + [anon_sym_try] = ACTIONS(586), + [anon_sym_with] = ACTIONS(586), + [anon_sym_async] = ACTIONS(586), + [anon_sym_def] = ACTIONS(586), + [anon_sym_global] = ACTIONS(586), + [anon_sym_nonlocal] = ACTIONS(586), + [anon_sym_exec] = ACTIONS(586), + [anon_sym_class] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_not] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_TILDE] = ACTIONS(584), + [anon_sym_lambda] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(584), + [sym_ellipsis] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(584), + [sym_string] = ACTIONS(586), + [sym_integer] = ACTIONS(586), + [sym_float] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [sym_true] = ACTIONS(586), + [sym_false] = ACTIONS(586), + [sym_none] = ACTIONS(586), + [anon_sym_await] = ACTIONS(586), [sym_comment] = ACTIONS(76), }, - [1100] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [1176] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -40871,7 +42828,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(2413), + [sym__newline] = ACTIONS(2537), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -40880,9 +42837,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -40905,15 +42862,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1101] = { - [aux_sym__simple_statements_repeat1] = STATE(335), - [sym__newline] = ACTIONS(2413), + [1177] = { + [aux_sym__simple_statements_repeat1] = STATE(362), + [sym__newline] = ACTIONS(2537), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2415), + [sym__semicolon] = ACTIONS(2539), }, - [1102] = { - [sym__expression] = STATE(1404), - [sym__primary_expression] = STATE(105), + [1178] = { + [sym__expression] = STATE(1491), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -40938,215 +42895,215 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [1103] = { - [anon_sym_COLON] = ACTIONS(2417), + [1179] = { + [anon_sym_COLON] = ACTIONS(2541), [sym_comment] = ACTIONS(76), }, - [1104] = { - [ts_builtin_sym_end] = ACTIONS(2419), - [anon_sym_import] = ACTIONS(2421), - [anon_sym_from] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_print] = ACTIONS(2421), - [anon_sym_assert] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_del] = ACTIONS(2421), - [anon_sym_raise] = ACTIONS(2421), - [sym_pass_statement] = ACTIONS(2421), - [sym_break_statement] = ACTIONS(2421), - [sym_continue_statement] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_elif] = ACTIONS(2421), - [anon_sym_else] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_with] = ACTIONS(2421), - [anon_sym_async] = ACTIONS(2421), - [anon_sym_def] = ACTIONS(2421), - [anon_sym_global] = ACTIONS(2421), - [anon_sym_nonlocal] = ACTIONS(2421), - [anon_sym_exec] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_AT] = ACTIONS(2419), - [anon_sym_not] = ACTIONS(2421), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_lambda] = ACTIONS(2421), - [anon_sym_yield] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(2419), - [sym_ellipsis] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [sym_string] = ACTIONS(2421), - [sym_integer] = ACTIONS(2421), - [sym_float] = ACTIONS(2421), - [sym_identifier] = ACTIONS(2423), - [sym_true] = ACTIONS(2421), - [sym_false] = ACTIONS(2421), - [sym_none] = ACTIONS(2421), - [anon_sym_await] = ACTIONS(2421), + [1180] = { + [ts_builtin_sym_end] = ACTIONS(2543), + [anon_sym_import] = ACTIONS(2545), + [anon_sym_from] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(2545), + [anon_sym_assert] = ACTIONS(2545), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_del] = ACTIONS(2545), + [anon_sym_raise] = ACTIONS(2545), + [sym_pass_statement] = ACTIONS(2545), + [sym_break_statement] = ACTIONS(2545), + [sym_continue_statement] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_elif] = ACTIONS(2545), + [anon_sym_else] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [anon_sym_with] = ACTIONS(2545), + [anon_sym_async] = ACTIONS(2545), + [anon_sym_def] = ACTIONS(2545), + [anon_sym_global] = ACTIONS(2545), + [anon_sym_nonlocal] = ACTIONS(2545), + [anon_sym_exec] = ACTIONS(2545), + [anon_sym_class] = ACTIONS(2545), + [anon_sym_AT] = ACTIONS(2543), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_lambda] = ACTIONS(2545), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_LBRACK] = ACTIONS(2543), + [sym_ellipsis] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2543), + [sym_string] = ACTIONS(2545), + [sym_integer] = ACTIONS(2545), + [sym_float] = ACTIONS(2545), + [sym_identifier] = ACTIONS(2547), + [sym_true] = ACTIONS(2545), + [sym_false] = ACTIONS(2545), + [sym_none] = ACTIONS(2545), + [anon_sym_await] = ACTIONS(2545), [sym_comment] = ACTIONS(76), }, - [1105] = { - [ts_builtin_sym_end] = ACTIONS(2425), - [anon_sym_import] = ACTIONS(2427), - [anon_sym_from] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_print] = ACTIONS(2427), - [anon_sym_assert] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_del] = ACTIONS(2427), - [anon_sym_raise] = ACTIONS(2427), - [sym_pass_statement] = ACTIONS(2427), - [sym_break_statement] = ACTIONS(2427), - [sym_continue_statement] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [anon_sym_try] = ACTIONS(2427), - [anon_sym_with] = ACTIONS(2427), - [anon_sym_async] = ACTIONS(2427), - [anon_sym_def] = ACTIONS(2427), - [anon_sym_global] = ACTIONS(2427), - [anon_sym_nonlocal] = ACTIONS(2427), - [anon_sym_exec] = ACTIONS(2427), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_AT] = ACTIONS(2425), - [anon_sym_not] = ACTIONS(2427), - [anon_sym_PLUS] = ACTIONS(2425), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_TILDE] = ACTIONS(2425), - [anon_sym_lambda] = ACTIONS(2427), - [anon_sym_yield] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2425), - [sym_ellipsis] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2425), - [sym_string] = ACTIONS(2427), - [sym_integer] = ACTIONS(2427), - [sym_float] = ACTIONS(2427), - [sym_identifier] = ACTIONS(2429), - [sym_true] = ACTIONS(2427), - [sym_false] = ACTIONS(2427), - [sym_none] = ACTIONS(2427), - [anon_sym_await] = ACTIONS(2427), + [1181] = { + [ts_builtin_sym_end] = ACTIONS(2549), + [anon_sym_import] = ACTIONS(2551), + [anon_sym_from] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_print] = ACTIONS(2551), + [anon_sym_assert] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_del] = ACTIONS(2551), + [anon_sym_raise] = ACTIONS(2551), + [sym_pass_statement] = ACTIONS(2551), + [sym_break_statement] = ACTIONS(2551), + [sym_continue_statement] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_with] = ACTIONS(2551), + [anon_sym_async] = ACTIONS(2551), + [anon_sym_def] = ACTIONS(2551), + [anon_sym_global] = ACTIONS(2551), + [anon_sym_nonlocal] = ACTIONS(2551), + [anon_sym_exec] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_TILDE] = ACTIONS(2549), + [anon_sym_lambda] = ACTIONS(2551), + [anon_sym_yield] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), + [sym_ellipsis] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2549), + [sym_string] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2553), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_none] = ACTIONS(2551), + [anon_sym_await] = ACTIONS(2551), [sym_comment] = ACTIONS(76), }, - [1106] = { - [sym_elif_clause] = STATE(1104), - [sym_else_clause] = STATE(1406), - [aux_sym_if_statement_repeat1] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(2425), - [anon_sym_import] = ACTIONS(2427), - [anon_sym_from] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_print] = ACTIONS(2427), - [anon_sym_assert] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_del] = ACTIONS(2427), - [anon_sym_raise] = ACTIONS(2427), - [sym_pass_statement] = ACTIONS(2427), - [sym_break_statement] = ACTIONS(2427), - [sym_continue_statement] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_elif] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [anon_sym_try] = ACTIONS(2427), - [anon_sym_with] = ACTIONS(2427), - [anon_sym_async] = ACTIONS(2427), - [anon_sym_def] = ACTIONS(2427), - [anon_sym_global] = ACTIONS(2427), - [anon_sym_nonlocal] = ACTIONS(2427), - [anon_sym_exec] = ACTIONS(2427), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_AT] = ACTIONS(2425), - [anon_sym_not] = ACTIONS(2427), - [anon_sym_PLUS] = ACTIONS(2425), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_TILDE] = ACTIONS(2425), - [anon_sym_lambda] = ACTIONS(2427), - [anon_sym_yield] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2425), - [sym_ellipsis] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2425), - [sym_string] = ACTIONS(2427), - [sym_integer] = ACTIONS(2427), - [sym_float] = ACTIONS(2427), - [sym_identifier] = ACTIONS(2429), - [sym_true] = ACTIONS(2427), - [sym_false] = ACTIONS(2427), - [sym_none] = ACTIONS(2427), - [anon_sym_await] = ACTIONS(2427), + [1182] = { + [sym_elif_clause] = STATE(1180), + [sym_else_clause] = STATE(1493), + [aux_sym_if_statement_repeat1] = STATE(1494), + [ts_builtin_sym_end] = ACTIONS(2549), + [anon_sym_import] = ACTIONS(2551), + [anon_sym_from] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_print] = ACTIONS(2551), + [anon_sym_assert] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_del] = ACTIONS(2551), + [anon_sym_raise] = ACTIONS(2551), + [sym_pass_statement] = ACTIONS(2551), + [sym_break_statement] = ACTIONS(2551), + [sym_continue_statement] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_elif] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(1954), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_with] = ACTIONS(2551), + [anon_sym_async] = ACTIONS(2551), + [anon_sym_def] = ACTIONS(2551), + [anon_sym_global] = ACTIONS(2551), + [anon_sym_nonlocal] = ACTIONS(2551), + [anon_sym_exec] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_TILDE] = ACTIONS(2549), + [anon_sym_lambda] = ACTIONS(2551), + [anon_sym_yield] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), + [sym_ellipsis] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2549), + [sym_string] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2553), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_none] = ACTIONS(2551), + [anon_sym_await] = ACTIONS(2551), [sym_comment] = ACTIONS(76), }, - [1107] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(574), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_COLON] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_SLASH_SLASH] = ACTIONS(582), - [anon_sym_STAR_STAR] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), + [1183] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_COLON] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(616), + [anon_sym_SLASH_SLASH] = ACTIONS(616), + [anon_sym_STAR_STAR] = ACTIONS(618), + [anon_sym_PIPE] = ACTIONS(620), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1108] = { - [sym__simple_statements] = STATE(738), - [sym_import_statement] = STATE(737), - [sym_import_from_statement] = STATE(737), - [sym_print_statement] = STATE(737), - [sym_assert_statement] = STATE(737), - [sym_expression_statement] = STATE(737), - [sym_return_statement] = STATE(737), - [sym_delete_statement] = STATE(737), - [sym_raise_statement] = STATE(737), - [sym_global_statement] = STATE(737), - [sym_nonlocal_statement] = STATE(737), - [sym_exec_statement] = STATE(737), - [sym__suite] = STATE(1408), + [1184] = { + [sym__simple_statements] = STATE(792), + [sym_import_statement] = STATE(791), + [sym_import_from_statement] = STATE(791), + [sym_print_statement] = STATE(791), + [sym_assert_statement] = STATE(791), + [sym_expression_statement] = STATE(791), + [sym_return_statement] = STATE(791), + [sym_delete_statement] = STATE(791), + [sym_raise_statement] = STATE(791), + [sym_global_statement] = STATE(791), + [sym_nonlocal_statement] = STATE(791), + [sym_exec_statement] = STATE(791), + [sym__suite] = STATE(1495), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -41174,7 +43131,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(1233), + [sym__indent] = ACTIONS(1293), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -41183,9 +43140,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1235), - [sym_break_statement] = ACTIONS(1235), - [sym_continue_statement] = ACTIONS(1235), + [sym_pass_statement] = ACTIONS(1295), + [sym_break_statement] = ACTIONS(1295), + [sym_continue_statement] = ACTIONS(1295), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -41208,9 +43165,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1109] = { - [sym__expression] = STATE(1409), - [sym__primary_expression] = STATE(415), + [1185] = { + [sym__expression] = STATE(1496), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -41234,34 +43191,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(852), + [anon_sym_COLON] = ACTIONS(888), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [1110] = { - [aux_sym_print_statement_repeat1] = STATE(1411), - [anon_sym_COMMA] = ACTIONS(2431), - [anon_sym_COLON] = ACTIONS(852), + [1186] = { + [aux_sym_print_statement_repeat1] = STATE(1498), + [anon_sym_COMMA] = ACTIONS(2555), + [anon_sym_COLON] = ACTIONS(888), [sym_comment] = ACTIONS(76), }, - [1111] = { - [sym__primary_expression] = STATE(727), + [1187] = { + [sym__primary_expression] = STATE(781), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -41280,13 +43237,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(176), + [sym_string] = ACTIONS(190), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -41295,75 +43252,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1112] = { - [ts_builtin_sym_end] = ACTIONS(1892), - [anon_sym_import] = ACTIONS(1894), - [anon_sym_from] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_print] = ACTIONS(1894), - [anon_sym_assert] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_del] = ACTIONS(1894), - [anon_sym_raise] = ACTIONS(1894), - [sym_pass_statement] = ACTIONS(1894), - [sym_break_statement] = ACTIONS(1894), - [sym_continue_statement] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_with] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1894), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_global] = ACTIONS(1894), - [anon_sym_nonlocal] = ACTIONS(1894), - [anon_sym_exec] = ACTIONS(1894), - [anon_sym_class] = ACTIONS(1894), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_lambda] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1892), - [sym_ellipsis] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1892), - [sym_string] = ACTIONS(1894), - [sym_integer] = ACTIONS(1894), - [sym_float] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [sym_true] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [sym_none] = ACTIONS(1894), - [anon_sym_await] = ACTIONS(1894), + [1188] = { + [ts_builtin_sym_end] = ACTIONS(1993), + [anon_sym_import] = ACTIONS(1995), + [anon_sym_from] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_del] = ACTIONS(1995), + [anon_sym_raise] = ACTIONS(1995), + [sym_pass_statement] = ACTIONS(1995), + [sym_break_statement] = ACTIONS(1995), + [sym_continue_statement] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_else] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1995), + [anon_sym_with] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1995), + [anon_sym_global] = ACTIONS(1995), + [anon_sym_nonlocal] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_class] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(1993), + [anon_sym_not] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_lambda] = ACTIONS(1995), + [anon_sym_yield] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1993), + [sym_ellipsis] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [sym_string] = ACTIONS(1995), + [sym_integer] = ACTIONS(1995), + [sym_float] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1997), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_none] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(1995), [sym_comment] = ACTIONS(76), }, - [1113] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [1189] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -41392,9 +43349,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1130), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(2433), + [aux_sym_module_repeat1] = STATE(1206), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(2557), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -41403,20 +43360,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -41437,63 +43394,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1114] = { - [ts_builtin_sym_end] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_from] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_print] = ACTIONS(552), - [anon_sym_assert] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_del] = ACTIONS(552), - [anon_sym_raise] = ACTIONS(552), - [sym_pass_statement] = ACTIONS(552), - [sym_break_statement] = ACTIONS(552), - [sym_continue_statement] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_else] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_try] = ACTIONS(552), - [anon_sym_with] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_def] = ACTIONS(552), - [anon_sym_global] = ACTIONS(552), - [anon_sym_nonlocal] = ACTIONS(552), - [anon_sym_exec] = ACTIONS(552), - [anon_sym_class] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(550), - [anon_sym_not] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_TILDE] = ACTIONS(550), - [anon_sym_lambda] = ACTIONS(552), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_LBRACK] = ACTIONS(550), - [sym_ellipsis] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(550), - [sym_string] = ACTIONS(552), - [sym_integer] = ACTIONS(552), - [sym_float] = ACTIONS(552), - [sym_identifier] = ACTIONS(554), - [sym_true] = ACTIONS(552), - [sym_false] = ACTIONS(552), - [sym_none] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), + [1190] = { + [ts_builtin_sym_end] = ACTIONS(584), + [anon_sym_import] = ACTIONS(586), + [anon_sym_from] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_print] = ACTIONS(586), + [anon_sym_assert] = ACTIONS(586), + [anon_sym_return] = ACTIONS(586), + [anon_sym_del] = ACTIONS(586), + [anon_sym_raise] = ACTIONS(586), + [sym_pass_statement] = ACTIONS(586), + [sym_break_statement] = ACTIONS(586), + [sym_continue_statement] = ACTIONS(586), + [anon_sym_if] = ACTIONS(586), + [anon_sym_else] = ACTIONS(586), + [anon_sym_for] = ACTIONS(586), + [anon_sym_while] = ACTIONS(586), + [anon_sym_try] = ACTIONS(586), + [anon_sym_with] = ACTIONS(586), + [anon_sym_async] = ACTIONS(586), + [anon_sym_def] = ACTIONS(586), + [anon_sym_global] = ACTIONS(586), + [anon_sym_nonlocal] = ACTIONS(586), + [anon_sym_exec] = ACTIONS(586), + [anon_sym_class] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_not] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_TILDE] = ACTIONS(584), + [anon_sym_lambda] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(584), + [sym_ellipsis] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(584), + [sym_string] = ACTIONS(586), + [sym_integer] = ACTIONS(586), + [sym_float] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [sym_true] = ACTIONS(586), + [sym_false] = ACTIONS(586), + [sym_none] = ACTIONS(586), + [anon_sym_await] = ACTIONS(586), [sym_comment] = ACTIONS(76), }, - [1115] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [1191] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -41521,7 +43478,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(2435), + [sym__newline] = ACTIONS(2559), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -41530,9 +43487,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -41555,112 +43512,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1116] = { - [aux_sym__simple_statements_repeat1] = STATE(335), - [sym__newline] = ACTIONS(2435), + [1192] = { + [aux_sym__simple_statements_repeat1] = STATE(362), + [sym__newline] = ACTIONS(2559), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2437), + [sym__semicolon] = ACTIONS(2561), }, - [1117] = { - [ts_builtin_sym_end] = ACTIONS(2439), - [anon_sym_import] = ACTIONS(2441), - [anon_sym_from] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_print] = ACTIONS(2441), - [anon_sym_assert] = ACTIONS(2441), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_del] = ACTIONS(2441), - [anon_sym_raise] = ACTIONS(2441), - [sym_pass_statement] = ACTIONS(2441), - [sym_break_statement] = ACTIONS(2441), - [sym_continue_statement] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_with] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_def] = ACTIONS(2441), - [anon_sym_global] = ACTIONS(2441), - [anon_sym_nonlocal] = ACTIONS(2441), - [anon_sym_exec] = ACTIONS(2441), - [anon_sym_class] = ACTIONS(2441), - [anon_sym_AT] = ACTIONS(2439), - [anon_sym_not] = ACTIONS(2441), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_lambda] = ACTIONS(2441), - [anon_sym_yield] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(2439), - [sym_ellipsis] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [sym_string] = ACTIONS(2441), - [sym_integer] = ACTIONS(2441), - [sym_float] = ACTIONS(2441), - [sym_identifier] = ACTIONS(2443), - [sym_true] = ACTIONS(2441), - [sym_false] = ACTIONS(2441), - [sym_none] = ACTIONS(2441), - [anon_sym_await] = ACTIONS(2441), + [1193] = { + [ts_builtin_sym_end] = ACTIONS(2563), + [anon_sym_import] = ACTIONS(2565), + [anon_sym_from] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2565), + [anon_sym_assert] = ACTIONS(2565), + [anon_sym_return] = ACTIONS(2565), + [anon_sym_del] = ACTIONS(2565), + [anon_sym_raise] = ACTIONS(2565), + [sym_pass_statement] = ACTIONS(2565), + [sym_break_statement] = ACTIONS(2565), + [sym_continue_statement] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(2565), + [anon_sym_for] = ACTIONS(2565), + [anon_sym_while] = ACTIONS(2565), + [anon_sym_try] = ACTIONS(2565), + [anon_sym_with] = ACTIONS(2565), + [anon_sym_async] = ACTIONS(2565), + [anon_sym_def] = ACTIONS(2565), + [anon_sym_global] = ACTIONS(2565), + [anon_sym_nonlocal] = ACTIONS(2565), + [anon_sym_exec] = ACTIONS(2565), + [anon_sym_class] = ACTIONS(2565), + [anon_sym_AT] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2565), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(2563), + [sym_ellipsis] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [sym_string] = ACTIONS(2565), + [sym_integer] = ACTIONS(2565), + [sym_float] = ACTIONS(2565), + [sym_identifier] = ACTIONS(2567), + [sym_true] = ACTIONS(2565), + [sym_false] = ACTIONS(2565), + [sym_none] = ACTIONS(2565), + [anon_sym_await] = ACTIONS(2565), [sym_comment] = ACTIONS(76), }, - [1118] = { - [sym__dedent] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_from] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_print] = ACTIONS(552), - [anon_sym_assert] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_del] = ACTIONS(552), - [anon_sym_raise] = ACTIONS(552), - [sym_pass_statement] = ACTIONS(552), - [sym_break_statement] = ACTIONS(552), - [sym_continue_statement] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_try] = ACTIONS(552), - [anon_sym_with] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_def] = ACTIONS(552), - [anon_sym_global] = ACTIONS(552), - [anon_sym_nonlocal] = ACTIONS(552), - [anon_sym_exec] = ACTIONS(552), - [anon_sym_class] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(550), - [anon_sym_not] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_TILDE] = ACTIONS(550), - [anon_sym_lambda] = ACTIONS(552), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_LBRACK] = ACTIONS(550), - [sym_ellipsis] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(550), - [sym_string] = ACTIONS(552), - [sym_integer] = ACTIONS(552), - [sym_float] = ACTIONS(552), - [sym_identifier] = ACTIONS(554), - [sym_true] = ACTIONS(552), - [sym_false] = ACTIONS(552), - [sym_none] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), + [1194] = { + [sym__dedent] = ACTIONS(584), + [anon_sym_import] = ACTIONS(586), + [anon_sym_from] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_print] = ACTIONS(586), + [anon_sym_assert] = ACTIONS(586), + [anon_sym_return] = ACTIONS(586), + [anon_sym_del] = ACTIONS(586), + [anon_sym_raise] = ACTIONS(586), + [sym_pass_statement] = ACTIONS(586), + [sym_break_statement] = ACTIONS(586), + [sym_continue_statement] = ACTIONS(586), + [anon_sym_if] = ACTIONS(586), + [anon_sym_for] = ACTIONS(586), + [anon_sym_while] = ACTIONS(586), + [anon_sym_try] = ACTIONS(586), + [anon_sym_with] = ACTIONS(586), + [anon_sym_async] = ACTIONS(586), + [anon_sym_def] = ACTIONS(586), + [anon_sym_global] = ACTIONS(586), + [anon_sym_nonlocal] = ACTIONS(586), + [anon_sym_exec] = ACTIONS(586), + [anon_sym_class] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_not] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_TILDE] = ACTIONS(584), + [anon_sym_lambda] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(584), + [sym_ellipsis] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(584), + [sym_string] = ACTIONS(586), + [sym_integer] = ACTIONS(586), + [sym_float] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [sym_true] = ACTIONS(586), + [sym_false] = ACTIONS(586), + [sym_none] = ACTIONS(586), + [anon_sym_await] = ACTIONS(586), [sym_comment] = ACTIONS(76), }, - [1119] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [1195] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -41688,7 +43645,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(2445), + [sym__newline] = ACTIONS(2569), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -41697,9 +43654,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -41722,44 +43679,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1120] = { - [aux_sym__simple_statements_repeat1] = STATE(335), - [sym__newline] = ACTIONS(2445), + [1196] = { + [aux_sym__simple_statements_repeat1] = STATE(362), + [sym__newline] = ACTIONS(2569), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2447), + [sym__semicolon] = ACTIONS(2571), }, - [1121] = { - [anon_sym_if] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_and] = ACTIONS(568), - [anon_sym_or] = ACTIONS(570), + [1197] = { + [anon_sym_if] = ACTIONS(598), + [anon_sym_COLON] = ACTIONS(2573), + [anon_sym_and] = ACTIONS(602), + [anon_sym_or] = ACTIONS(604), [sym_comment] = ACTIONS(76), }, - [1122] = { - [anon_sym_in] = ACTIONS(2451), + [1198] = { + [anon_sym_in] = ACTIONS(2575), [sym_comment] = ACTIONS(76), }, - [1123] = { - [anon_sym_if] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(2453), - [anon_sym_and] = ACTIONS(568), - [anon_sym_or] = ACTIONS(570), + [1199] = { + [anon_sym_if] = ACTIONS(598), + [anon_sym_COLON] = ACTIONS(2577), + [anon_sym_and] = ACTIONS(602), + [anon_sym_or] = ACTIONS(604), [sym_comment] = ACTIONS(76), }, - [1124] = { - [sym__simple_statements] = STATE(369), - [sym_import_statement] = STATE(368), - [sym_import_from_statement] = STATE(368), - [sym_print_statement] = STATE(368), - [sym_assert_statement] = STATE(368), - [sym_expression_statement] = STATE(368), - [sym_return_statement] = STATE(368), - [sym_delete_statement] = STATE(368), - [sym_raise_statement] = STATE(368), - [sym_global_statement] = STATE(368), - [sym_nonlocal_statement] = STATE(368), - [sym_exec_statement] = STATE(368), - [sym__suite] = STATE(1420), + [1200] = { + [sym__simple_statements] = STATE(396), + [sym_import_statement] = STATE(395), + [sym_import_from_statement] = STATE(395), + [sym_print_statement] = STATE(395), + [sym_assert_statement] = STATE(395), + [sym_expression_statement] = STATE(395), + [sym_return_statement] = STATE(395), + [sym_delete_statement] = STATE(395), + [sym_raise_statement] = STATE(395), + [sym_global_statement] = STATE(395), + [sym_nonlocal_statement] = STATE(395), + [sym_exec_statement] = STATE(395), + [sym__suite] = STATE(1507), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -41787,7 +43744,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(620), + [sym__indent] = ACTIONS(654), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -41796,9 +43753,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(622), - [sym_break_statement] = ACTIONS(622), - [sym_continue_statement] = ACTIONS(622), + [sym_pass_statement] = ACTIONS(656), + [sym_break_statement] = ACTIONS(656), + [sym_continue_statement] = ACTIONS(656), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -41821,138 +43778,138 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1125] = { - [aux_sym_with_statement_repeat1] = STATE(1422), - [anon_sym_COMMA] = ACTIONS(626), - [anon_sym_COLON] = ACTIONS(2455), + [1201] = { + [aux_sym_with_statement_repeat1] = STATE(1509), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_COLON] = ACTIONS(2579), [sym_comment] = ACTIONS(76), }, - [1126] = { - [sym__dedent] = ACTIONS(664), - [anon_sym_import] = ACTIONS(666), - [anon_sym_from] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_print] = ACTIONS(666), - [anon_sym_assert] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_del] = ACTIONS(666), - [anon_sym_raise] = ACTIONS(666), - [sym_pass_statement] = ACTIONS(666), - [sym_break_statement] = ACTIONS(666), - [sym_continue_statement] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_try] = ACTIONS(666), - [anon_sym_with] = ACTIONS(666), - [anon_sym_async] = ACTIONS(666), - [anon_sym_def] = ACTIONS(666), - [anon_sym_global] = ACTIONS(666), - [anon_sym_nonlocal] = ACTIONS(666), - [anon_sym_exec] = ACTIONS(666), - [anon_sym_class] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(664), - [anon_sym_not] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(664), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_lambda] = ACTIONS(666), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(664), - [sym_ellipsis] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(664), - [sym_string] = ACTIONS(666), - [sym_integer] = ACTIONS(666), - [sym_float] = ACTIONS(666), - [sym_identifier] = ACTIONS(668), - [sym_true] = ACTIONS(666), - [sym_false] = ACTIONS(666), - [sym_none] = ACTIONS(666), - [anon_sym_await] = ACTIONS(666), + [1202] = { + [sym__dedent] = ACTIONS(698), + [anon_sym_import] = ACTIONS(700), + [anon_sym_from] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_print] = ACTIONS(700), + [anon_sym_assert] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_del] = ACTIONS(700), + [anon_sym_raise] = ACTIONS(700), + [sym_pass_statement] = ACTIONS(700), + [sym_break_statement] = ACTIONS(700), + [sym_continue_statement] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [anon_sym_try] = ACTIONS(700), + [anon_sym_with] = ACTIONS(700), + [anon_sym_async] = ACTIONS(700), + [anon_sym_def] = ACTIONS(700), + [anon_sym_global] = ACTIONS(700), + [anon_sym_nonlocal] = ACTIONS(700), + [anon_sym_exec] = ACTIONS(700), + [anon_sym_class] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(698), + [anon_sym_not] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_lambda] = ACTIONS(700), + [anon_sym_yield] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(698), + [sym_ellipsis] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(698), + [sym_string] = ACTIONS(700), + [sym_integer] = ACTIONS(700), + [sym_float] = ACTIONS(700), + [sym_identifier] = ACTIONS(702), + [sym_true] = ACTIONS(700), + [sym_false] = ACTIONS(700), + [sym_none] = ACTIONS(700), + [anon_sym_await] = ACTIONS(700), [sym_comment] = ACTIONS(76), }, - [1127] = { - [sym_parameters] = STATE(1423), - [anon_sym_LPAREN] = ACTIONS(670), + [1203] = { + [sym_parameters] = STATE(1510), + [anon_sym_LPAREN] = ACTIONS(704), [sym_comment] = ACTIONS(76), }, - [1128] = { - [sym_argument_list] = STATE(1425), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_COLON] = ACTIONS(2457), + [1204] = { + [sym_argument_list] = STATE(1512), + [anon_sym_LPAREN] = ACTIONS(716), + [anon_sym_COLON] = ACTIONS(2581), [sym_comment] = ACTIONS(76), }, - [1129] = { - [ts_builtin_sym_end] = ACTIONS(2459), - [anon_sym_import] = ACTIONS(2461), - [anon_sym_from] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_print] = ACTIONS(2461), - [anon_sym_assert] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_del] = ACTIONS(2461), - [anon_sym_raise] = ACTIONS(2461), - [sym_pass_statement] = ACTIONS(2461), - [sym_break_statement] = ACTIONS(2461), - [sym_continue_statement] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_except] = ACTIONS(2461), - [anon_sym_finally] = ACTIONS(2461), - [anon_sym_with] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_def] = ACTIONS(2461), - [anon_sym_global] = ACTIONS(2461), - [anon_sym_nonlocal] = ACTIONS(2461), - [anon_sym_exec] = ACTIONS(2461), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_lambda] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [sym_ellipsis] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [sym_string] = ACTIONS(2461), - [sym_integer] = ACTIONS(2461), - [sym_float] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2463), - [sym_true] = ACTIONS(2461), - [sym_false] = ACTIONS(2461), - [sym_none] = ACTIONS(2461), - [anon_sym_await] = ACTIONS(2461), + [1205] = { + [ts_builtin_sym_end] = ACTIONS(2583), + [anon_sym_import] = ACTIONS(2585), + [anon_sym_from] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_print] = ACTIONS(2585), + [anon_sym_assert] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_del] = ACTIONS(2585), + [anon_sym_raise] = ACTIONS(2585), + [sym_pass_statement] = ACTIONS(2585), + [sym_break_statement] = ACTIONS(2585), + [sym_continue_statement] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_else] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_except] = ACTIONS(2585), + [anon_sym_finally] = ACTIONS(2585), + [anon_sym_with] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_def] = ACTIONS(2585), + [anon_sym_global] = ACTIONS(2585), + [anon_sym_nonlocal] = ACTIONS(2585), + [anon_sym_exec] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_lambda] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [sym_ellipsis] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [sym_string] = ACTIONS(2585), + [sym_integer] = ACTIONS(2585), + [sym_float] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2587), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_none] = ACTIONS(2585), + [anon_sym_await] = ACTIONS(2585), [sym_comment] = ACTIONS(76), }, - [1130] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [1206] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -41981,154 +43938,154 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1130), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(904), - [anon_sym_import] = ACTIONS(906), - [anon_sym_from] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_print] = ACTIONS(915), - [anon_sym_assert] = ACTIONS(918), - [anon_sym_return] = ACTIONS(921), - [anon_sym_del] = ACTIONS(924), - [anon_sym_raise] = ACTIONS(927), - [sym_pass_statement] = ACTIONS(2465), - [sym_break_statement] = ACTIONS(2465), - [sym_continue_statement] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2468), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_while] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_with] = ACTIONS(2480), - [anon_sym_async] = ACTIONS(2483), - [anon_sym_def] = ACTIONS(2486), - [anon_sym_global] = ACTIONS(954), - [anon_sym_nonlocal] = ACTIONS(957), - [anon_sym_exec] = ACTIONS(960), - [anon_sym_class] = ACTIONS(2489), - [anon_sym_AT] = ACTIONS(966), - [anon_sym_not] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_lambda] = ACTIONS(975), - [anon_sym_yield] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(981), - [sym_ellipsis] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(987), - [sym_string] = ACTIONS(990), - [sym_integer] = ACTIONS(993), - [sym_float] = ACTIONS(993), - [sym_identifier] = ACTIONS(996), - [sym_true] = ACTIONS(993), - [sym_false] = ACTIONS(993), - [sym_none] = ACTIONS(993), - [anon_sym_await] = ACTIONS(999), + [aux_sym_module_repeat1] = STATE(1206), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(940), + [anon_sym_import] = ACTIONS(942), + [anon_sym_from] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_print] = ACTIONS(951), + [anon_sym_assert] = ACTIONS(954), + [anon_sym_return] = ACTIONS(957), + [anon_sym_del] = ACTIONS(960), + [anon_sym_raise] = ACTIONS(963), + [sym_pass_statement] = ACTIONS(2589), + [sym_break_statement] = ACTIONS(2589), + [sym_continue_statement] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2592), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2598), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_async] = ACTIONS(2607), + [anon_sym_def] = ACTIONS(2610), + [anon_sym_global] = ACTIONS(990), + [anon_sym_nonlocal] = ACTIONS(993), + [anon_sym_exec] = ACTIONS(996), + [anon_sym_class] = ACTIONS(2613), + [anon_sym_AT] = ACTIONS(1002), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_TILDE] = ACTIONS(1008), + [anon_sym_lambda] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1017), + [sym_ellipsis] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1023), + [sym_string] = ACTIONS(1026), + [sym_integer] = ACTIONS(1029), + [sym_float] = ACTIONS(1029), + [sym_identifier] = ACTIONS(1032), + [sym_true] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [sym_none] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(1035), [sym_comment] = ACTIONS(76), }, - [1131] = { - [sym__dedent] = ACTIONS(1002), - [anon_sym_import] = ACTIONS(1004), - [anon_sym_from] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_print] = ACTIONS(1004), - [anon_sym_assert] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_del] = ACTIONS(1004), - [anon_sym_raise] = ACTIONS(1004), - [sym_pass_statement] = ACTIONS(1004), - [sym_break_statement] = ACTIONS(1004), - [sym_continue_statement] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_with] = ACTIONS(1004), - [anon_sym_async] = ACTIONS(1004), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_global] = ACTIONS(1004), - [anon_sym_nonlocal] = ACTIONS(1004), - [anon_sym_exec] = ACTIONS(1004), - [anon_sym_class] = ACTIONS(1004), - [anon_sym_AT] = ACTIONS(1002), - [anon_sym_not] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_lambda] = ACTIONS(1004), - [anon_sym_yield] = ACTIONS(1004), - [anon_sym_LBRACK] = ACTIONS(1002), - [sym_ellipsis] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1002), - [sym_string] = ACTIONS(1004), - [sym_integer] = ACTIONS(1004), - [sym_float] = ACTIONS(1004), - [sym_identifier] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_none] = ACTIONS(1004), - [anon_sym_await] = ACTIONS(1004), + [1207] = { + [sym__dedent] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_print] = ACTIONS(1040), + [anon_sym_assert] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_del] = ACTIONS(1040), + [anon_sym_raise] = ACTIONS(1040), + [sym_pass_statement] = ACTIONS(1040), + [sym_break_statement] = ACTIONS(1040), + [sym_continue_statement] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_try] = ACTIONS(1040), + [anon_sym_with] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1040), + [anon_sym_def] = ACTIONS(1040), + [anon_sym_global] = ACTIONS(1040), + [anon_sym_nonlocal] = ACTIONS(1040), + [anon_sym_exec] = ACTIONS(1040), + [anon_sym_class] = ACTIONS(1040), + [anon_sym_AT] = ACTIONS(1038), + [anon_sym_not] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_lambda] = ACTIONS(1040), + [anon_sym_yield] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1038), + [sym_ellipsis] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [sym_string] = ACTIONS(1040), + [sym_integer] = ACTIONS(1040), + [sym_float] = ACTIONS(1040), + [sym_identifier] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_none] = ACTIONS(1040), + [anon_sym_await] = ACTIONS(1040), [sym_comment] = ACTIONS(76), }, - [1132] = { - [ts_builtin_sym_end] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(1206), - [anon_sym_from] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_print] = ACTIONS(1206), - [anon_sym_assert] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_del] = ACTIONS(1206), - [anon_sym_raise] = ACTIONS(1206), - [sym_pass_statement] = ACTIONS(1206), - [sym_break_statement] = ACTIONS(1206), - [sym_continue_statement] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_else] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_try] = ACTIONS(1206), - [anon_sym_except] = ACTIONS(1206), - [anon_sym_finally] = ACTIONS(1206), - [anon_sym_with] = ACTIONS(1206), - [anon_sym_async] = ACTIONS(1206), - [anon_sym_def] = ACTIONS(1206), - [anon_sym_global] = ACTIONS(1206), - [anon_sym_nonlocal] = ACTIONS(1206), - [anon_sym_exec] = ACTIONS(1206), - [anon_sym_class] = ACTIONS(1206), - [anon_sym_AT] = ACTIONS(1204), - [anon_sym_not] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_lambda] = ACTIONS(1206), - [anon_sym_yield] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1204), - [sym_ellipsis] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1204), - [sym_string] = ACTIONS(1206), - [sym_integer] = ACTIONS(1206), - [sym_float] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [sym_none] = ACTIONS(1206), - [anon_sym_await] = ACTIONS(1206), + [1208] = { + [ts_builtin_sym_end] = ACTIONS(1264), + [anon_sym_import] = ACTIONS(1266), + [anon_sym_from] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_print] = ACTIONS(1266), + [anon_sym_assert] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_del] = ACTIONS(1266), + [anon_sym_raise] = ACTIONS(1266), + [sym_pass_statement] = ACTIONS(1266), + [sym_break_statement] = ACTIONS(1266), + [sym_continue_statement] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_except] = ACTIONS(1266), + [anon_sym_finally] = ACTIONS(1266), + [anon_sym_with] = ACTIONS(1266), + [anon_sym_async] = ACTIONS(1266), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_global] = ACTIONS(1266), + [anon_sym_nonlocal] = ACTIONS(1266), + [anon_sym_exec] = ACTIONS(1266), + [anon_sym_class] = ACTIONS(1266), + [anon_sym_AT] = ACTIONS(1264), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_lambda] = ACTIONS(1266), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [sym_ellipsis] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [sym_string] = ACTIONS(1266), + [sym_integer] = ACTIONS(1266), + [sym_float] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [sym_none] = ACTIONS(1266), + [anon_sym_await] = ACTIONS(1266), [sym_comment] = ACTIONS(76), }, - [1133] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [1209] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -42156,7 +44113,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(2492), + [sym__newline] = ACTIONS(2616), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -42165,9 +44122,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -42190,20 +44147,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1134] = { - [sym__simple_statements] = STATE(369), - [sym_import_statement] = STATE(368), - [sym_import_from_statement] = STATE(368), - [sym_print_statement] = STATE(368), - [sym_assert_statement] = STATE(368), - [sym_expression_statement] = STATE(368), - [sym_return_statement] = STATE(368), - [sym_delete_statement] = STATE(368), - [sym_raise_statement] = STATE(368), - [sym_global_statement] = STATE(368), - [sym_nonlocal_statement] = STATE(368), - [sym_exec_statement] = STATE(368), - [sym__suite] = STATE(1427), + [1210] = { + [sym__simple_statements] = STATE(396), + [sym_import_statement] = STATE(395), + [sym_import_from_statement] = STATE(395), + [sym_print_statement] = STATE(395), + [sym_assert_statement] = STATE(395), + [sym_expression_statement] = STATE(395), + [sym_return_statement] = STATE(395), + [sym_delete_statement] = STATE(395), + [sym_raise_statement] = STATE(395), + [sym_global_statement] = STATE(395), + [sym_nonlocal_statement] = STATE(395), + [sym_exec_statement] = STATE(395), + [sym__suite] = STATE(1514), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -42231,7 +44188,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(620), + [sym__indent] = ACTIONS(654), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -42240,9 +44197,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(622), - [sym_break_statement] = ACTIONS(622), - [sym_continue_statement] = ACTIONS(622), + [sym_pass_statement] = ACTIONS(656), + [sym_break_statement] = ACTIONS(656), + [sym_continue_statement] = ACTIONS(656), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -42265,17 +44222,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1135] = { - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_as] = ACTIONS(2494), - [anon_sym_if] = ACTIONS(634), - [anon_sym_COLON] = ACTIONS(2496), - [anon_sym_and] = ACTIONS(636), - [anon_sym_or] = ACTIONS(638), + [1211] = { + [anon_sym_COMMA] = ACTIONS(2618), + [anon_sym_as] = ACTIONS(2618), + [anon_sym_if] = ACTIONS(668), + [anon_sym_COLON] = ACTIONS(2620), + [anon_sym_and] = ACTIONS(670), + [anon_sym_or] = ACTIONS(672), [sym_comment] = ACTIONS(76), }, - [1136] = { - [sym__simple_statements] = STATE(768), + [1212] = { + [sym__simple_statements] = STATE(822), [sym_import_statement] = STATE(10), [sym_import_from_statement] = STATE(10), [sym_print_statement] = STATE(10), @@ -42287,7 +44244,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_global_statement] = STATE(10), [sym_nonlocal_statement] = STATE(10), [sym_exec_statement] = STATE(10), - [sym__suite] = STATE(1430), + [sym__suite] = STATE(1517), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -42315,7 +44272,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(1273), + [sym__indent] = ACTIONS(1333), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -42349,226 +44306,226 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1137] = { - [anon_sym_COLON] = ACTIONS(2498), + [1213] = { + [anon_sym_COLON] = ACTIONS(2622), [sym_comment] = ACTIONS(76), }, - [1138] = { - [sym_finally_clause] = STATE(1432), - [ts_builtin_sym_end] = ACTIONS(2500), - [anon_sym_import] = ACTIONS(2502), - [anon_sym_from] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_print] = ACTIONS(2502), - [anon_sym_assert] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_del] = ACTIONS(2502), - [anon_sym_raise] = ACTIONS(2502), - [sym_pass_statement] = ACTIONS(2502), - [sym_break_statement] = ACTIONS(2502), - [sym_continue_statement] = ACTIONS(2502), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2502), - [anon_sym_finally] = ACTIONS(1940), - [anon_sym_with] = ACTIONS(2502), - [anon_sym_async] = ACTIONS(2502), - [anon_sym_def] = ACTIONS(2502), - [anon_sym_global] = ACTIONS(2502), - [anon_sym_nonlocal] = ACTIONS(2502), - [anon_sym_exec] = ACTIONS(2502), - [anon_sym_class] = ACTIONS(2502), - [anon_sym_AT] = ACTIONS(2500), - [anon_sym_not] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_TILDE] = ACTIONS(2500), - [anon_sym_lambda] = ACTIONS(2502), - [anon_sym_yield] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [sym_ellipsis] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2500), - [sym_string] = ACTIONS(2502), - [sym_integer] = ACTIONS(2502), - [sym_float] = ACTIONS(2502), - [sym_identifier] = ACTIONS(2504), - [sym_true] = ACTIONS(2502), - [sym_false] = ACTIONS(2502), - [sym_none] = ACTIONS(2502), - [anon_sym_await] = ACTIONS(2502), + [1214] = { + [sym_finally_clause] = STATE(1519), + [ts_builtin_sym_end] = ACTIONS(2624), + [anon_sym_import] = ACTIONS(2626), + [anon_sym_from] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_print] = ACTIONS(2626), + [anon_sym_assert] = ACTIONS(2626), + [anon_sym_return] = ACTIONS(2626), + [anon_sym_del] = ACTIONS(2626), + [anon_sym_raise] = ACTIONS(2626), + [sym_pass_statement] = ACTIONS(2626), + [sym_break_statement] = ACTIONS(2626), + [sym_continue_statement] = ACTIONS(2626), + [anon_sym_if] = ACTIONS(2626), + [anon_sym_for] = ACTIONS(2626), + [anon_sym_while] = ACTIONS(2626), + [anon_sym_try] = ACTIONS(2626), + [anon_sym_finally] = ACTIONS(2041), + [anon_sym_with] = ACTIONS(2626), + [anon_sym_async] = ACTIONS(2626), + [anon_sym_def] = ACTIONS(2626), + [anon_sym_global] = ACTIONS(2626), + [anon_sym_nonlocal] = ACTIONS(2626), + [anon_sym_exec] = ACTIONS(2626), + [anon_sym_class] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(2624), + [anon_sym_not] = ACTIONS(2626), + [anon_sym_PLUS] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_lambda] = ACTIONS(2626), + [anon_sym_yield] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2624), + [sym_ellipsis] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2624), + [sym_string] = ACTIONS(2626), + [sym_integer] = ACTIONS(2626), + [sym_float] = ACTIONS(2626), + [sym_identifier] = ACTIONS(2628), + [sym_true] = ACTIONS(2626), + [sym_false] = ACTIONS(2626), + [sym_none] = ACTIONS(2626), + [anon_sym_await] = ACTIONS(2626), [sym_comment] = ACTIONS(76), }, - [1139] = { - [ts_builtin_sym_end] = ACTIONS(2500), - [anon_sym_import] = ACTIONS(2502), - [anon_sym_from] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_print] = ACTIONS(2502), - [anon_sym_assert] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_del] = ACTIONS(2502), - [anon_sym_raise] = ACTIONS(2502), - [sym_pass_statement] = ACTIONS(2502), - [sym_break_statement] = ACTIONS(2502), - [sym_continue_statement] = ACTIONS(2502), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2502), - [anon_sym_with] = ACTIONS(2502), - [anon_sym_async] = ACTIONS(2502), - [anon_sym_def] = ACTIONS(2502), - [anon_sym_global] = ACTIONS(2502), - [anon_sym_nonlocal] = ACTIONS(2502), - [anon_sym_exec] = ACTIONS(2502), - [anon_sym_class] = ACTIONS(2502), - [anon_sym_AT] = ACTIONS(2500), - [anon_sym_not] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_TILDE] = ACTIONS(2500), - [anon_sym_lambda] = ACTIONS(2502), - [anon_sym_yield] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [sym_ellipsis] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2500), - [sym_string] = ACTIONS(2502), - [sym_integer] = ACTIONS(2502), - [sym_float] = ACTIONS(2502), - [sym_identifier] = ACTIONS(2504), - [sym_true] = ACTIONS(2502), - [sym_false] = ACTIONS(2502), - [sym_none] = ACTIONS(2502), - [anon_sym_await] = ACTIONS(2502), + [1215] = { + [ts_builtin_sym_end] = ACTIONS(2624), + [anon_sym_import] = ACTIONS(2626), + [anon_sym_from] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_print] = ACTIONS(2626), + [anon_sym_assert] = ACTIONS(2626), + [anon_sym_return] = ACTIONS(2626), + [anon_sym_del] = ACTIONS(2626), + [anon_sym_raise] = ACTIONS(2626), + [sym_pass_statement] = ACTIONS(2626), + [sym_break_statement] = ACTIONS(2626), + [sym_continue_statement] = ACTIONS(2626), + [anon_sym_if] = ACTIONS(2626), + [anon_sym_for] = ACTIONS(2626), + [anon_sym_while] = ACTIONS(2626), + [anon_sym_try] = ACTIONS(2626), + [anon_sym_with] = ACTIONS(2626), + [anon_sym_async] = ACTIONS(2626), + [anon_sym_def] = ACTIONS(2626), + [anon_sym_global] = ACTIONS(2626), + [anon_sym_nonlocal] = ACTIONS(2626), + [anon_sym_exec] = ACTIONS(2626), + [anon_sym_class] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(2624), + [anon_sym_not] = ACTIONS(2626), + [anon_sym_PLUS] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_lambda] = ACTIONS(2626), + [anon_sym_yield] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2624), + [sym_ellipsis] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2624), + [sym_string] = ACTIONS(2626), + [sym_integer] = ACTIONS(2626), + [sym_float] = ACTIONS(2626), + [sym_identifier] = ACTIONS(2628), + [sym_true] = ACTIONS(2626), + [sym_false] = ACTIONS(2626), + [sym_none] = ACTIONS(2626), + [anon_sym_await] = ACTIONS(2626), [sym_comment] = ACTIONS(76), }, - [1140] = { - [sym_except_clause] = STATE(760), - [aux_sym_try_statement_repeat1] = STATE(1140), - [ts_builtin_sym_end] = ACTIONS(2506), - [anon_sym_import] = ACTIONS(2508), - [anon_sym_from] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2506), - [anon_sym_print] = ACTIONS(2508), - [anon_sym_assert] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2508), - [anon_sym_del] = ACTIONS(2508), - [anon_sym_raise] = ACTIONS(2508), - [sym_pass_statement] = ACTIONS(2508), - [sym_break_statement] = ACTIONS(2508), - [sym_continue_statement] = ACTIONS(2508), - [anon_sym_if] = ACTIONS(2508), - [anon_sym_else] = ACTIONS(2508), - [anon_sym_for] = ACTIONS(2508), - [anon_sym_while] = ACTIONS(2508), - [anon_sym_try] = ACTIONS(2508), - [anon_sym_except] = ACTIONS(2510), - [anon_sym_finally] = ACTIONS(2508), - [anon_sym_with] = ACTIONS(2508), - [anon_sym_async] = ACTIONS(2508), - [anon_sym_def] = ACTIONS(2508), - [anon_sym_global] = ACTIONS(2508), - [anon_sym_nonlocal] = ACTIONS(2508), - [anon_sym_exec] = ACTIONS(2508), - [anon_sym_class] = ACTIONS(2508), - [anon_sym_AT] = ACTIONS(2506), - [anon_sym_not] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2506), - [anon_sym_lambda] = ACTIONS(2508), - [anon_sym_yield] = ACTIONS(2508), - [anon_sym_LBRACK] = ACTIONS(2506), - [sym_ellipsis] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [sym_string] = ACTIONS(2508), - [sym_integer] = ACTIONS(2508), - [sym_float] = ACTIONS(2508), - [sym_identifier] = ACTIONS(2513), - [sym_true] = ACTIONS(2508), - [sym_false] = ACTIONS(2508), - [sym_none] = ACTIONS(2508), - [anon_sym_await] = ACTIONS(2508), + [1216] = { + [sym_except_clause] = STATE(814), + [aux_sym_try_statement_repeat1] = STATE(1216), + [ts_builtin_sym_end] = ACTIONS(2630), + [anon_sym_import] = ACTIONS(2632), + [anon_sym_from] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2630), + [anon_sym_print] = ACTIONS(2632), + [anon_sym_assert] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_del] = ACTIONS(2632), + [anon_sym_raise] = ACTIONS(2632), + [sym_pass_statement] = ACTIONS(2632), + [sym_break_statement] = ACTIONS(2632), + [sym_continue_statement] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_else] = ACTIONS(2632), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_except] = ACTIONS(2634), + [anon_sym_finally] = ACTIONS(2632), + [anon_sym_with] = ACTIONS(2632), + [anon_sym_async] = ACTIONS(2632), + [anon_sym_def] = ACTIONS(2632), + [anon_sym_global] = ACTIONS(2632), + [anon_sym_nonlocal] = ACTIONS(2632), + [anon_sym_exec] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2632), + [anon_sym_AT] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_lambda] = ACTIONS(2632), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2630), + [sym_ellipsis] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2630), + [sym_string] = ACTIONS(2632), + [sym_integer] = ACTIONS(2632), + [sym_float] = ACTIONS(2632), + [sym_identifier] = ACTIONS(2637), + [sym_true] = ACTIONS(2632), + [sym_false] = ACTIONS(2632), + [sym_none] = ACTIONS(2632), + [anon_sym_await] = ACTIONS(2632), [sym_comment] = ACTIONS(76), }, - [1141] = { - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_as] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(634), - [anon_sym_COLON] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(636), - [anon_sym_or] = ACTIONS(638), + [1217] = { + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(668), + [anon_sym_COLON] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(670), + [anon_sym_or] = ACTIONS(672), [sym_comment] = ACTIONS(76), }, - [1142] = { - [ts_builtin_sym_end] = ACTIONS(1892), - [anon_sym_import] = ACTIONS(1894), - [anon_sym_from] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_print] = ACTIONS(1894), - [anon_sym_assert] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_del] = ACTIONS(1894), - [anon_sym_raise] = ACTIONS(1894), - [sym_pass_statement] = ACTIONS(1894), - [sym_break_statement] = ACTIONS(1894), - [sym_continue_statement] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_with] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1894), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_global] = ACTIONS(1894), - [anon_sym_nonlocal] = ACTIONS(1894), - [anon_sym_exec] = ACTIONS(1894), - [anon_sym_class] = ACTIONS(1894), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_lambda] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1892), - [sym_ellipsis] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1892), - [sym_string] = ACTIONS(1894), - [sym_integer] = ACTIONS(1894), - [sym_float] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [sym_true] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [sym_none] = ACTIONS(1894), - [anon_sym_await] = ACTIONS(1894), + [1218] = { + [ts_builtin_sym_end] = ACTIONS(1993), + [anon_sym_import] = ACTIONS(1995), + [anon_sym_from] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_del] = ACTIONS(1995), + [anon_sym_raise] = ACTIONS(1995), + [sym_pass_statement] = ACTIONS(1995), + [sym_break_statement] = ACTIONS(1995), + [sym_continue_statement] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1995), + [anon_sym_with] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1995), + [anon_sym_global] = ACTIONS(1995), + [anon_sym_nonlocal] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_class] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(1993), + [anon_sym_not] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_lambda] = ACTIONS(1995), + [anon_sym_yield] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1993), + [sym_ellipsis] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [sym_string] = ACTIONS(1995), + [sym_integer] = ACTIONS(1995), + [sym_float] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1997), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_none] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(1995), [sym_comment] = ACTIONS(76), }, - [1143] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [1219] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -42597,9 +44554,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1130), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(2515), + [aux_sym_module_repeat1] = STATE(1206), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(2639), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -42608,20 +44565,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -42642,53 +44599,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1144] = { - [ts_builtin_sym_end] = ACTIONS(2517), - [anon_sym_import] = ACTIONS(2519), - [anon_sym_from] = ACTIONS(2519), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_print] = ACTIONS(2519), - [anon_sym_assert] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_del] = ACTIONS(2519), - [anon_sym_raise] = ACTIONS(2519), - [sym_pass_statement] = ACTIONS(2519), - [sym_break_statement] = ACTIONS(2519), - [sym_continue_statement] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2519), - [anon_sym_async] = ACTIONS(2519), - [anon_sym_def] = ACTIONS(2519), - [anon_sym_global] = ACTIONS(2519), - [anon_sym_nonlocal] = ACTIONS(2519), - [anon_sym_exec] = ACTIONS(2519), - [anon_sym_class] = ACTIONS(2519), - [anon_sym_AT] = ACTIONS(2517), - [anon_sym_not] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2517), - [anon_sym_lambda] = ACTIONS(2519), - [anon_sym_yield] = ACTIONS(2519), - [anon_sym_LBRACK] = ACTIONS(2517), - [sym_ellipsis] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2517), - [sym_string] = ACTIONS(2519), - [sym_integer] = ACTIONS(2519), - [sym_float] = ACTIONS(2519), - [sym_identifier] = ACTIONS(2521), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [sym_none] = ACTIONS(2519), - [anon_sym_await] = ACTIONS(2519), + [1220] = { + [ts_builtin_sym_end] = ACTIONS(2641), + [anon_sym_import] = ACTIONS(2643), + [anon_sym_from] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_print] = ACTIONS(2643), + [anon_sym_assert] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_del] = ACTIONS(2643), + [anon_sym_raise] = ACTIONS(2643), + [sym_pass_statement] = ACTIONS(2643), + [sym_break_statement] = ACTIONS(2643), + [sym_continue_statement] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_with] = ACTIONS(2643), + [anon_sym_async] = ACTIONS(2643), + [anon_sym_def] = ACTIONS(2643), + [anon_sym_global] = ACTIONS(2643), + [anon_sym_nonlocal] = ACTIONS(2643), + [anon_sym_exec] = ACTIONS(2643), + [anon_sym_class] = ACTIONS(2643), + [anon_sym_AT] = ACTIONS(2641), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_lambda] = ACTIONS(2643), + [anon_sym_yield] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2641), + [sym_ellipsis] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2641), + [sym_string] = ACTIONS(2643), + [sym_integer] = ACTIONS(2643), + [sym_float] = ACTIONS(2643), + [sym_identifier] = ACTIONS(2645), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_none] = ACTIONS(2643), + [anon_sym_await] = ACTIONS(2643), [sym_comment] = ACTIONS(76), }, - [1145] = { - [sym__expression] = STATE(1434), - [sym__primary_expression] = STATE(119), + [1221] = { + [sym__expression] = STATE(1521), + [sym__primary_expression] = STATE(125), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -42713,63 +44670,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_lambda] = ACTIONS(184), + [anon_sym_not] = ACTIONS(194), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_lambda] = ACTIONS(198), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(188), + [anon_sym_await] = ACTIONS(202), [sym_comment] = ACTIONS(76), }, - [1146] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_as] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(640), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_COLON] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(648), - [anon_sym_SLASH] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_SLASH_SLASH] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_LT_LT] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), + [1222] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_as] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(676), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_COLON] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(684), + [anon_sym_SLASH_SLASH] = ACTIONS(684), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(692), + [anon_sym_LT_LT] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1147] = { - [sym__expression] = STATE(1435), - [sym__primary_expression] = STATE(1154), + [1223] = { + [sym__expression] = STATE(1522), + [sym__primary_expression] = STATE(1230), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -42794,27 +44751,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), - [anon_sym_lambda] = ACTIONS(1979), + [anon_sym_not] = ACTIONS(2076), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_lambda] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1983), + [anon_sym_await] = ACTIONS(2084), [sym_comment] = ACTIONS(76), }, - [1148] = { - [sym__expression] = STATE(1436), - [sym__primary_expression] = STATE(1154), + [1224] = { + [sym__expression] = STATE(1523), + [sym__primary_expression] = STATE(1230), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -42839,26 +44796,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), - [anon_sym_lambda] = ACTIONS(1979), + [anon_sym_not] = ACTIONS(2076), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_lambda] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1983), + [anon_sym_await] = ACTIONS(2084), [sym_comment] = ACTIONS(76), }, - [1149] = { - [sym__primary_expression] = STATE(210), + [1225] = { + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -42877,13 +44834,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -42892,62 +44849,326 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1150] = { - [sym_lambda_parameters] = STATE(1438), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2523), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [1226] = { + [sym_lambda_parameters] = STATE(1525), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(2647), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [1151] = { - [aux_sym_concatenated_string_repeat1] = STATE(1439), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_RPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_COLON] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [1227] = { + [aux_sym_concatenated_string_repeat1] = STATE(1526), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_RPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_COLON] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [1152] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(1154), + [1228] = { + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(1230), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(2076), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_lambda] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(2082), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(2084), + [sym_comment] = ACTIONS(76), + }, + [1229] = { + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_COLON] = ACTIONS(1373), + [anon_sym_and] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(2653), + [sym_comment] = ACTIONS(76), + }, + [1230] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(1540), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(310), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_GT_GT] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(310), + [anon_sym_COLON] = ACTIONS(310), + [anon_sym_in] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2661), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_SLASH] = ACTIONS(2655), + [anon_sym_PERCENT] = ACTIONS(2665), + [anon_sym_SLASH_SLASH] = ACTIONS(2665), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_CARET] = ACTIONS(2673), + [anon_sym_LT_LT] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2675), + [anon_sym_LT_EQ] = ACTIONS(2659), + [anon_sym_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2659), + [anon_sym_GT] = ACTIONS(2675), + [anon_sym_LT_GT] = ACTIONS(2659), + [anon_sym_is] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(448), + [sym_comment] = ACTIONS(76), + }, + [1231] = { + [sym_default_parameter] = STATE(881), + [sym_typed_default_parameter] = STATE(881), + [sym_list_splat] = STATE(1543), + [sym_dictionary_splat] = STATE(1543), + [sym_typed_parameter] = STATE(881), + [sym_tuple] = STATE(881), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_print] = ACTIONS(2679), + [anon_sym_exec] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2681), + [sym_comment] = ACTIONS(76), + }, + [1232] = { + [sym__expression] = STATE(888), + [sym__primary_expression] = STATE(889), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_type] = STATE(1544), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_lambda] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(1417), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(1419), + [sym_comment] = ACTIONS(76), + }, + [1233] = { + [sym__expression] = STATE(1545), + [sym__primary_expression] = STATE(227), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(394), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(396), + [sym_comment] = ACTIONS(76), + }, + [1234] = { + [aux_sym__parameters_repeat1] = STATE(1547), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_COMMA] = ACTIONS(2683), + [sym_comment] = ACTIONS(76), + }, + [1235] = { + [sym_default_parameter] = STATE(881), + [sym_typed_default_parameter] = STATE(881), + [sym_list_splat] = STATE(1543), + [sym_dictionary_splat] = STATE(1543), + [sym_typed_parameter] = STATE(881), + [sym_tuple] = STATE(881), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_RPAREN] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_print] = ACTIONS(2679), + [anon_sym_exec] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2681), + [sym_comment] = ACTIONS(76), + }, + [1236] = { + [sym__expression] = STATE(1553), + [sym__primary_expression] = STATE(1554), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_type] = STATE(1555), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_lambda] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(2691), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(2693), + [sym_comment] = ACTIONS(76), + }, + [1237] = { + [sym__expression] = STATE(1556), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -42972,134 +45193,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), - [anon_sym_lambda] = ACTIONS(1979), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1983), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1153] = { - [anon_sym_RPAREN] = ACTIONS(1307), - [anon_sym_COMMA] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_COLON] = ACTIONS(1307), - [anon_sym_and] = ACTIONS(2527), - [anon_sym_or] = ACTIONS(2529), - [sym_comment] = ACTIONS(76), - }, - [1154] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(1453), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(2531), - [anon_sym_GT_GT] = ACTIONS(2533), - [anon_sym_if] = ACTIONS(296), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_in] = ACTIONS(2535), - [anon_sym_not] = ACTIONS(2537), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2539), - [anon_sym_SLASH] = ACTIONS(2531), - [anon_sym_PERCENT] = ACTIONS(2541), - [anon_sym_SLASH_SLASH] = ACTIONS(2541), - [anon_sym_STAR_STAR] = ACTIONS(2543), - [anon_sym_PIPE] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2549), - [anon_sym_LT_LT] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_LT_EQ] = ACTIONS(2535), - [anon_sym_EQ_EQ] = ACTIONS(2535), - [anon_sym_BANG_EQ] = ACTIONS(2535), - [anon_sym_GT_EQ] = ACTIONS(2535), - [anon_sym_GT] = ACTIONS(2551), - [anon_sym_LT_GT] = ACTIONS(2535), - [anon_sym_is] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(434), - [sym_comment] = ACTIONS(76), - }, - [1155] = { - [sym_default_parameter] = STATE(823), - [sym_typed_default_parameter] = STATE(823), - [sym_list_splat] = STATE(1456), - [sym_dictionary_splat] = STATE(1456), - [sym_typed_parameter] = STATE(823), - [sym_tuple] = STATE(823), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_print] = ACTIONS(2555), - [anon_sym_exec] = ACTIONS(2555), - [sym_identifier] = ACTIONS(2557), + [1238] = { + [aux_sym__parameters_repeat1] = STATE(1547), + [anon_sym_RPAREN] = ACTIONS(1425), + [anon_sym_COMMA] = ACTIONS(2695), [sym_comment] = ACTIONS(76), }, - [1156] = { - [sym__expression] = STATE(830), - [sym__primary_expression] = STATE(831), - [sym_not_operator] = STATE(67), - [sym_boolean_operator] = STATE(67), - [sym_binary_operator] = STATE(61), - [sym_unary_operator] = STATE(61), - [sym_comparison_operator] = STATE(67), - [sym_lambda] = STATE(67), - [sym_attribute] = STATE(61), - [sym_subscript] = STATE(61), - [sym_call] = STATE(61), - [sym_type] = STATE(1457), - [sym_list] = STATE(61), - [sym_list_comprehension] = STATE(61), - [sym_dictionary] = STATE(61), - [sym_dictionary_comprehension] = STATE(61), - [sym_set] = STATE(61), - [sym_set_comprehension] = STATE(61), - [sym_parenthesized_expression] = STATE(61), - [sym_tuple] = STATE(61), - [sym_generator_expression] = STATE(61), - [sym_conditional_expression] = STATE(67), - [sym_concatenated_string] = STATE(61), - [sym_await] = STATE(67), - [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_print] = ACTIONS(90), - [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_lambda] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(100), - [sym_ellipsis] = ACTIONS(102), - [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), - [sym_integer] = ACTIONS(108), - [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(110), - [sym_true] = ACTIONS(108), - [sym_false] = ACTIONS(108), - [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1353), + [1239] = { + [anon_sym_COLON] = ACTIONS(2697), + [anon_sym_DASH_GT] = ACTIONS(2697), [sym_comment] = ACTIONS(76), }, - [1157] = { - [sym__expression] = STATE(1458), - [sym__primary_expression] = STATE(221), + [1240] = { + [sym__expression] = STATE(1558), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -43109,6 +45234,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), + [sym_type] = STATE(906), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -43124,150 +45250,139 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1158] = { - [aux_sym__parameters_repeat1] = STATE(1460), - [anon_sym_RPAREN] = ACTIONS(1341), - [anon_sym_COMMA] = ACTIONS(2559), + [1241] = { + [ts_builtin_sym_end] = ACTIONS(2699), + [anon_sym_import] = ACTIONS(2701), + [anon_sym_from] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_print] = ACTIONS(2701), + [anon_sym_assert] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_del] = ACTIONS(2701), + [anon_sym_raise] = ACTIONS(2701), + [sym_pass_statement] = ACTIONS(2701), + [sym_break_statement] = ACTIONS(2701), + [sym_continue_statement] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2701), + [anon_sym_async] = ACTIONS(2701), + [anon_sym_def] = ACTIONS(2701), + [anon_sym_global] = ACTIONS(2701), + [anon_sym_nonlocal] = ACTIONS(2701), + [anon_sym_exec] = ACTIONS(2701), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_AT] = ACTIONS(2699), + [anon_sym_not] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_lambda] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2699), + [sym_ellipsis] = ACTIONS(2699), + [anon_sym_LBRACE] = ACTIONS(2699), + [sym_string] = ACTIONS(2701), + [sym_integer] = ACTIONS(2701), + [sym_float] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2703), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_none] = ACTIONS(2701), + [anon_sym_await] = ACTIONS(2701), [sym_comment] = ACTIONS(76), }, - [1159] = { - [sym_default_parameter] = STATE(823), - [sym_typed_default_parameter] = STATE(823), - [sym_list_splat] = STATE(1456), - [sym_dictionary_splat] = STATE(1456), - [sym_typed_parameter] = STATE(823), - [sym_tuple] = STATE(823), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_print] = ACTIONS(2555), - [anon_sym_exec] = ACTIONS(2555), - [sym_identifier] = ACTIONS(2557), + [1242] = { + [anon_sym_if] = ACTIONS(598), + [anon_sym_COLON] = ACTIONS(2140), + [anon_sym_and] = ACTIONS(602), + [anon_sym_or] = ACTIONS(604), [sym_comment] = ACTIONS(76), }, - [1160] = { - [sym__expression] = STATE(1466), - [sym__primary_expression] = STATE(1467), - [sym_not_operator] = STATE(67), - [sym_boolean_operator] = STATE(67), - [sym_binary_operator] = STATE(61), - [sym_unary_operator] = STATE(61), - [sym_comparison_operator] = STATE(67), - [sym_lambda] = STATE(67), - [sym_attribute] = STATE(61), - [sym_subscript] = STATE(61), - [sym_call] = STATE(61), - [sym_type] = STATE(1468), - [sym_list] = STATE(61), - [sym_list_comprehension] = STATE(61), - [sym_dictionary] = STATE(61), - [sym_dictionary_comprehension] = STATE(61), - [sym_set] = STATE(61), - [sym_set_comprehension] = STATE(61), - [sym_parenthesized_expression] = STATE(61), - [sym_tuple] = STATE(61), - [sym_generator_expression] = STATE(61), - [sym_conditional_expression] = STATE(67), - [sym_concatenated_string] = STATE(61), - [sym_await] = STATE(67), - [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_print] = ACTIONS(90), - [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_lambda] = ACTIONS(2565), - [anon_sym_LBRACK] = ACTIONS(100), - [sym_ellipsis] = ACTIONS(102), - [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), - [sym_integer] = ACTIONS(108), - [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(110), - [sym_true] = ACTIONS(108), - [sym_false] = ACTIONS(108), - [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2569), + [1243] = { + [anon_sym_COLON] = ACTIONS(2705), [sym_comment] = ACTIONS(76), }, - [1161] = { - [sym__expression] = STATE(1469), - [sym__primary_expression] = STATE(221), - [sym_not_operator] = STATE(67), - [sym_boolean_operator] = STATE(67), - [sym_binary_operator] = STATE(61), - [sym_unary_operator] = STATE(61), - [sym_comparison_operator] = STATE(67), - [sym_lambda] = STATE(67), - [sym_attribute] = STATE(61), - [sym_subscript] = STATE(61), - [sym_call] = STATE(61), - [sym_list] = STATE(61), - [sym_list_comprehension] = STATE(61), - [sym_dictionary] = STATE(61), - [sym_dictionary_comprehension] = STATE(61), - [sym_set] = STATE(61), - [sym_set_comprehension] = STATE(61), - [sym_parenthesized_expression] = STATE(61), - [sym_tuple] = STATE(61), - [sym_generator_expression] = STATE(61), - [sym_conditional_expression] = STATE(67), - [sym_concatenated_string] = STATE(61), - [sym_await] = STATE(67), - [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_print] = ACTIONS(90), - [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), - [anon_sym_LBRACK] = ACTIONS(100), - [sym_ellipsis] = ACTIONS(102), - [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), - [sym_integer] = ACTIONS(108), - [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(110), - [sym_true] = ACTIONS(108), - [sym_false] = ACTIONS(108), - [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [1244] = { + [aux_sym_print_statement_repeat1] = STATE(675), + [sym__newline] = ACTIONS(2707), + [anon_sym_COMMA] = ACTIONS(508), [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2707), }, - [1162] = { - [aux_sym__parameters_repeat1] = STATE(1460), - [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_COMMA] = ACTIONS(2571), + [1245] = { + [ts_builtin_sym_end] = ACTIONS(2709), + [anon_sym_import] = ACTIONS(2711), + [anon_sym_from] = ACTIONS(2711), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym_print] = ACTIONS(2711), + [anon_sym_assert] = ACTIONS(2711), + [anon_sym_return] = ACTIONS(2711), + [anon_sym_del] = ACTIONS(2711), + [anon_sym_raise] = ACTIONS(2711), + [sym_pass_statement] = ACTIONS(2711), + [sym_break_statement] = ACTIONS(2711), + [sym_continue_statement] = ACTIONS(2711), + [anon_sym_if] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2711), + [anon_sym_while] = ACTIONS(2711), + [anon_sym_try] = ACTIONS(2711), + [anon_sym_with] = ACTIONS(2711), + [anon_sym_async] = ACTIONS(2711), + [anon_sym_def] = ACTIONS(2711), + [anon_sym_global] = ACTIONS(2711), + [anon_sym_nonlocal] = ACTIONS(2711), + [anon_sym_exec] = ACTIONS(2711), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_AT] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2711), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2709), + [anon_sym_lambda] = ACTIONS(2711), + [anon_sym_yield] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [sym_ellipsis] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2709), + [sym_string] = ACTIONS(2711), + [sym_integer] = ACTIONS(2711), + [sym_float] = ACTIONS(2711), + [sym_identifier] = ACTIONS(2713), + [sym_true] = ACTIONS(2711), + [sym_false] = ACTIONS(2711), + [sym_none] = ACTIONS(2711), + [anon_sym_await] = ACTIONS(2711), [sym_comment] = ACTIONS(76), }, - [1163] = { - [anon_sym_COLON] = ACTIONS(2573), - [anon_sym_DASH_GT] = ACTIONS(2573), + [1246] = { + [sym__newline] = ACTIONS(2372), [sym_comment] = ACTIONS(76), }, - [1164] = { - [sym__expression] = STATE(1471), - [sym__primary_expression] = STATE(221), + [1247] = { + [sym_list_splat] = STATE(1399), + [sym_dictionary_splat] = STATE(1399), + [sym__expression] = STATE(1400), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -43277,7 +45392,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_type] = STATE(848), + [sym_keyword_argument] = STATE(1399), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -43291,143 +45406,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_print] = ACTIONS(90), - [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_RPAREN] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(110), + [sym_identifier] = ACTIONS(914), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), - [sym_comment] = ACTIONS(76), - }, - [1165] = { - [ts_builtin_sym_end] = ACTIONS(2575), - [anon_sym_import] = ACTIONS(2577), - [anon_sym_from] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_print] = ACTIONS(2577), - [anon_sym_assert] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_del] = ACTIONS(2577), - [anon_sym_raise] = ACTIONS(2577), - [sym_pass_statement] = ACTIONS(2577), - [sym_break_statement] = ACTIONS(2577), - [sym_continue_statement] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_with] = ACTIONS(2577), - [anon_sym_async] = ACTIONS(2577), - [anon_sym_def] = ACTIONS(2577), - [anon_sym_global] = ACTIONS(2577), - [anon_sym_nonlocal] = ACTIONS(2577), - [anon_sym_exec] = ACTIONS(2577), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_AT] = ACTIONS(2575), - [anon_sym_not] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_lambda] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2577), - [anon_sym_LBRACK] = ACTIONS(2575), - [sym_ellipsis] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(2575), - [sym_string] = ACTIONS(2577), - [sym_integer] = ACTIONS(2577), - [sym_float] = ACTIONS(2577), - [sym_identifier] = ACTIONS(2579), - [sym_true] = ACTIONS(2577), - [sym_false] = ACTIONS(2577), - [sym_none] = ACTIONS(2577), - [anon_sym_await] = ACTIONS(2577), - [sym_comment] = ACTIONS(76), - }, - [1166] = { - [anon_sym_if] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(2032), - [anon_sym_and] = ACTIONS(568), - [anon_sym_or] = ACTIONS(570), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1167] = { - [anon_sym_COLON] = ACTIONS(2581), - [sym_comment] = ACTIONS(76), - }, - [1168] = { - [aux_sym_print_statement_repeat1] = STATE(647), - [sym__newline] = ACTIONS(2583), - [anon_sym_COMMA] = ACTIONS(494), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2583), - }, - [1169] = { - [ts_builtin_sym_end] = ACTIONS(2585), - [anon_sym_import] = ACTIONS(2587), - [anon_sym_from] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2585), - [anon_sym_print] = ACTIONS(2587), - [anon_sym_assert] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_del] = ACTIONS(2587), - [anon_sym_raise] = ACTIONS(2587), - [sym_pass_statement] = ACTIONS(2587), - [sym_break_statement] = ACTIONS(2587), - [sym_continue_statement] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_with] = ACTIONS(2587), - [anon_sym_async] = ACTIONS(2587), - [anon_sym_def] = ACTIONS(2587), - [anon_sym_global] = ACTIONS(2587), - [anon_sym_nonlocal] = ACTIONS(2587), - [anon_sym_exec] = ACTIONS(2587), - [anon_sym_class] = ACTIONS(2587), - [anon_sym_AT] = ACTIONS(2585), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_lambda] = ACTIONS(2587), - [anon_sym_yield] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2585), - [sym_ellipsis] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [sym_string] = ACTIONS(2587), - [sym_integer] = ACTIONS(2587), - [sym_float] = ACTIONS(2587), - [sym_identifier] = ACTIONS(2589), - [sym_true] = ACTIONS(2587), - [sym_false] = ACTIONS(2587), - [sym_none] = ACTIONS(2587), - [anon_sym_await] = ACTIONS(2587), + [1248] = { + [aux_sym_argument_list_repeat1] = STATE(1402), + [anon_sym_RPAREN] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2717), [sym_comment] = ACTIONS(76), }, - [1170] = { - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(1311), - [anon_sym_or] = ACTIONS(1313), + [1249] = { + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(1377), + [anon_sym_or] = ACTIONS(1379), [sym_comment] = ACTIONS(76), }, - [1171] = { - [sym__expression] = STATE(1473), - [sym__primary_expression] = STATE(415), + [1250] = { + [sym__expression] = STATE(1562), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -43452,181 +45469,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [1172] = { - [aux_sym_concatenated_string_repeat1] = STATE(1172), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [1251] = { + [aux_sym_concatenated_string_repeat1] = STATE(1251), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_COLON] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [1173] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(2591), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1252] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(2719), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1174] = { - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_COLON] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(1311), - [anon_sym_or] = ACTIONS(1550), + [1253] = { + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_COLON] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(1377), + [anon_sym_or] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [1175] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1254] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1176] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_SLASH_SLASH] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1255] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PERCENT] = ACTIONS(1391), + [anon_sym_SLASH_SLASH] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1177] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_GT_GT] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_COLON] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_SLASH_SLASH] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1333), - [anon_sym_LT_LT] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), + [1256] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PERCENT] = ACTIONS(1391), + [anon_sym_SLASH_SLASH] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1178] = { - [sym__primary_expression] = STATE(1475), + [1257] = { + [sym__primary_expression] = STATE(1564), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -43645,13 +45662,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -43660,175 +45677,175 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1179] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_SLASH_SLASH] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1258] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PERCENT] = ACTIONS(1391), + [anon_sym_SLASH_SLASH] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1180] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_GT_GT] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_SLASH_SLASH] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1333), - [anon_sym_LT_LT] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1259] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PERCENT] = ACTIONS(1391), + [anon_sym_SLASH_SLASH] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1181] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_GT_GT] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_SLASH_SLASH] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1333), - [anon_sym_LT_LT] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1260] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PERCENT] = ACTIONS(1391), + [anon_sym_SLASH_SLASH] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1182] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_GT_GT] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_SLASH_SLASH] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1261] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PERCENT] = ACTIONS(1391), + [anon_sym_SLASH_SLASH] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1183] = { - [aux_sym_comparison_operator_repeat1] = STATE(1183), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_COLON] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(2593), - [anon_sym_not] = ACTIONS(2596), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(2599), - [anon_sym_LT_EQ] = ACTIONS(2593), - [anon_sym_EQ_EQ] = ACTIONS(2593), - [anon_sym_BANG_EQ] = ACTIONS(2593), - [anon_sym_GT_EQ] = ACTIONS(2593), - [anon_sym_GT] = ACTIONS(2599), - [anon_sym_LT_GT] = ACTIONS(2593), - [anon_sym_is] = ACTIONS(2602), + [1262] = { + [aux_sym_comparison_operator_repeat1] = STATE(1262), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2724), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_LT_EQ] = ACTIONS(2721), + [anon_sym_EQ_EQ] = ACTIONS(2721), + [anon_sym_BANG_EQ] = ACTIONS(2721), + [anon_sym_GT_EQ] = ACTIONS(2721), + [anon_sym_GT] = ACTIONS(2727), + [anon_sym_LT_GT] = ACTIONS(2721), + [anon_sym_is] = ACTIONS(2730), [sym_comment] = ACTIONS(76), }, - [1184] = { - [anon_sym_if] = ACTIONS(690), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_and] = ACTIONS(2034), - [anon_sym_or] = ACTIONS(2036), + [1263] = { + [anon_sym_if] = ACTIONS(726), + [anon_sym_EQ] = ACTIONS(726), + [anon_sym_and] = ACTIONS(2142), + [anon_sym_or] = ACTIONS(2144), [sym_comment] = ACTIONS(76), }, - [1185] = { - [sym__expression] = STATE(1476), - [sym__primary_expression] = STATE(831), + [1264] = { + [sym__expression] = STATE(1565), + [sym__primary_expression] = STATE(889), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -43853,65 +45870,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_lambda] = ACTIONS(1349), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_lambda] = ACTIONS(1415), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1353), + [anon_sym_await] = ACTIONS(1419), [sym_comment] = ACTIONS(76), }, - [1186] = { - [anon_sym_COLON] = ACTIONS(2605), + [1265] = { + [anon_sym_COLON] = ACTIONS(2733), [sym_comment] = ACTIONS(76), }, - [1187] = { - [aux_sym_concatenated_string_repeat1] = STATE(1478), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_EQ] = ACTIONS(846), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [1266] = { + [aux_sym_concatenated_string_repeat1] = STATE(1567), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [1188] = { - [sym__expression] = STATE(1479), - [sym__primary_expression] = STATE(509), + [1267] = { + [sym__expression] = STATE(1568), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -43936,27 +45953,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [1189] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(831), + [1268] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(889), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -43981,27 +45998,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_lambda] = ACTIONS(1349), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_lambda] = ACTIONS(1415), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1353), + [anon_sym_await] = ACTIONS(1419), [sym_comment] = ACTIONS(76), }, - [1190] = { - [sym__expression] = STATE(1480), - [sym__primary_expression] = STATE(831), + [1269] = { + [sym__expression] = STATE(1569), + [sym__primary_expression] = STATE(889), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -44026,26 +46043,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_lambda] = ACTIONS(1349), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_lambda] = ACTIONS(1415), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1353), + [anon_sym_await] = ACTIONS(1419), [sym_comment] = ACTIONS(76), }, - [1191] = { - [sym__primary_expression] = STATE(1481), + [1270] = { + [sym__primary_expression] = STATE(1570), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44064,13 +46081,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44079,8 +46096,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1192] = { - [sym__primary_expression] = STATE(1482), + [1271] = { + [sym__primary_expression] = STATE(1571), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44099,13 +46116,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44114,8 +46131,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1193] = { - [sym__primary_expression] = STATE(1483), + [1272] = { + [sym__primary_expression] = STATE(1572), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44134,13 +46151,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44149,12 +46166,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1194] = { - [anon_sym_in] = ACTIONS(2607), + [1273] = { + [anon_sym_in] = ACTIONS(2735), [sym_comment] = ACTIONS(76), }, - [1195] = { - [sym__primary_expression] = STATE(1485), + [1274] = { + [sym__primary_expression] = STATE(1574), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44173,13 +46190,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44188,8 +46205,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1196] = { - [sym__primary_expression] = STATE(618), + [1275] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44208,13 +46225,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44223,8 +46240,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1197] = { - [sym__primary_expression] = STATE(1486), + [1276] = { + [sym__primary_expression] = STATE(1575), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44243,13 +46260,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44258,8 +46275,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1198] = { - [sym__primary_expression] = STATE(1487), + [1277] = { + [sym__primary_expression] = STATE(1576), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44278,13 +46295,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44293,8 +46310,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1199] = { - [sym__primary_expression] = STATE(1488), + [1278] = { + [sym__primary_expression] = STATE(1577), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44313,13 +46330,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44328,8 +46345,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1200] = { - [sym__primary_expression] = STATE(1483), + [1279] = { + [sym__primary_expression] = STATE(1572), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44348,14 +46365,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44364,27 +46381,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1201] = { - [aux_sym_comparison_operator_repeat1] = STATE(1489), - [anon_sym_if] = ACTIONS(900), - [anon_sym_in] = ACTIONS(2042), - [anon_sym_EQ] = ACTIONS(902), - [anon_sym_not] = ACTIONS(2044), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2042), - [anon_sym_EQ_EQ] = ACTIONS(2042), - [anon_sym_BANG_EQ] = ACTIONS(2042), - [anon_sym_GT_EQ] = ACTIONS(2042), - [anon_sym_GT] = ACTIONS(2058), - [anon_sym_LT_GT] = ACTIONS(2042), - [anon_sym_is] = ACTIONS(2060), + [1280] = { + [aux_sym_comparison_operator_repeat1] = STATE(1578), + [anon_sym_if] = ACTIONS(936), + [anon_sym_in] = ACTIONS(2150), + [anon_sym_EQ] = ACTIONS(938), + [anon_sym_not] = ACTIONS(2152), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_LT_EQ] = ACTIONS(2150), + [anon_sym_EQ_EQ] = ACTIONS(2150), + [anon_sym_BANG_EQ] = ACTIONS(2150), + [anon_sym_GT_EQ] = ACTIONS(2150), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_LT_GT] = ACTIONS(2150), + [anon_sym_is] = ACTIONS(2168), [sym_comment] = ACTIONS(76), }, - [1202] = { - [sym__expression] = STATE(1490), - [sym__primary_expression] = STATE(415), + [1281] = { + [sym__expression] = STATE(1579), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -44409,50 +46426,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [1203] = { - [sym_default_parameter] = STATE(823), - [sym_typed_default_parameter] = STATE(823), - [sym_list_splat] = STATE(824), - [sym_dictionary_splat] = STATE(824), - [sym_typed_parameter] = STATE(823), - [sym_tuple] = STATE(823), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(1339), - [anon_sym_exec] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1343), + [1282] = { + [sym_default_parameter] = STATE(881), + [sym_typed_default_parameter] = STATE(881), + [sym_list_splat] = STATE(882), + [sym_dictionary_splat] = STATE(882), + [sym_typed_parameter] = STATE(881), + [sym_tuple] = STATE(881), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(1405), + [anon_sym_exec] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1409), [sym_comment] = ACTIONS(76), }, - [1204] = { - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_and] = ACTIONS(2075), - [anon_sym_or] = ACTIONS(2077), + [1283] = { + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_COLON] = ACTIONS(726), + [anon_sym_EQ] = ACTIONS(726), + [anon_sym_and] = ACTIONS(2183), + [anon_sym_or] = ACTIONS(2185), [sym_comment] = ACTIONS(76), }, - [1205] = { - [sym__expression] = STATE(1491), - [sym__primary_expression] = STATE(842), + [1284] = { + [sym__expression] = STATE(1580), + [sym__primary_expression] = STATE(900), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -44477,67 +46494,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_lambda] = ACTIONS(1365), + [anon_sym_not] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), + [anon_sym_lambda] = ACTIONS(1431), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1435), [sym_comment] = ACTIONS(76), }, - [1206] = { - [anon_sym_COLON] = ACTIONS(2611), + [1285] = { + [anon_sym_COLON] = ACTIONS(2739), [sym_comment] = ACTIONS(76), }, - [1207] = { - [aux_sym_concatenated_string_repeat1] = STATE(1493), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_EQ] = ACTIONS(846), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [1286] = { + [aux_sym_concatenated_string_repeat1] = STATE(1582), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_COLON] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [1208] = { - [sym__expression] = STATE(1494), - [sym__primary_expression] = STATE(509), + [1287] = { + [sym__expression] = STATE(1583), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -44562,27 +46579,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [1209] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(842), + [1288] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(900), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -44607,27 +46624,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_lambda] = ACTIONS(1365), + [anon_sym_not] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), + [anon_sym_lambda] = ACTIONS(1431), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1435), [sym_comment] = ACTIONS(76), }, - [1210] = { - [sym__expression] = STATE(1495), - [sym__primary_expression] = STATE(842), + [1289] = { + [sym__expression] = STATE(1584), + [sym__primary_expression] = STATE(900), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -44652,26 +46669,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_lambda] = ACTIONS(1365), + [anon_sym_not] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), + [anon_sym_lambda] = ACTIONS(1431), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1435), [sym_comment] = ACTIONS(76), }, - [1211] = { - [sym__primary_expression] = STATE(1496), + [1290] = { + [sym__primary_expression] = STATE(1585), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44690,13 +46707,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44705,8 +46722,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1212] = { - [sym__primary_expression] = STATE(1497), + [1291] = { + [sym__primary_expression] = STATE(1586), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44725,13 +46742,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44740,8 +46757,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1213] = { - [sym__primary_expression] = STATE(1498), + [1292] = { + [sym__primary_expression] = STATE(1587), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44760,13 +46777,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44775,12 +46792,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1214] = { - [anon_sym_in] = ACTIONS(2613), + [1293] = { + [anon_sym_in] = ACTIONS(2741), [sym_comment] = ACTIONS(76), }, - [1215] = { - [sym__primary_expression] = STATE(1500), + [1294] = { + [sym__primary_expression] = STATE(1589), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44799,13 +46816,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44814,8 +46831,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1216] = { - [sym__primary_expression] = STATE(618), + [1295] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44834,13 +46851,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44849,8 +46866,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1217] = { - [sym__primary_expression] = STATE(1501), + [1296] = { + [sym__primary_expression] = STATE(1590), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44869,13 +46886,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44884,8 +46901,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1218] = { - [sym__primary_expression] = STATE(1502), + [1297] = { + [sym__primary_expression] = STATE(1591), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44904,13 +46921,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44919,8 +46936,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1219] = { - [sym__primary_expression] = STATE(1503), + [1298] = { + [sym__primary_expression] = STATE(1592), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44939,13 +46956,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44954,8 +46971,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1220] = { - [sym__primary_expression] = STATE(1498), + [1299] = { + [sym__primary_expression] = STATE(1587), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -44974,14 +46991,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2615), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -44990,29 +47007,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1221] = { - [aux_sym_comparison_operator_repeat1] = STATE(1504), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_COLON] = ACTIONS(900), - [anon_sym_in] = ACTIONS(2083), - [anon_sym_EQ] = ACTIONS(902), - [anon_sym_not] = ACTIONS(2085), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym_LT_EQ] = ACTIONS(2083), - [anon_sym_EQ_EQ] = ACTIONS(2083), - [anon_sym_BANG_EQ] = ACTIONS(2083), - [anon_sym_GT_EQ] = ACTIONS(2083), - [anon_sym_GT] = ACTIONS(2099), - [anon_sym_LT_GT] = ACTIONS(2083), - [anon_sym_is] = ACTIONS(2101), + [1300] = { + [aux_sym_comparison_operator_repeat1] = STATE(1593), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_COLON] = ACTIONS(936), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_EQ] = ACTIONS(938), + [anon_sym_not] = ACTIONS(2193), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2207), + [anon_sym_LT_GT] = ACTIONS(2191), + [anon_sym_is] = ACTIONS(2209), [sym_comment] = ACTIONS(76), }, - [1222] = { - [sym__expression] = STATE(1505), - [sym__primary_expression] = STATE(415), + [1301] = { + [sym__expression] = STATE(1594), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -45037,35 +47054,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [1223] = { - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_and] = ACTIONS(1383), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_RBRACK] = ACTIONS(1357), + [1302] = { + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_and] = ACTIONS(1449), + [anon_sym_or] = ACTIONS(1451), + [anon_sym_RBRACK] = ACTIONS(1423), [sym_comment] = ACTIONS(76), }, - [1224] = { - [sym__expression] = STATE(1506), - [sym__primary_expression] = STATE(435), + [1303] = { + [sym__expression] = STATE(1595), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -45090,181 +47107,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [1225] = { - [aux_sym_concatenated_string_repeat1] = STATE(1225), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_RBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [1304] = { + [aux_sym_concatenated_string_repeat1] = STATE(1304), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_RBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [1226] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1305] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(2745), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1227] = { - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(1383), - [anon_sym_or] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(1550), + [1306] = { + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(1449), + [anon_sym_or] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [1228] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1307] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1229] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1308] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_PERCENT] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(1463), + [anon_sym_STAR_STAR] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1230] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_GT_GT] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_CARET] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACK] = ACTIONS(1581), + [1309] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_PERCENT] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(1463), + [anon_sym_STAR_STAR] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACK] = ACTIONS(1647), [sym_comment] = ACTIONS(76), }, - [1231] = { - [sym__primary_expression] = STATE(1508), + [1310] = { + [sym__primary_expression] = STATE(1597), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -45283,13 +47300,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -45298,225 +47315,225 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1232] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1311] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_PERCENT] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(1463), + [anon_sym_STAR_STAR] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1233] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_GT_GT] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_CARET] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1312] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_PERCENT] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(1463), + [anon_sym_STAR_STAR] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1234] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_GT_GT] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1313] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_PERCENT] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(1463), + [anon_sym_STAR_STAR] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1235] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_GT_GT] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1314] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_PERCENT] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(1463), + [anon_sym_STAR_STAR] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1236] = { - [aux_sym_comparison_operator_repeat1] = STATE(1236), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(2619), - [anon_sym_not] = ACTIONS(2622), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2619), - [anon_sym_EQ_EQ] = ACTIONS(2619), - [anon_sym_BANG_EQ] = ACTIONS(2619), - [anon_sym_GT_EQ] = ACTIONS(2619), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2619), - [anon_sym_is] = ACTIONS(2628), - [anon_sym_RBRACK] = ACTIONS(1581), + [1315] = { + [aux_sym_comparison_operator_repeat1] = STATE(1315), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(2747), + [anon_sym_not] = ACTIONS(2750), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(2753), + [anon_sym_LT_EQ] = ACTIONS(2747), + [anon_sym_EQ_EQ] = ACTIONS(2747), + [anon_sym_BANG_EQ] = ACTIONS(2747), + [anon_sym_GT_EQ] = ACTIONS(2747), + [anon_sym_GT] = ACTIONS(2753), + [anon_sym_LT_GT] = ACTIONS(2747), + [anon_sym_is] = ACTIONS(2756), + [anon_sym_RBRACK] = ACTIONS(1647), [sym_comment] = ACTIONS(76), }, - [1237] = { - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(748), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(752), - [anon_sym_or] = ACTIONS(754), - [anon_sym_RBRACK] = ACTIONS(2111), + [1316] = { + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(784), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(788), + [anon_sym_or] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(2219), [sym_comment] = ACTIONS(76), }, - [1238] = { - [sym__newline] = ACTIONS(2631), - [anon_sym_DOT] = ACTIONS(2631), - [anon_sym_LPAREN] = ACTIONS(2631), - [anon_sym_COMMA] = ACTIONS(2631), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_GT_GT] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_in] = ACTIONS(2631), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2631), - [anon_sym_and] = ACTIONS(2631), - [anon_sym_or] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(2633), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2631), - [anon_sym_EQ_EQ] = ACTIONS(2631), - [anon_sym_BANG_EQ] = ACTIONS(2631), - [anon_sym_GT_EQ] = ACTIONS(2631), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_LT_GT] = ACTIONS(2631), - [anon_sym_is] = ACTIONS(2631), - [anon_sym_PLUS_EQ] = ACTIONS(2631), - [anon_sym_DASH_EQ] = ACTIONS(2631), - [anon_sym_STAR_EQ] = ACTIONS(2631), - [anon_sym_SLASH_EQ] = ACTIONS(2631), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2631), - [anon_sym_PERCENT_EQ] = ACTIONS(2631), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2631), - [anon_sym_GT_GT_EQ] = ACTIONS(2631), - [anon_sym_LT_LT_EQ] = ACTIONS(2631), - [anon_sym_AMP_EQ] = ACTIONS(2631), - [anon_sym_CARET_EQ] = ACTIONS(2631), - [anon_sym_PIPE_EQ] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2631), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2631), + [1317] = { + [sym__newline] = ACTIONS(2759), + [anon_sym_DOT] = ACTIONS(2759), + [anon_sym_LPAREN] = ACTIONS(2759), + [anon_sym_COMMA] = ACTIONS(2759), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_GT_GT] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2759), + [anon_sym_in] = ACTIONS(2759), + [anon_sym_EQ] = ACTIONS(2761), + [anon_sym_not] = ACTIONS(2759), + [anon_sym_and] = ACTIONS(2759), + [anon_sym_or] = ACTIONS(2759), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_SLASH] = ACTIONS(2761), + [anon_sym_PERCENT] = ACTIONS(2761), + [anon_sym_SLASH_SLASH] = ACTIONS(2761), + [anon_sym_STAR_STAR] = ACTIONS(2761), + [anon_sym_PIPE] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_CARET] = ACTIONS(2761), + [anon_sym_LT_LT] = ACTIONS(2761), + [anon_sym_LT] = ACTIONS(2761), + [anon_sym_LT_EQ] = ACTIONS(2759), + [anon_sym_EQ_EQ] = ACTIONS(2759), + [anon_sym_BANG_EQ] = ACTIONS(2759), + [anon_sym_GT_EQ] = ACTIONS(2759), + [anon_sym_GT] = ACTIONS(2761), + [anon_sym_LT_GT] = ACTIONS(2759), + [anon_sym_is] = ACTIONS(2759), + [anon_sym_PLUS_EQ] = ACTIONS(2759), + [anon_sym_DASH_EQ] = ACTIONS(2759), + [anon_sym_STAR_EQ] = ACTIONS(2759), + [anon_sym_SLASH_EQ] = ACTIONS(2759), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2759), + [anon_sym_PERCENT_EQ] = ACTIONS(2759), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2759), + [anon_sym_GT_GT_EQ] = ACTIONS(2759), + [anon_sym_LT_LT_EQ] = ACTIONS(2759), + [anon_sym_AMP_EQ] = ACTIONS(2759), + [anon_sym_CARET_EQ] = ACTIONS(2759), + [anon_sym_PIPE_EQ] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2759), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2759), }, - [1239] = { - [sym_list_splat] = STATE(871), - [sym__expression] = STATE(872), - [sym__primary_expression] = STATE(435), + [1318] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(930), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -45539,30 +47556,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(222), + [anon_sym_STAR] = ACTIONS(236), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [1240] = { - [sym__expression] = STATE(1509), - [sym__primary_expression] = STATE(152), + [1319] = { + [sym__expression] = STATE(1598), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -45587,35 +47604,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lambda] = ACTIONS(228), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(242), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(234), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, - [1241] = { - [sym__expression_within_for_in_clause] = STATE(1511), - [sym__expression] = STATE(1512), - [sym__primary_expression] = STATE(152), + [1320] = { + [sym__expression_within_for_in_clause] = STATE(1600), + [sym__expression] = STATE(1601), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -45634,27 +47651,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lambda] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(2763), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(234), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, - [1242] = { - [sym__expression] = STATE(1513), - [sym__primary_expression] = STATE(1248), + [1321] = { + [sym__expression] = STATE(1602), + [sym__primary_expression] = STATE(1327), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -45679,26 +47696,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_lambda] = ACTIONS(2142), + [anon_sym_not] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_lambda] = ACTIONS(2250), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2146), + [anon_sym_await] = ACTIONS(2254), [sym_comment] = ACTIONS(76), }, - [1243] = { - [sym__primary_expression] = STATE(210), + [1322] = { + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -45717,13 +47734,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -45732,61 +47749,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1244] = { - [sym_lambda_parameters] = STATE(1515), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2637), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [1323] = { + [sym_lambda_parameters] = STATE(1604), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(2765), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [1245] = { - [aux_sym_concatenated_string_repeat1] = STATE(1516), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_for] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [anon_sym_RBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [1324] = { + [aux_sym_concatenated_string_repeat1] = STATE(1605), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_for] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [anon_sym_RBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [1246] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(1248), + [1325] = { + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(1327), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -45811,124 +47828,124 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_lambda] = ACTIONS(2142), + [anon_sym_not] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_lambda] = ACTIONS(2250), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2146), + [anon_sym_await] = ACTIONS(2254), [sym_comment] = ACTIONS(76), }, - [1247] = { - [anon_sym_if] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_and] = ACTIONS(2639), - [anon_sym_or] = ACTIONS(2641), - [anon_sym_RBRACK] = ACTIONS(2331), + [1326] = { + [anon_sym_if] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_and] = ACTIONS(2767), + [anon_sym_or] = ACTIONS(2769), + [anon_sym_RBRACK] = ACTIONS(2439), [sym_comment] = ACTIONS(76), }, - [1248] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(1530), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2645), - [anon_sym_if] = ACTIONS(296), - [anon_sym_for] = ACTIONS(296), - [anon_sym_in] = ACTIONS(2647), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2661), - [anon_sym_LT_LT] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(2663), - [anon_sym_LT_EQ] = ACTIONS(2647), - [anon_sym_EQ_EQ] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2647), - [anon_sym_GT_EQ] = ACTIONS(2647), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_LT_GT] = ACTIONS(2647), - [anon_sym_is] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACK] = ACTIONS(296), + [1327] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(1619), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_GT_GT] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(310), + [anon_sym_for] = ACTIONS(310), + [anon_sym_in] = ACTIONS(2775), + [anon_sym_not] = ACTIONS(2777), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2781), + [anon_sym_SLASH_SLASH] = ACTIONS(2781), + [anon_sym_STAR_STAR] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(2785), + [anon_sym_AMP] = ACTIONS(2787), + [anon_sym_CARET] = ACTIONS(2789), + [anon_sym_LT_LT] = ACTIONS(2773), + [anon_sym_LT] = ACTIONS(2791), + [anon_sym_LT_EQ] = ACTIONS(2775), + [anon_sym_EQ_EQ] = ACTIONS(2775), + [anon_sym_BANG_EQ] = ACTIONS(2775), + [anon_sym_GT_EQ] = ACTIONS(2775), + [anon_sym_GT] = ACTIONS(2791), + [anon_sym_LT_GT] = ACTIONS(2775), + [anon_sym_is] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACK] = ACTIONS(310), [sym_comment] = ACTIONS(76), }, - [1249] = { - [sym_for_in_clause] = STATE(604), - [sym_if_clause] = STATE(604), - [aux_sym__comprehension_body_repeat1] = STATE(1249), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_for] = ACTIONS(2670), - [anon_sym_RBRACK] = ACTIONS(2361), + [1328] = { + [sym_for_in_clause] = STATE(632), + [sym_if_clause] = STATE(632), + [aux_sym__comprehension_body_repeat1] = STATE(1328), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_for] = ACTIONS(2798), + [anon_sym_RBRACK] = ACTIONS(2469), [sym_comment] = ACTIONS(76), }, - [1250] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_GT_GT] = ACTIONS(758), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_PERCENT] = ACTIONS(766), - [anon_sym_SLASH_SLASH] = ACTIONS(766), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(774), - [anon_sym_LT_LT] = ACTIONS(758), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACK] = ACTIONS(2272), + [1329] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_SLASH] = ACTIONS(792), + [anon_sym_PERCENT] = ACTIONS(802), + [anon_sym_SLASH_SLASH] = ACTIONS(802), + [anon_sym_STAR_STAR] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACK] = ACTIONS(2380), [sym_comment] = ACTIONS(76), }, - [1251] = { - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_and] = ACTIONS(1433), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1357), + [1330] = { + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1499), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1423), [sym_comment] = ACTIONS(76), }, - [1252] = { - [sym__expression] = STATE(1531), - [sym__primary_expression] = STATE(467), + [1331] = { + [sym__expression] = STATE(1620), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -45953,181 +47970,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [1253] = { - [aux_sym_concatenated_string_repeat1] = STATE(1253), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [1332] = { + [aux_sym_concatenated_string_repeat1] = STATE(1332), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [1254] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1333] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(2801), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1255] = { - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(1433), - [anon_sym_or] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), + [1334] = { + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(1499), + [anon_sym_or] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [1256] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1335] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1257] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1336] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1258] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_GT_GT] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_LT_LT] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(1581), + [1337] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(1647), [sym_comment] = ACTIONS(76), }, - [1259] = { - [sym__primary_expression] = STATE(1533), + [1338] = { + [sym__primary_expression] = STATE(1622), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -46146,13 +48163,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -46161,226 +48178,226 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1260] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1339] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1261] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_GT_GT] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_LT_LT] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1340] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1262] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_GT_GT] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_LT_LT] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1341] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1263] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_GT_GT] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1342] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1264] = { - [aux_sym_comparison_operator_repeat1] = STATE(1264), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(2675), - [anon_sym_not] = ACTIONS(2678), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_LT_EQ] = ACTIONS(2675), - [anon_sym_EQ_EQ] = ACTIONS(2675), - [anon_sym_BANG_EQ] = ACTIONS(2675), - [anon_sym_GT_EQ] = ACTIONS(2675), - [anon_sym_GT] = ACTIONS(2681), - [anon_sym_LT_GT] = ACTIONS(2675), - [anon_sym_is] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(1581), + [1343] = { + [aux_sym_comparison_operator_repeat1] = STATE(1343), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2806), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_LT_EQ] = ACTIONS(2803), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_GT_EQ] = ACTIONS(2803), + [anon_sym_GT] = ACTIONS(2809), + [anon_sym_LT_GT] = ACTIONS(2803), + [anon_sym_is] = ACTIONS(2812), + [anon_sym_RBRACE] = ACTIONS(1647), [sym_comment] = ACTIONS(76), }, - [1265] = { - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(806), - [anon_sym_COLON] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(812), - [anon_sym_or] = ACTIONS(814), - [anon_sym_RBRACE] = ACTIONS(2111), + [1344] = { + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(842), + [anon_sym_COLON] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(848), + [anon_sym_or] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(2219), [sym_comment] = ACTIONS(76), }, - [1266] = { - [sym__newline] = ACTIONS(2687), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2689), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(2687), - [anon_sym_EQ] = ACTIONS(2689), - [anon_sym_not] = ACTIONS(2687), - [anon_sym_and] = ACTIONS(2687), - [anon_sym_or] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2689), - [anon_sym_SLASH] = ACTIONS(2689), - [anon_sym_PERCENT] = ACTIONS(2689), - [anon_sym_SLASH_SLASH] = ACTIONS(2689), - [anon_sym_STAR_STAR] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2689), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2687), - [anon_sym_EQ_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_GT_EQ] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2689), - [anon_sym_LT_GT] = ACTIONS(2687), - [anon_sym_is] = ACTIONS(2687), - [anon_sym_PLUS_EQ] = ACTIONS(2687), - [anon_sym_DASH_EQ] = ACTIONS(2687), - [anon_sym_STAR_EQ] = ACTIONS(2687), - [anon_sym_SLASH_EQ] = ACTIONS(2687), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2687), - [anon_sym_PERCENT_EQ] = ACTIONS(2687), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2687), - [anon_sym_GT_GT_EQ] = ACTIONS(2687), - [anon_sym_LT_LT_EQ] = ACTIONS(2687), - [anon_sym_AMP_EQ] = ACTIONS(2687), - [anon_sym_CARET_EQ] = ACTIONS(2687), - [anon_sym_PIPE_EQ] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2687), + [1345] = { + [sym__newline] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2815), + [anon_sym_COMMA] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_GT_GT] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_in] = ACTIONS(2815), + [anon_sym_EQ] = ACTIONS(2817), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_and] = ACTIONS(2815), + [anon_sym_or] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_SLASH] = ACTIONS(2817), + [anon_sym_PERCENT] = ACTIONS(2817), + [anon_sym_SLASH_SLASH] = ACTIONS(2817), + [anon_sym_STAR_STAR] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_CARET] = ACTIONS(2817), + [anon_sym_LT_LT] = ACTIONS(2817), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_LT_EQ] = ACTIONS(2815), + [anon_sym_EQ_EQ] = ACTIONS(2815), + [anon_sym_BANG_EQ] = ACTIONS(2815), + [anon_sym_GT_EQ] = ACTIONS(2815), + [anon_sym_GT] = ACTIONS(2817), + [anon_sym_LT_GT] = ACTIONS(2815), + [anon_sym_is] = ACTIONS(2815), + [anon_sym_PLUS_EQ] = ACTIONS(2815), + [anon_sym_DASH_EQ] = ACTIONS(2815), + [anon_sym_STAR_EQ] = ACTIONS(2815), + [anon_sym_SLASH_EQ] = ACTIONS(2815), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2815), + [anon_sym_PERCENT_EQ] = ACTIONS(2815), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2815), + [anon_sym_GT_GT_EQ] = ACTIONS(2815), + [anon_sym_LT_LT_EQ] = ACTIONS(2815), + [anon_sym_AMP_EQ] = ACTIONS(2815), + [anon_sym_CARET_EQ] = ACTIONS(2815), + [anon_sym_PIPE_EQ] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2815), }, - [1267] = { - [sym_list_splat] = STATE(871), - [sym__expression] = STATE(914), - [sym__primary_expression] = STATE(467), + [1346] = { + [sym_list_splat] = STATE(929), + [sym__expression] = STATE(972), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -46403,30 +48420,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1529), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [1268] = { - [sym__expression] = STATE(1534), - [sym__primary_expression] = STATE(467), + [1347] = { + [sym__expression] = STATE(1623), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -46451,75 +48468,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [1269] = { - [sym__newline] = ACTIONS(2691), - [anon_sym_DOT] = ACTIONS(2691), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_in] = ACTIONS(2691), - [anon_sym_EQ] = ACTIONS(2693), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_and] = ACTIONS(2691), - [anon_sym_or] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_SLASH_SLASH] = ACTIONS(2693), - [anon_sym_STAR_STAR] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2693), - [anon_sym_LT_LT] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2691), - [anon_sym_EQ_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_GT_EQ] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_LT_GT] = ACTIONS(2691), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2691), + [1348] = { + [sym__newline] = ACTIONS(2819), + [anon_sym_DOT] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2819), + [anon_sym_COMMA] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_GT_GT] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_in] = ACTIONS(2819), + [anon_sym_EQ] = ACTIONS(2821), + [anon_sym_not] = ACTIONS(2819), + [anon_sym_and] = ACTIONS(2819), + [anon_sym_or] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_PERCENT] = ACTIONS(2821), + [anon_sym_SLASH_SLASH] = ACTIONS(2821), + [anon_sym_STAR_STAR] = ACTIONS(2821), + [anon_sym_PIPE] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_CARET] = ACTIONS(2821), + [anon_sym_LT_LT] = ACTIONS(2821), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_LT_EQ] = ACTIONS(2819), + [anon_sym_EQ_EQ] = ACTIONS(2819), + [anon_sym_BANG_EQ] = ACTIONS(2819), + [anon_sym_GT_EQ] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2821), + [anon_sym_LT_GT] = ACTIONS(2819), + [anon_sym_is] = ACTIONS(2819), + [anon_sym_PLUS_EQ] = ACTIONS(2819), + [anon_sym_DASH_EQ] = ACTIONS(2819), + [anon_sym_STAR_EQ] = ACTIONS(2819), + [anon_sym_SLASH_EQ] = ACTIONS(2819), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2819), + [anon_sym_PERCENT_EQ] = ACTIONS(2819), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2819), + [anon_sym_GT_GT_EQ] = ACTIONS(2819), + [anon_sym_LT_LT_EQ] = ACTIONS(2819), + [anon_sym_AMP_EQ] = ACTIONS(2819), + [anon_sym_CARET_EQ] = ACTIONS(2819), + [anon_sym_PIPE_EQ] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2819), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2819), }, - [1270] = { - [sym_dictionary_splat] = STATE(919), - [sym__expression] = STATE(920), - [sym__primary_expression] = STATE(105), + [1349] = { + [sym_dictionary_splat] = STATE(977), + [sym__expression] = STATE(978), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -46533,7 +48550,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), [sym_dictionary_comprehension] = STATE(61), - [sym_pair] = STATE(919), + [sym_pair] = STATE(977), [sym_set] = STATE(61), [sym_set_comprehension] = STATE(61), [sym_parenthesized_expression] = STATE(61), @@ -46543,30 +48560,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1539), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [1271] = { - [sym__expression] = STATE(1535), - [sym__primary_expression] = STATE(164), + [1350] = { + [sym__expression] = STATE(1624), + [sym__primary_expression] = STATE(170), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -46591,36 +48608,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_lambda] = ACTIONS(248), + [anon_sym_not] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(252), + [sym_string] = ACTIONS(266), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(254), + [anon_sym_await] = ACTIONS(268), [sym_comment] = ACTIONS(76), }, - [1272] = { - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_for] = ACTIONS(690), - [anon_sym_and] = ACTIONS(2196), - [anon_sym_or] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(690), + [1351] = { + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_and] = ACTIONS(2304), + [anon_sym_or] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(726), [sym_comment] = ACTIONS(76), }, - [1273] = { - [sym__expression] = STATE(1536), - [sym__primary_expression] = STATE(930), + [1352] = { + [sym__expression] = STATE(1625), + [sym__primary_expression] = STATE(988), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -46645,67 +48662,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_lambda] = ACTIONS(1483), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_lambda] = ACTIONS(1549), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1553), [sym_comment] = ACTIONS(76), }, - [1274] = { - [anon_sym_COLON] = ACTIONS(2695), + [1353] = { + [anon_sym_COLON] = ACTIONS(2823), [sym_comment] = ACTIONS(76), }, - [1275] = { - [aux_sym_concatenated_string_repeat1] = STATE(1538), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [1354] = { + [aux_sym_concatenated_string_repeat1] = STATE(1627), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_for] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_RBRACE] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [1276] = { - [sym__expression] = STATE(1539), - [sym__primary_expression] = STATE(509), + [1355] = { + [sym__expression] = STATE(1628), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -46730,27 +48747,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [1277] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(930), + [1356] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(988), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -46775,27 +48792,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_lambda] = ACTIONS(1483), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_lambda] = ACTIONS(1549), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1553), [sym_comment] = ACTIONS(76), }, - [1278] = { - [sym__expression] = STATE(1540), - [sym__primary_expression] = STATE(930), + [1357] = { + [sym__expression] = STATE(1629), + [sym__primary_expression] = STATE(988), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -46820,26 +48837,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_lambda] = ACTIONS(1483), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_lambda] = ACTIONS(1549), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1553), [sym_comment] = ACTIONS(76), }, - [1279] = { - [sym__primary_expression] = STATE(1541), + [1358] = { + [sym__primary_expression] = STATE(1630), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -46858,13 +48875,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -46873,8 +48890,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1280] = { - [sym__primary_expression] = STATE(1542), + [1359] = { + [sym__primary_expression] = STATE(1631), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -46893,13 +48910,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -46908,8 +48925,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1281] = { - [sym__primary_expression] = STATE(1543), + [1360] = { + [sym__primary_expression] = STATE(1632), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -46928,13 +48945,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -46943,12 +48960,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1282] = { - [anon_sym_in] = ACTIONS(2697), + [1361] = { + [anon_sym_in] = ACTIONS(2825), [sym_comment] = ACTIONS(76), }, - [1283] = { - [sym__primary_expression] = STATE(1545), + [1362] = { + [sym__primary_expression] = STATE(1634), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -46967,13 +48984,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -46982,8 +48999,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1284] = { - [sym__primary_expression] = STATE(618), + [1363] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -47002,13 +49019,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -47017,8 +49034,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1285] = { - [sym__primary_expression] = STATE(1546), + [1364] = { + [sym__primary_expression] = STATE(1635), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -47037,13 +49054,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -47052,8 +49069,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1286] = { - [sym__primary_expression] = STATE(1547), + [1365] = { + [sym__primary_expression] = STATE(1636), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -47072,13 +49089,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -47087,8 +49104,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1287] = { - [sym__primary_expression] = STATE(1548), + [1366] = { + [sym__primary_expression] = STATE(1637), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -47107,13 +49124,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -47122,8 +49139,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1288] = { - [sym__primary_expression] = STATE(1543), + [1367] = { + [sym__primary_expression] = STATE(1632), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -47142,14 +49159,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_not] = ACTIONS(2827), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -47158,37 +49175,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1289] = { - [aux_sym_comparison_operator_repeat1] = STATE(1549), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_in] = ACTIONS(2204), - [anon_sym_not] = ACTIONS(2206), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_LT_EQ] = ACTIONS(2204), - [anon_sym_EQ_EQ] = ACTIONS(2204), - [anon_sym_BANG_EQ] = ACTIONS(2204), - [anon_sym_GT_EQ] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_LT_GT] = ACTIONS(2204), - [anon_sym_is] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(900), + [1368] = { + [aux_sym_comparison_operator_repeat1] = STATE(1638), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_in] = ACTIONS(2312), + [anon_sym_not] = ACTIONS(2314), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_LT_EQ] = ACTIONS(2312), + [anon_sym_EQ_EQ] = ACTIONS(2312), + [anon_sym_BANG_EQ] = ACTIONS(2312), + [anon_sym_GT_EQ] = ACTIONS(2312), + [anon_sym_GT] = ACTIONS(2328), + [anon_sym_LT_GT] = ACTIONS(2312), + [anon_sym_is] = ACTIONS(2330), + [anon_sym_RBRACE] = ACTIONS(936), [sym_comment] = ACTIONS(76), }, - [1290] = { - [sym__expression_within_for_in_clause] = STATE(1551), - [sym__expression] = STATE(1552), - [sym__primary_expression] = STATE(930), + [1369] = { + [sym__expression_within_for_in_clause] = STATE(1640), + [sym__expression] = STATE(1641), + [sym__primary_expression] = STATE(988), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -47207,27 +49224,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_lambda] = ACTIONS(2701), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_lambda] = ACTIONS(2829), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1553), [sym_comment] = ACTIONS(76), }, - [1291] = { - [sym__expression] = STATE(1553), - [sym__primary_expression] = STATE(1297), + [1370] = { + [sym__expression] = STATE(1642), + [sym__primary_expression] = STATE(1376), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -47252,26 +49269,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_lambda] = ACTIONS(2234), + [anon_sym_not] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_lambda] = ACTIONS(2342), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2346), [sym_comment] = ACTIONS(76), }, - [1292] = { - [sym__primary_expression] = STATE(210), + [1371] = { + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -47290,13 +49307,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -47305,61 +49322,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1293] = { - [sym_lambda_parameters] = STATE(1555), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2703), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [1372] = { + [sym_lambda_parameters] = STATE(1644), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(2831), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [1294] = { - [aux_sym_concatenated_string_repeat1] = STATE(1556), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_for] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [anon_sym_RBRACE] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [1373] = { + [aux_sym_concatenated_string_repeat1] = STATE(1645), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_for] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [anon_sym_RBRACE] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [1295] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(1297), + [1374] = { + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(1376), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -47384,116 +49401,116 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_lambda] = ACTIONS(2234), + [anon_sym_not] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_lambda] = ACTIONS(2342), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2346), [sym_comment] = ACTIONS(76), }, - [1296] = { - [anon_sym_if] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_and] = ACTIONS(2705), - [anon_sym_or] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2331), + [1375] = { + [anon_sym_if] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_and] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2835), + [anon_sym_RBRACE] = ACTIONS(2439), [sym_comment] = ACTIONS(76), }, - [1297] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(1570), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(296), - [anon_sym_for] = ACTIONS(296), - [anon_sym_in] = ACTIONS(2713), - [anon_sym_not] = ACTIONS(2715), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_SLASH] = ACTIONS(2709), - [anon_sym_PERCENT] = ACTIONS(2719), - [anon_sym_SLASH_SLASH] = ACTIONS(2719), - [anon_sym_STAR_STAR] = ACTIONS(2721), - [anon_sym_PIPE] = ACTIONS(2723), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_LT_LT] = ACTIONS(2711), - [anon_sym_LT] = ACTIONS(2729), - [anon_sym_LT_EQ] = ACTIONS(2713), - [anon_sym_EQ_EQ] = ACTIONS(2713), - [anon_sym_BANG_EQ] = ACTIONS(2713), - [anon_sym_GT_EQ] = ACTIONS(2713), - [anon_sym_GT] = ACTIONS(2729), - [anon_sym_LT_GT] = ACTIONS(2713), - [anon_sym_is] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(296), + [1376] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(1659), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(2839), + [anon_sym_if] = ACTIONS(310), + [anon_sym_for] = ACTIONS(310), + [anon_sym_in] = ACTIONS(2841), + [anon_sym_not] = ACTIONS(2843), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2847), + [anon_sym_SLASH_SLASH] = ACTIONS(2847), + [anon_sym_STAR_STAR] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_CARET] = ACTIONS(2855), + [anon_sym_LT_LT] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_LT_EQ] = ACTIONS(2841), + [anon_sym_EQ_EQ] = ACTIONS(2841), + [anon_sym_BANG_EQ] = ACTIONS(2841), + [anon_sym_GT_EQ] = ACTIONS(2841), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_LT_GT] = ACTIONS(2841), + [anon_sym_is] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(310), [sym_comment] = ACTIONS(76), }, - [1298] = { - [sym_for_in_clause] = STATE(604), - [sym_if_clause] = STATE(604), - [aux_sym__comprehension_body_repeat1] = STATE(1298), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_RBRACE] = ACTIONS(2361), + [1377] = { + [sym_for_in_clause] = STATE(632), + [sym_if_clause] = STATE(632), + [aux_sym__comprehension_body_repeat1] = STATE(1377), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_RBRACE] = ACTIONS(2469), [sym_comment] = ACTIONS(76), }, - [1299] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_COLON] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_SLASH] = ACTIONS(816), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_SLASH_SLASH] = ACTIONS(826), - [anon_sym_STAR_STAR] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(2272), + [1378] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(854), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_COLON] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_STAR_STAR] = ACTIONS(864), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(868), + [anon_sym_CARET] = ACTIONS(870), + [anon_sym_LT_LT] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(2380), [sym_comment] = ACTIONS(76), }, - [1300] = { - [sym__expression] = STATE(502), + [1379] = { + [sym__expression] = STATE(530), [sym__primary_expression] = STATE(39), [sym_not_operator] = STATE(40), [sym_boolean_operator] = STATE(40), @@ -47516,28 +49533,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(1554), + [sym__newline] = ACTIONS(1620), [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(204), - [anon_sym_EQ] = ACTIONS(1554), - [anon_sym_exec] = ACTIONS(204), + [anon_sym_print] = ACTIONS(218), + [anon_sym_EQ] = ACTIONS(1620), + [anon_sym_exec] = ACTIONS(218), [anon_sym_not] = ACTIONS(54), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(854), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(890), [anon_sym_TILDE] = ACTIONS(56), [anon_sym_lambda] = ACTIONS(58), - [anon_sym_PLUS_EQ] = ACTIONS(1554), - [anon_sym_DASH_EQ] = ACTIONS(1554), - [anon_sym_STAR_EQ] = ACTIONS(1554), - [anon_sym_SLASH_EQ] = ACTIONS(1554), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1554), - [anon_sym_PERCENT_EQ] = ACTIONS(1554), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1554), - [anon_sym_GT_GT_EQ] = ACTIONS(1554), - [anon_sym_LT_LT_EQ] = ACTIONS(1554), - [anon_sym_AMP_EQ] = ACTIONS(1554), - [anon_sym_CARET_EQ] = ACTIONS(1554), - [anon_sym_PIPE_EQ] = ACTIONS(1554), + [anon_sym_PLUS_EQ] = ACTIONS(1620), + [anon_sym_DASH_EQ] = ACTIONS(1620), + [anon_sym_STAR_EQ] = ACTIONS(1620), + [anon_sym_SLASH_EQ] = ACTIONS(1620), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1620), + [anon_sym_PERCENT_EQ] = ACTIONS(1620), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1620), + [anon_sym_GT_GT_EQ] = ACTIONS(1620), + [anon_sym_LT_LT_EQ] = ACTIONS(1620), + [anon_sym_AMP_EQ] = ACTIONS(1620), + [anon_sym_CARET_EQ] = ACTIONS(1620), + [anon_sym_PIPE_EQ] = ACTIONS(1620), [anon_sym_LBRACK] = ACTIONS(62), [sym_ellipsis] = ACTIONS(64), [anon_sym_LBRACE] = ACTIONS(66), @@ -47550,18 +49567,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(70), [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(1554), + [sym__semicolon] = ACTIONS(1620), }, - [1301] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1380] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1302] = { - [sym__expression] = STATE(1571), - [sym__primary_expression] = STATE(509), + [1381] = { + [sym__expression] = STATE(1660), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -47586,198 +49603,198 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [1303] = { - [aux_sym_concatenated_string_repeat1] = STATE(1303), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_else] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [1382] = { + [aux_sym_concatenated_string_repeat1] = STATE(1382), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_else] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [1304] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(2739), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1383] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1305] = { - [sym__newline] = ACTIONS(2741), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(288), - [anon_sym_EQ] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(292), - [anon_sym_or] = ACTIONS(294), - [anon_sym_PLUS_EQ] = ACTIONS(2741), - [anon_sym_DASH_EQ] = ACTIONS(2741), - [anon_sym_STAR_EQ] = ACTIONS(2741), - [anon_sym_SLASH_EQ] = ACTIONS(2741), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2741), - [anon_sym_PERCENT_EQ] = ACTIONS(2741), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2741), - [anon_sym_GT_GT_EQ] = ACTIONS(2741), - [anon_sym_LT_LT_EQ] = ACTIONS(2741), - [anon_sym_AMP_EQ] = ACTIONS(2741), - [anon_sym_CARET_EQ] = ACTIONS(2741), - [anon_sym_PIPE_EQ] = ACTIONS(2741), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2741), + [1384] = { + [sym__newline] = ACTIONS(2869), + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(302), + [anon_sym_EQ] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(306), + [anon_sym_or] = ACTIONS(308), + [anon_sym_PLUS_EQ] = ACTIONS(2869), + [anon_sym_DASH_EQ] = ACTIONS(2869), + [anon_sym_STAR_EQ] = ACTIONS(2869), + [anon_sym_SLASH_EQ] = ACTIONS(2869), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2869), + [anon_sym_PERCENT_EQ] = ACTIONS(2869), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2869), + [anon_sym_GT_GT_EQ] = ACTIONS(2869), + [anon_sym_LT_LT_EQ] = ACTIONS(2869), + [anon_sym_AMP_EQ] = ACTIONS(2869), + [anon_sym_CARET_EQ] = ACTIONS(2869), + [anon_sym_PIPE_EQ] = ACTIONS(2869), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2869), }, - [1306] = { - [anon_sym_if] = ACTIONS(1550), - [anon_sym_else] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1550), + [1385] = { + [anon_sym_if] = ACTIONS(1616), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [1307] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1386] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1308] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_SLASH] = ACTIONS(1526), - [anon_sym_PERCENT] = ACTIONS(1536), - [anon_sym_SLASH_SLASH] = ACTIONS(1536), - [anon_sym_STAR_STAR] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1387] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1602), + [anon_sym_SLASH_SLASH] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1309] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_GT_GT] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_else] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_SLASH] = ACTIONS(1526), - [anon_sym_PERCENT] = ACTIONS(1536), - [anon_sym_SLASH_SLASH] = ACTIONS(1536), - [anon_sym_STAR_STAR] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1542), - [anon_sym_CARET] = ACTIONS(1544), - [anon_sym_LT_LT] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), + [1388] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_GT_GT] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_else] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1602), + [anon_sym_SLASH_SLASH] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1606), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym_LT_LT] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1310] = { - [sym__primary_expression] = STATE(1573), + [1389] = { + [sym__primary_expression] = STATE(1662), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -47796,13 +49813,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -47811,249 +49828,249 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1311] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1526), - [anon_sym_PERCENT] = ACTIONS(1536), - [anon_sym_SLASH_SLASH] = ACTIONS(1536), - [anon_sym_STAR_STAR] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1390] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1602), + [anon_sym_SLASH_SLASH] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1312] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_GT_GT] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_SLASH] = ACTIONS(1526), - [anon_sym_PERCENT] = ACTIONS(1536), - [anon_sym_SLASH_SLASH] = ACTIONS(1536), - [anon_sym_STAR_STAR] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1542), - [anon_sym_CARET] = ACTIONS(1544), - [anon_sym_LT_LT] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1391] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_GT_GT] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1602), + [anon_sym_SLASH_SLASH] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym_LT_LT] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1313] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_GT_GT] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_SLASH] = ACTIONS(1526), - [anon_sym_PERCENT] = ACTIONS(1536), - [anon_sym_SLASH_SLASH] = ACTIONS(1536), - [anon_sym_STAR_STAR] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1544), - [anon_sym_LT_LT] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1392] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_GT_GT] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1602), + [anon_sym_SLASH_SLASH] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym_LT_LT] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1314] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_GT_GT] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_SLASH] = ACTIONS(1526), - [anon_sym_PERCENT] = ACTIONS(1536), - [anon_sym_SLASH_SLASH] = ACTIONS(1536), - [anon_sym_STAR_STAR] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1393] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_GT_GT] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1602), + [anon_sym_SLASH_SLASH] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1315] = { - [aux_sym_comparison_operator_repeat1] = STATE(1315), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_else] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(2743), - [anon_sym_not] = ACTIONS(2746), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_LT_EQ] = ACTIONS(2743), - [anon_sym_EQ_EQ] = ACTIONS(2743), - [anon_sym_BANG_EQ] = ACTIONS(2743), - [anon_sym_GT_EQ] = ACTIONS(2743), - [anon_sym_GT] = ACTIONS(2749), - [anon_sym_LT_GT] = ACTIONS(2743), - [anon_sym_is] = ACTIONS(2752), + [1394] = { + [aux_sym_comparison_operator_repeat1] = STATE(1394), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_else] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2874), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_LT_EQ] = ACTIONS(2871), + [anon_sym_EQ_EQ] = ACTIONS(2871), + [anon_sym_BANG_EQ] = ACTIONS(2871), + [anon_sym_GT_EQ] = ACTIONS(2871), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_LT_GT] = ACTIONS(2871), + [anon_sym_is] = ACTIONS(2880), [sym_comment] = ACTIONS(76), }, - [1316] = { - [anon_sym_RPAREN] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [1395] = { + [anon_sym_RPAREN] = ACTIONS(2124), + [anon_sym_COMMA] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [1317] = { - [anon_sym_RPAREN] = ACTIONS(2755), - [anon_sym_COMMA] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [1396] = { + [anon_sym_RPAREN] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [1318] = { - [anon_sym_RPAREN] = ACTIONS(2757), - [anon_sym_COMMA] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [1397] = { + [anon_sym_RPAREN] = ACTIONS(2885), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [1319] = { - [sym__newline] = ACTIONS(2759), - [anon_sym_DOT] = ACTIONS(2759), - [anon_sym_LPAREN] = ACTIONS(2759), - [anon_sym_COMMA] = ACTIONS(2759), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_GT_GT] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2759), - [anon_sym_in] = ACTIONS(2759), - [anon_sym_EQ] = ACTIONS(2761), - [anon_sym_not] = ACTIONS(2759), - [anon_sym_and] = ACTIONS(2759), - [anon_sym_or] = ACTIONS(2759), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_SLASH] = ACTIONS(2761), - [anon_sym_PERCENT] = ACTIONS(2761), - [anon_sym_SLASH_SLASH] = ACTIONS(2761), - [anon_sym_STAR_STAR] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_CARET] = ACTIONS(2761), - [anon_sym_LT_LT] = ACTIONS(2761), - [anon_sym_LT] = ACTIONS(2761), - [anon_sym_LT_EQ] = ACTIONS(2759), - [anon_sym_EQ_EQ] = ACTIONS(2759), - [anon_sym_BANG_EQ] = ACTIONS(2759), - [anon_sym_GT_EQ] = ACTIONS(2759), - [anon_sym_GT] = ACTIONS(2761), - [anon_sym_LT_GT] = ACTIONS(2759), - [anon_sym_is] = ACTIONS(2759), - [anon_sym_PLUS_EQ] = ACTIONS(2759), - [anon_sym_DASH_EQ] = ACTIONS(2759), - [anon_sym_STAR_EQ] = ACTIONS(2759), - [anon_sym_SLASH_EQ] = ACTIONS(2759), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2759), - [anon_sym_PERCENT_EQ] = ACTIONS(2759), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2759), - [anon_sym_GT_GT_EQ] = ACTIONS(2759), - [anon_sym_LT_LT_EQ] = ACTIONS(2759), - [anon_sym_AMP_EQ] = ACTIONS(2759), - [anon_sym_CARET_EQ] = ACTIONS(2759), - [anon_sym_PIPE_EQ] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2759), + [1398] = { + [sym__newline] = ACTIONS(2887), + [anon_sym_DOT] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_COMMA] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_GT_GT] = ACTIONS(2889), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_EQ] = ACTIONS(2889), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_and] = ACTIONS(2887), + [anon_sym_or] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_SLASH] = ACTIONS(2889), + [anon_sym_PERCENT] = ACTIONS(2889), + [anon_sym_SLASH_SLASH] = ACTIONS(2889), + [anon_sym_STAR_STAR] = ACTIONS(2889), + [anon_sym_PIPE] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2889), + [anon_sym_CARET] = ACTIONS(2889), + [anon_sym_LT_LT] = ACTIONS(2889), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2889), + [anon_sym_LT_GT] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_PLUS_EQ] = ACTIONS(2887), + [anon_sym_DASH_EQ] = ACTIONS(2887), + [anon_sym_STAR_EQ] = ACTIONS(2887), + [anon_sym_SLASH_EQ] = ACTIONS(2887), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2887), + [anon_sym_PERCENT_EQ] = ACTIONS(2887), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2887), + [anon_sym_GT_GT_EQ] = ACTIONS(2887), + [anon_sym_LT_LT_EQ] = ACTIONS(2887), + [anon_sym_AMP_EQ] = ACTIONS(2887), + [anon_sym_CARET_EQ] = ACTIONS(2887), + [anon_sym_PIPE_EQ] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2887), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2887), }, - [1320] = { - [anon_sym_RPAREN] = ACTIONS(2763), - [anon_sym_COMMA] = ACTIONS(2763), + [1399] = { + [anon_sym_RPAREN] = ACTIONS(2891), + [anon_sym_COMMA] = ACTIONS(2891), [sym_comment] = ACTIONS(76), }, - [1321] = { - [anon_sym_RPAREN] = ACTIONS(2763), - [anon_sym_COMMA] = ACTIONS(2763), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [1400] = { + [anon_sym_RPAREN] = ACTIONS(2891), + [anon_sym_COMMA] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [1322] = { - [sym_list_splat] = STATE(1320), - [sym_dictionary_splat] = STATE(1320), - [sym__expression] = STATE(1321), - [sym__primary_expression] = STATE(221), + [1401] = { + [sym_list_splat] = STATE(1399), + [sym_dictionary_splat] = STATE(1399), + [sym__expression] = STATE(1400), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -48063,7 +50080,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_keyword_argument] = STATE(1320), + [sym_keyword_argument] = STATE(1399), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -48077,45 +50094,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_print] = ACTIONS(876), - [anon_sym_exec] = ACTIONS(876), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_RPAREN] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(878), + [sym_identifier] = ACTIONS(914), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1323] = { - [aux_sym_argument_list_repeat1] = STATE(1323), - [anon_sym_RPAREN] = ACTIONS(2763), - [anon_sym_COMMA] = ACTIONS(2767), + [1402] = { + [aux_sym_argument_list_repeat1] = STATE(1402), + [anon_sym_RPAREN] = ACTIONS(2891), + [anon_sym_COMMA] = ACTIONS(2895), [sym_comment] = ACTIONS(76), }, - [1324] = { - [anon_sym_COMMA] = ACTIONS(2770), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_and] = ACTIONS(1383), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_RBRACK] = ACTIONS(2770), + [1403] = { + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_and] = ACTIONS(1449), + [anon_sym_or] = ACTIONS(1451), + [anon_sym_RBRACK] = ACTIONS(2898), [sym_comment] = ACTIONS(76), }, - [1325] = { - [sym__expression] = STATE(1576), - [sym__primary_expression] = STATE(435), + [1404] = { + [sym__expression] = STATE(1665), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -48138,40 +50155,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_COMMA] = ACTIONS(2898), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(2770), + [anon_sym_RBRACK] = ACTIONS(2898), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [1326] = { - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1599), - [anon_sym_RBRACK] = ACTIONS(1357), + [1405] = { + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1665), + [anon_sym_RBRACK] = ACTIONS(1423), [sym_comment] = ACTIONS(76), }, - [1327] = { - [sym__expression] = STATE(1577), - [sym__primary_expression] = STATE(538), + [1406] = { + [sym__expression] = STATE(1666), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -48196,149 +50213,149 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [1328] = { - [aux_sym_concatenated_string_repeat1] = STATE(1328), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_RBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [1407] = { + [aux_sym_concatenated_string_repeat1] = STATE(1407), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_COLON] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_RBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [1329] = { - [sym__newline] = ACTIONS(2772), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2774), - [anon_sym_GT_GT] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_EQ] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2772), - [anon_sym_and] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_SLASH] = ACTIONS(2774), - [anon_sym_PERCENT] = ACTIONS(2774), - [anon_sym_SLASH_SLASH] = ACTIONS(2774), - [anon_sym_STAR_STAR] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_CARET] = ACTIONS(2774), - [anon_sym_LT_LT] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2774), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2774), - [anon_sym_LT_GT] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_PLUS_EQ] = ACTIONS(2772), - [anon_sym_DASH_EQ] = ACTIONS(2772), - [anon_sym_STAR_EQ] = ACTIONS(2772), - [anon_sym_SLASH_EQ] = ACTIONS(2772), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2772), - [anon_sym_PERCENT_EQ] = ACTIONS(2772), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2772), - [anon_sym_GT_GT_EQ] = ACTIONS(2772), - [anon_sym_LT_LT_EQ] = ACTIONS(2772), - [anon_sym_AMP_EQ] = ACTIONS(2772), - [anon_sym_CARET_EQ] = ACTIONS(2772), - [anon_sym_PIPE_EQ] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2772), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2772), + [1408] = { + [sym__newline] = ACTIONS(2900), + [anon_sym_DOT] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_GT_GT] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_in] = ACTIONS(2900), + [anon_sym_EQ] = ACTIONS(2902), + [anon_sym_not] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_SLASH] = ACTIONS(2902), + [anon_sym_PERCENT] = ACTIONS(2902), + [anon_sym_SLASH_SLASH] = ACTIONS(2902), + [anon_sym_STAR_STAR] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_CARET] = ACTIONS(2902), + [anon_sym_LT_LT] = ACTIONS(2902), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2900), + [anon_sym_GT_EQ] = ACTIONS(2900), + [anon_sym_GT] = ACTIONS(2902), + [anon_sym_LT_GT] = ACTIONS(2900), + [anon_sym_is] = ACTIONS(2900), + [anon_sym_PLUS_EQ] = ACTIONS(2900), + [anon_sym_DASH_EQ] = ACTIONS(2900), + [anon_sym_STAR_EQ] = ACTIONS(2900), + [anon_sym_SLASH_EQ] = ACTIONS(2900), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2900), + [anon_sym_PERCENT_EQ] = ACTIONS(2900), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2900), + [anon_sym_GT_GT_EQ] = ACTIONS(2900), + [anon_sym_LT_LT_EQ] = ACTIONS(2900), + [anon_sym_AMP_EQ] = ACTIONS(2900), + [anon_sym_CARET_EQ] = ACTIONS(2900), + [anon_sym_PIPE_EQ] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2900), }, - [1330] = { - [anon_sym_COMMA] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_COLON] = ACTIONS(1595), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1599), - [anon_sym_RBRACK] = ACTIONS(2776), + [1409] = { + [anon_sym_COMMA] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_COLON] = ACTIONS(1661), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1665), + [anon_sym_RBRACK] = ACTIONS(2904), [sym_comment] = ACTIONS(76), }, - [1331] = { - [anon_sym_COMMA] = ACTIONS(2776), - [anon_sym_RBRACK] = ACTIONS(2776), + [1410] = { + [anon_sym_COMMA] = ACTIONS(2904), + [anon_sym_RBRACK] = ACTIONS(2904), [sym_comment] = ACTIONS(76), }, - [1332] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1411] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(2906), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1333] = { - [anon_sym_COMMA] = ACTIONS(2770), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1599), - [anon_sym_RBRACK] = ACTIONS(2770), + [1412] = { + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_COLON] = ACTIONS(2908), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1665), + [anon_sym_RBRACK] = ACTIONS(2898), [sym_comment] = ACTIONS(76), }, - [1334] = { - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_COLON] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(1550), + [1413] = { + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_COLON] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [1335] = { - [sym__expression] = STATE(1330), - [sym__primary_expression] = STATE(538), + [1414] = { + [sym__expression] = STATE(1409), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -48347,7 +50364,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_lambda] = STATE(67), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), - [sym_slice] = STATE(1331), + [sym_slice] = STATE(1410), [sym_call] = STATE(61), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), @@ -48363,143 +50380,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(920), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(2782), + [anon_sym_RBRACK] = ACTIONS(2910), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [1336] = { - [aux_sym_subscript_repeat1] = STATE(1336), - [anon_sym_COMMA] = ACTIONS(2784), - [anon_sym_RBRACK] = ACTIONS(2776), + [1415] = { + [aux_sym_subscript_repeat1] = STATE(1415), + [anon_sym_COMMA] = ACTIONS(2912), + [anon_sym_RBRACK] = ACTIONS(2904), [sym_comment] = ACTIONS(76), }, - [1337] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1416] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1338] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_SLASH] = ACTIONS(1603), - [anon_sym_PERCENT] = ACTIONS(1613), - [anon_sym_SLASH_SLASH] = ACTIONS(1613), - [anon_sym_STAR_STAR] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1417] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_PERCENT] = ACTIONS(1679), + [anon_sym_SLASH_SLASH] = ACTIONS(1679), + [anon_sym_STAR_STAR] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1339] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_GT_GT] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_COLON] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_SLASH] = ACTIONS(1603), - [anon_sym_PERCENT] = ACTIONS(1613), - [anon_sym_SLASH_SLASH] = ACTIONS(1613), - [anon_sym_STAR_STAR] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_LT_LT] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACK] = ACTIONS(1581), + [1418] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_PERCENT] = ACTIONS(1679), + [anon_sym_SLASH_SLASH] = ACTIONS(1679), + [anon_sym_STAR_STAR] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1687), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACK] = ACTIONS(1647), [sym_comment] = ACTIONS(76), }, - [1340] = { - [sym__primary_expression] = STATE(1582), + [1419] = { + [sym__primary_expression] = STATE(1671), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -48518,13 +50535,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -48533,255 +50550,255 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1341] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1603), - [anon_sym_PERCENT] = ACTIONS(1613), - [anon_sym_SLASH_SLASH] = ACTIONS(1613), - [anon_sym_STAR_STAR] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1420] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_PERCENT] = ACTIONS(1679), + [anon_sym_SLASH_SLASH] = ACTIONS(1679), + [anon_sym_STAR_STAR] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1342] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_GT_GT] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_SLASH] = ACTIONS(1603), - [anon_sym_PERCENT] = ACTIONS(1613), - [anon_sym_SLASH_SLASH] = ACTIONS(1613), - [anon_sym_STAR_STAR] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_LT_LT] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1421] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_PERCENT] = ACTIONS(1679), + [anon_sym_SLASH_SLASH] = ACTIONS(1679), + [anon_sym_STAR_STAR] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1687), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1343] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_GT_GT] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_SLASH] = ACTIONS(1603), - [anon_sym_PERCENT] = ACTIONS(1613), - [anon_sym_SLASH_SLASH] = ACTIONS(1613), - [anon_sym_STAR_STAR] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_LT_LT] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1422] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_PERCENT] = ACTIONS(1679), + [anon_sym_SLASH_SLASH] = ACTIONS(1679), + [anon_sym_STAR_STAR] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1687), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1344] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_GT_GT] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_SLASH] = ACTIONS(1603), - [anon_sym_PERCENT] = ACTIONS(1613), - [anon_sym_SLASH_SLASH] = ACTIONS(1613), - [anon_sym_STAR_STAR] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1423] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_PERCENT] = ACTIONS(1679), + [anon_sym_SLASH_SLASH] = ACTIONS(1679), + [anon_sym_STAR_STAR] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1345] = { - [aux_sym_comparison_operator_repeat1] = STATE(1345), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_COLON] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(2787), - [anon_sym_not] = ACTIONS(2790), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(2793), - [anon_sym_LT_EQ] = ACTIONS(2787), - [anon_sym_EQ_EQ] = ACTIONS(2787), - [anon_sym_BANG_EQ] = ACTIONS(2787), - [anon_sym_GT_EQ] = ACTIONS(2787), - [anon_sym_GT] = ACTIONS(2793), - [anon_sym_LT_GT] = ACTIONS(2787), - [anon_sym_is] = ACTIONS(2796), - [anon_sym_RBRACK] = ACTIONS(1581), + [1424] = { + [aux_sym_comparison_operator_repeat1] = STATE(1424), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(2915), + [anon_sym_not] = ACTIONS(2918), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_LT_EQ] = ACTIONS(2915), + [anon_sym_EQ_EQ] = ACTIONS(2915), + [anon_sym_BANG_EQ] = ACTIONS(2915), + [anon_sym_GT_EQ] = ACTIONS(2915), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_LT_GT] = ACTIONS(2915), + [anon_sym_is] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(1647), [sym_comment] = ACTIONS(76), }, - [1346] = { - [aux_sym_dotted_name_repeat1] = STATE(1583), - [anon_sym_DOT] = ACTIONS(352), - [anon_sym_RPAREN] = ACTIONS(1015), - [anon_sym_COMMA] = ACTIONS(1015), - [anon_sym_as] = ACTIONS(1015), + [1425] = { + [aux_sym_dotted_name_repeat1] = STATE(1672), + [anon_sym_DOT] = ACTIONS(366), + [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_COMMA] = ACTIONS(1051), + [anon_sym_as] = ACTIONS(1051), [sym_comment] = ACTIONS(76), }, - [1347] = { - [sym__newline] = ACTIONS(2799), + [1426] = { + [sym__newline] = ACTIONS(2927), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2799), + [sym__semicolon] = ACTIONS(2927), }, - [1348] = { - [sym_aliased_import] = STATE(1584), - [sym_dotted_name] = STATE(1585), - [anon_sym_RPAREN] = ACTIONS(1017), - [sym_identifier] = ACTIONS(1656), + [1427] = { + [sym_aliased_import] = STATE(1673), + [sym_dotted_name] = STATE(1674), + [anon_sym_RPAREN] = ACTIONS(1053), + [sym_identifier] = ACTIONS(1722), [sym_comment] = ACTIONS(76), }, - [1349] = { - [aux_sym__import_list_repeat1] = STATE(1587), - [anon_sym_RPAREN] = ACTIONS(1017), - [anon_sym_COMMA] = ACTIONS(2801), + [1428] = { + [aux_sym__import_list_repeat1] = STATE(1676), + [anon_sym_RPAREN] = ACTIONS(1053), + [anon_sym_COMMA] = ACTIONS(2929), [sym_comment] = ACTIONS(76), }, - [1350] = { - [sym_identifier] = ACTIONS(2803), + [1429] = { + [sym_identifier] = ACTIONS(2931), [sym_comment] = ACTIONS(76), }, - [1351] = { - [anon_sym_RPAREN] = ACTIONS(2805), + [1430] = { + [anon_sym_RPAREN] = ACTIONS(2933), [sym_comment] = ACTIONS(76), }, - [1352] = { - [anon_sym_DOT] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_RPAREN] = ACTIONS(2369), - [anon_sym_COMMA] = ACTIONS(2369), - [anon_sym_as] = ACTIONS(2369), - [anon_sym_STAR] = ACTIONS(2371), - [anon_sym_GT_GT] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_COLON] = ACTIONS(2369), - [anon_sym_else] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_in] = ACTIONS(2369), - [anon_sym_EQ] = ACTIONS(2371), - [anon_sym_not] = ACTIONS(2369), - [anon_sym_and] = ACTIONS(2369), - [anon_sym_or] = ACTIONS(2369), - [anon_sym_PLUS] = ACTIONS(2369), - [anon_sym_DASH] = ACTIONS(2369), - [anon_sym_SLASH] = ACTIONS(2371), - [anon_sym_PERCENT] = ACTIONS(2369), - [anon_sym_SLASH_SLASH] = ACTIONS(2369), - [anon_sym_STAR_STAR] = ACTIONS(2369), - [anon_sym_PIPE] = ACTIONS(2369), - [anon_sym_AMP] = ACTIONS(2369), - [anon_sym_CARET] = ACTIONS(2369), - [anon_sym_LT_LT] = ACTIONS(2369), - [anon_sym_LT] = ACTIONS(2371), - [anon_sym_LT_EQ] = ACTIONS(2369), - [anon_sym_EQ_EQ] = ACTIONS(2369), - [anon_sym_BANG_EQ] = ACTIONS(2369), - [anon_sym_GT_EQ] = ACTIONS(2369), - [anon_sym_GT] = ACTIONS(2371), - [anon_sym_LT_GT] = ACTIONS(2369), - [anon_sym_is] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2369), - [anon_sym_RBRACK] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2369), + [1431] = { + [anon_sym_DOT] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [anon_sym_as] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_GT_GT] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_in] = ACTIONS(2477), + [anon_sym_EQ] = ACTIONS(2479), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_and] = ACTIONS(2477), + [anon_sym_or] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2479), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_SLASH_SLASH] = ACTIONS(2477), + [anon_sym_STAR_STAR] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_LT_LT] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT_GT] = ACTIONS(2477), + [anon_sym_is] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2477), + [anon_sym_RBRACK] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2477), [sym_comment] = ACTIONS(76), }, - [1353] = { - [anon_sym_RPAREN] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [1432] = { + [anon_sym_RPAREN] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [1354] = { - [sym__expression] = STATE(1590), - [sym__primary_expression] = STATE(221), + [1433] = { + [sym__expression] = STATE(1679), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -48806,27 +50823,287 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1355] = { - [sym__expression] = STATE(1014), - [sym__primary_expression] = STATE(221), + [1434] = { + [sym__expression] = STATE(1072), + [sym__primary_expression] = STATE(227), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_print] = ACTIONS(90), + [anon_sym_exec] = ACTIONS(90), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(394), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(110), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(396), + [sym_comment] = ACTIONS(76), + }, + [1435] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(2380), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(1096), + [anon_sym_GT_GT] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_SLASH] = ACTIONS(1096), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_SLASH_SLASH] = ACTIONS(1106), + [anon_sym_STAR_STAR] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_CARET] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), + [sym_comment] = ACTIONS(76), + }, + [1436] = { + [anon_sym_DOT] = ACTIONS(2759), + [anon_sym_LPAREN] = ACTIONS(2759), + [anon_sym_RPAREN] = ACTIONS(2759), + [anon_sym_COMMA] = ACTIONS(2759), + [anon_sym_as] = ACTIONS(2759), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_GT_GT] = ACTIONS(2759), + [anon_sym_if] = ACTIONS(2759), + [anon_sym_COLON] = ACTIONS(2759), + [anon_sym_else] = ACTIONS(2759), + [anon_sym_for] = ACTIONS(2759), + [anon_sym_in] = ACTIONS(2759), + [anon_sym_EQ] = ACTIONS(2761), + [anon_sym_not] = ACTIONS(2759), + [anon_sym_and] = ACTIONS(2759), + [anon_sym_or] = ACTIONS(2759), + [anon_sym_PLUS] = ACTIONS(2759), + [anon_sym_DASH] = ACTIONS(2759), + [anon_sym_SLASH] = ACTIONS(2761), + [anon_sym_PERCENT] = ACTIONS(2759), + [anon_sym_SLASH_SLASH] = ACTIONS(2759), + [anon_sym_STAR_STAR] = ACTIONS(2759), + [anon_sym_PIPE] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2759), + [anon_sym_CARET] = ACTIONS(2759), + [anon_sym_LT_LT] = ACTIONS(2759), + [anon_sym_LT] = ACTIONS(2761), + [anon_sym_LT_EQ] = ACTIONS(2759), + [anon_sym_EQ_EQ] = ACTIONS(2759), + [anon_sym_BANG_EQ] = ACTIONS(2759), + [anon_sym_GT_EQ] = ACTIONS(2759), + [anon_sym_GT] = ACTIONS(2761), + [anon_sym_LT_GT] = ACTIONS(2759), + [anon_sym_is] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_RBRACK] = ACTIONS(2759), + [anon_sym_RBRACE] = ACTIONS(2759), + [sym_comment] = ACTIONS(76), + }, + [1437] = { + [anon_sym_DOT] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2815), + [anon_sym_RPAREN] = ACTIONS(2815), + [anon_sym_COMMA] = ACTIONS(2815), + [anon_sym_as] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_GT_GT] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_COLON] = ACTIONS(2815), + [anon_sym_else] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_in] = ACTIONS(2815), + [anon_sym_EQ] = ACTIONS(2817), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_and] = ACTIONS(2815), + [anon_sym_or] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_SLASH] = ACTIONS(2817), + [anon_sym_PERCENT] = ACTIONS(2815), + [anon_sym_SLASH_SLASH] = ACTIONS(2815), + [anon_sym_STAR_STAR] = ACTIONS(2815), + [anon_sym_PIPE] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym_CARET] = ACTIONS(2815), + [anon_sym_LT_LT] = ACTIONS(2815), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_LT_EQ] = ACTIONS(2815), + [anon_sym_EQ_EQ] = ACTIONS(2815), + [anon_sym_BANG_EQ] = ACTIONS(2815), + [anon_sym_GT_EQ] = ACTIONS(2815), + [anon_sym_GT] = ACTIONS(2817), + [anon_sym_LT_GT] = ACTIONS(2815), + [anon_sym_is] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_RBRACK] = ACTIONS(2815), + [anon_sym_RBRACE] = ACTIONS(2815), + [sym_comment] = ACTIONS(76), + }, + [1438] = { + [anon_sym_DOT] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2819), + [anon_sym_RPAREN] = ACTIONS(2819), + [anon_sym_COMMA] = ACTIONS(2819), + [anon_sym_as] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_GT_GT] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_COLON] = ACTIONS(2819), + [anon_sym_else] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_in] = ACTIONS(2819), + [anon_sym_EQ] = ACTIONS(2821), + [anon_sym_not] = ACTIONS(2819), + [anon_sym_and] = ACTIONS(2819), + [anon_sym_or] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_PERCENT] = ACTIONS(2819), + [anon_sym_SLASH_SLASH] = ACTIONS(2819), + [anon_sym_STAR_STAR] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_CARET] = ACTIONS(2819), + [anon_sym_LT_LT] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_LT_EQ] = ACTIONS(2819), + [anon_sym_EQ_EQ] = ACTIONS(2819), + [anon_sym_BANG_EQ] = ACTIONS(2819), + [anon_sym_GT_EQ] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2821), + [anon_sym_LT_GT] = ACTIONS(2819), + [anon_sym_is] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_RBRACK] = ACTIONS(2819), + [anon_sym_RBRACE] = ACTIONS(2819), + [sym_comment] = ACTIONS(76), + }, + [1439] = { + [anon_sym_RPAREN] = ACTIONS(2869), + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(412), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(416), + [anon_sym_or] = ACTIONS(418), + [sym_comment] = ACTIONS(76), + }, + [1440] = { + [sym_lambda_parameters] = STATE(1681), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(2935), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), + [sym_comment] = ACTIONS(76), + }, + [1441] = { + [aux_sym_for_in_clause_repeat1] = STATE(1683), + [anon_sym_RPAREN] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2939), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [sym_comment] = ACTIONS(76), + }, + [1442] = { + [anon_sym_RPAREN] = ACTIONS(2941), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_and] = ACTIONS(416), + [anon_sym_or] = ACTIONS(418), + [sym_comment] = ACTIONS(76), + }, + [1443] = { + [anon_sym_RPAREN] = ACTIONS(2943), + [anon_sym_COMMA] = ACTIONS(2943), + [anon_sym_if] = ACTIONS(2943), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_RBRACK] = ACTIONS(2943), + [anon_sym_RBRACE] = ACTIONS(2943), + [sym_comment] = ACTIONS(76), + }, + [1444] = { + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_and] = ACTIONS(2441), + [anon_sym_or] = ACTIONS(2443), + [sym_comment] = ACTIONS(76), + }, + [1445] = { + [sym__expression] = STATE(1684), + [sym__primary_expression] = STATE(1103), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -48851,242 +51128,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), + [anon_sym_lambda] = ACTIONS(1783), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(1787), [sym_comment] = ACTIONS(76), }, - [1356] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1062), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_PERCENT] = ACTIONS(1070), - [anon_sym_SLASH_SLASH] = ACTIONS(1070), - [anon_sym_STAR_STAR] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_LT_LT] = ACTIONS(1062), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), - [sym_comment] = ACTIONS(76), - }, - [1357] = { - [anon_sym_DOT] = ACTIONS(2631), - [anon_sym_LPAREN] = ACTIONS(2631), - [anon_sym_RPAREN] = ACTIONS(2631), - [anon_sym_COMMA] = ACTIONS(2631), - [anon_sym_as] = ACTIONS(2631), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_GT_GT] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(2631), - [anon_sym_else] = ACTIONS(2631), - [anon_sym_for] = ACTIONS(2631), - [anon_sym_in] = ACTIONS(2631), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2631), - [anon_sym_and] = ACTIONS(2631), - [anon_sym_or] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2631), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2631), - [anon_sym_SLASH_SLASH] = ACTIONS(2631), - [anon_sym_STAR_STAR] = ACTIONS(2631), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_AMP] = ACTIONS(2631), - [anon_sym_CARET] = ACTIONS(2631), - [anon_sym_LT_LT] = ACTIONS(2631), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2631), - [anon_sym_EQ_EQ] = ACTIONS(2631), - [anon_sym_BANG_EQ] = ACTIONS(2631), - [anon_sym_GT_EQ] = ACTIONS(2631), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_LT_GT] = ACTIONS(2631), - [anon_sym_is] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_RBRACK] = ACTIONS(2631), - [anon_sym_RBRACE] = ACTIONS(2631), - [sym_comment] = ACTIONS(76), - }, - [1358] = { - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_as] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_COLON] = ACTIONS(2687), - [anon_sym_else] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(2687), - [anon_sym_EQ] = ACTIONS(2689), - [anon_sym_not] = ACTIONS(2687), - [anon_sym_and] = ACTIONS(2687), - [anon_sym_or] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2689), - [anon_sym_PERCENT] = ACTIONS(2687), - [anon_sym_SLASH_SLASH] = ACTIONS(2687), - [anon_sym_STAR_STAR] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_LT_LT] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2687), - [anon_sym_EQ_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_GT_EQ] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2689), - [anon_sym_LT_GT] = ACTIONS(2687), - [anon_sym_is] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_RBRACK] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [sym_comment] = ACTIONS(76), - }, - [1359] = { - [anon_sym_DOT] = ACTIONS(2691), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym_RPAREN] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2691), - [anon_sym_as] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_COLON] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_in] = ACTIONS(2691), - [anon_sym_EQ] = ACTIONS(2693), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_and] = ACTIONS(2691), - [anon_sym_or] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(2691), - [anon_sym_STAR_STAR] = ACTIONS(2691), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2691), - [anon_sym_EQ_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_GT_EQ] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_LT_GT] = ACTIONS(2691), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_RBRACK] = ACTIONS(2691), - [anon_sym_RBRACE] = ACTIONS(2691), - [sym_comment] = ACTIONS(76), - }, - [1360] = { - [anon_sym_RPAREN] = ACTIONS(2741), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(398), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(402), - [anon_sym_or] = ACTIONS(404), - [sym_comment] = ACTIONS(76), - }, - [1361] = { - [sym_lambda_parameters] = STATE(1592), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2807), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), - [sym_comment] = ACTIONS(76), - }, - [1362] = { - [aux_sym_for_in_clause_repeat1] = STATE(1594), - [anon_sym_RPAREN] = ACTIONS(2809), - [anon_sym_COMMA] = ACTIONS(2811), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_for] = ACTIONS(2809), - [sym_comment] = ACTIONS(76), - }, - [1363] = { - [anon_sym_RPAREN] = ACTIONS(2813), - [anon_sym_COMMA] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_and] = ACTIONS(402), - [anon_sym_or] = ACTIONS(404), - [sym_comment] = ACTIONS(76), - }, - [1364] = { - [anon_sym_RPAREN] = ACTIONS(2815), - [anon_sym_COMMA] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2815), - [anon_sym_for] = ACTIONS(2815), - [anon_sym_RBRACK] = ACTIONS(2815), - [anon_sym_RBRACE] = ACTIONS(2815), + [1446] = { + [anon_sym_COLON] = ACTIONS(2945), [sym_comment] = ACTIONS(76), }, - [1365] = { - [anon_sym_RPAREN] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_for] = ACTIONS(690), - [anon_sym_and] = ACTIONS(2333), - [anon_sym_or] = ACTIONS(2335), + [1447] = { + [aux_sym_concatenated_string_repeat1] = STATE(1686), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_for] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [1366] = { - [sym__expression] = STATE(1595), - [sym__primary_expression] = STATE(1045), + [1448] = { + [sym__expression] = STATE(1687), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -49111,66 +51212,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_lambda] = ACTIONS(1717), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1721), - [sym_comment] = ACTIONS(76), - }, - [1367] = { - [anon_sym_COLON] = ACTIONS(2817), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [1368] = { - [aux_sym_concatenated_string_repeat1] = STATE(1597), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(392), - [sym_comment] = ACTIONS(76), - }, - [1369] = { - [sym__expression] = STATE(1598), - [sym__primary_expression] = STATE(509), + [1449] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(1103), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -49195,27 +51257,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), + [anon_sym_lambda] = ACTIONS(1783), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(1787), [sym_comment] = ACTIONS(76), }, - [1370] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(1045), + [1450] = { + [sym__expression] = STATE(1688), + [sym__primary_expression] = STATE(1103), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -49240,33 +51302,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_lambda] = ACTIONS(1717), + [anon_sym_not] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), + [anon_sym_lambda] = ACTIONS(1783), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(1787), [sym_comment] = ACTIONS(76), }, - [1371] = { - [sym__expression] = STATE(1599), - [sym__primary_expression] = STATE(1045), - [sym_not_operator] = STATE(67), - [sym_boolean_operator] = STATE(67), + [1451] = { + [sym__primary_expression] = STATE(1689), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), - [sym_comparison_operator] = STATE(67), - [sym_lambda] = STATE(67), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -49279,32 +51336,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(61), [sym_tuple] = STATE(61), [sym_generator_expression] = STATE(61), - [sym_conditional_expression] = STATE(67), [sym_concatenated_string] = STATE(61), - [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_lambda] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1721), [sym_comment] = ACTIONS(76), }, - [1372] = { - [sym__primary_expression] = STATE(1600), + [1452] = { + [sym__primary_expression] = STATE(1690), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -49323,13 +51375,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -49338,8 +51390,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1373] = { - [sym__primary_expression] = STATE(1601), + [1453] = { + [sym__primary_expression] = STATE(1691), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -49358,13 +51410,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -49373,8 +51425,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1374] = { - [sym__primary_expression] = STATE(1602), + [1454] = { + [anon_sym_in] = ACTIONS(2947), + [sym_comment] = ACTIONS(76), + }, + [1455] = { + [sym__primary_expression] = STATE(1693), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -49393,13 +51449,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -49408,12 +51464,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1375] = { - [anon_sym_in] = ACTIONS(2819), - [sym_comment] = ACTIONS(76), - }, - [1376] = { - [sym__primary_expression] = STATE(1604), + [1456] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -49432,13 +51484,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -49447,8 +51499,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1377] = { - [sym__primary_expression] = STATE(618), + [1457] = { + [sym__primary_expression] = STATE(1694), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -49467,13 +51519,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -49482,8 +51534,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1378] = { - [sym__primary_expression] = STATE(1605), + [1458] = { + [sym__primary_expression] = STATE(1695), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -49502,13 +51554,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -49517,8 +51569,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1379] = { - [sym__primary_expression] = STATE(1606), + [1459] = { + [sym__primary_expression] = STATE(1696), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -49537,13 +51589,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -49552,8 +51604,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1380] = { - [sym__primary_expression] = STATE(1607), + [1460] = { + [sym__primary_expression] = STATE(1691), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -49572,13 +51624,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -49587,13 +51640,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1381] = { - [sym__primary_expression] = STATE(1602), + [1461] = { + [aux_sym_comparison_operator_repeat1] = STATE(1697), + [anon_sym_RPAREN] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_in] = ACTIONS(2449), + [anon_sym_not] = ACTIONS(2451), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_is] = ACTIONS(2467), + [sym_comment] = ACTIONS(76), + }, + [1462] = { + [anon_sym_DOT] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_RPAREN] = ACTIONS(2887), + [anon_sym_COMMA] = ACTIONS(2887), + [anon_sym_as] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_else] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_EQ] = ACTIONS(2889), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_and] = ACTIONS(2887), + [anon_sym_or] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2889), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(2887), + [anon_sym_STAR_STAR] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2889), + [anon_sym_LT_GT] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_RBRACK] = ACTIONS(2887), + [anon_sym_RBRACE] = ACTIONS(2887), + [sym_comment] = ACTIONS(76), + }, + [1463] = { + [sym_list_splat] = STATE(1399), + [sym_dictionary_splat] = STATE(1399), + [sym__expression] = STATE(1400), + [sym__primary_expression] = STATE(227), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), + [sym_keyword_argument] = STATE(1399), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -49603,59 +51723,163 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(61), [sym_tuple] = STATE(61), [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_RPAREN] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(394), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(914), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(396), + [sym_comment] = ACTIONS(76), + }, + [1464] = { + [anon_sym_DOT] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_RPAREN] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_as] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_GT_GT] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_COLON] = ACTIONS(2900), + [anon_sym_else] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_in] = ACTIONS(2900), + [anon_sym_EQ] = ACTIONS(2902), + [anon_sym_not] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_SLASH] = ACTIONS(2902), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_SLASH_SLASH] = ACTIONS(2900), + [anon_sym_STAR_STAR] = ACTIONS(2900), + [anon_sym_PIPE] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_CARET] = ACTIONS(2900), + [anon_sym_LT_LT] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2900), + [anon_sym_GT_EQ] = ACTIONS(2900), + [anon_sym_GT] = ACTIONS(2902), + [anon_sym_LT_GT] = ACTIONS(2900), + [anon_sym_is] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_RBRACK] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(2900), + [sym_comment] = ACTIONS(76), + }, + [1465] = { + [sym__expression] = STATE(1409), + [sym__primary_expression] = STATE(566), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_slice] = STATE(1410), + [sym_call] = STATE(61), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), + [anon_sym_COLON] = ACTIONS(920), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2821), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_RBRACK] = ACTIONS(2953), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [1382] = { - [aux_sym_comparison_operator_repeat1] = STATE(1608), - [anon_sym_RPAREN] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_in] = ACTIONS(2341), - [anon_sym_not] = ACTIONS(2343), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_LT_EQ] = ACTIONS(2341), - [anon_sym_EQ_EQ] = ACTIONS(2341), - [anon_sym_BANG_EQ] = ACTIONS(2341), - [anon_sym_GT_EQ] = ACTIONS(2341), - [anon_sym_GT] = ACTIONS(2357), - [anon_sym_LT_GT] = ACTIONS(2341), - [anon_sym_is] = ACTIONS(2359), - [sym_comment] = ACTIONS(76), + [1466] = { + [sym__newline] = ACTIONS(2477), + [anon_sym_DOT] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_GT_GT] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_in] = ACTIONS(2477), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_and] = ACTIONS(2477), + [anon_sym_or] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2479), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_SLASH_SLASH] = ACTIONS(2477), + [anon_sym_STAR_STAR] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_LT_LT] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT_GT] = ACTIONS(2477), + [anon_sym_is] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2477), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2477), }, - [1383] = { + [1467] = { + [sym__newline] = ACTIONS(2759), [anon_sym_DOT] = ACTIONS(2759), [anon_sym_LPAREN] = ACTIONS(2759), - [anon_sym_RPAREN] = ACTIONS(2759), [anon_sym_COMMA] = ACTIONS(2759), - [anon_sym_as] = ACTIONS(2759), [anon_sym_STAR] = ACTIONS(2761), [anon_sym_GT_GT] = ACTIONS(2759), [anon_sym_if] = ACTIONS(2759), - [anon_sym_COLON] = ACTIONS(2759), - [anon_sym_else] = ACTIONS(2759), - [anon_sym_for] = ACTIONS(2759), [anon_sym_in] = ACTIONS(2759), - [anon_sym_EQ] = ACTIONS(2761), [anon_sym_not] = ACTIONS(2759), [anon_sym_and] = ACTIONS(2759), [anon_sym_or] = ACTIONS(2759), @@ -49678,15 +51902,125 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_GT] = ACTIONS(2759), [anon_sym_is] = ACTIONS(2759), [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_RBRACK] = ACTIONS(2759), - [anon_sym_RBRACE] = ACTIONS(2759), [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2759), }, - [1384] = { - [sym_list_splat] = STATE(1320), - [sym_dictionary_splat] = STATE(1320), - [sym__expression] = STATE(1321), - [sym__primary_expression] = STATE(221), + [1468] = { + [sym__newline] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2815), + [anon_sym_COMMA] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_GT_GT] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_in] = ACTIONS(2815), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_and] = ACTIONS(2815), + [anon_sym_or] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_SLASH] = ACTIONS(2817), + [anon_sym_PERCENT] = ACTIONS(2815), + [anon_sym_SLASH_SLASH] = ACTIONS(2815), + [anon_sym_STAR_STAR] = ACTIONS(2815), + [anon_sym_PIPE] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym_CARET] = ACTIONS(2815), + [anon_sym_LT_LT] = ACTIONS(2815), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_LT_EQ] = ACTIONS(2815), + [anon_sym_EQ_EQ] = ACTIONS(2815), + [anon_sym_BANG_EQ] = ACTIONS(2815), + [anon_sym_GT_EQ] = ACTIONS(2815), + [anon_sym_GT] = ACTIONS(2817), + [anon_sym_LT_GT] = ACTIONS(2815), + [anon_sym_is] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2815), + }, + [1469] = { + [sym__newline] = ACTIONS(2819), + [anon_sym_DOT] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2819), + [anon_sym_COMMA] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_GT_GT] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_in] = ACTIONS(2819), + [anon_sym_not] = ACTIONS(2819), + [anon_sym_and] = ACTIONS(2819), + [anon_sym_or] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_PERCENT] = ACTIONS(2819), + [anon_sym_SLASH_SLASH] = ACTIONS(2819), + [anon_sym_STAR_STAR] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_CARET] = ACTIONS(2819), + [anon_sym_LT_LT] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_LT_EQ] = ACTIONS(2819), + [anon_sym_EQ_EQ] = ACTIONS(2819), + [anon_sym_BANG_EQ] = ACTIONS(2819), + [anon_sym_GT_EQ] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2821), + [anon_sym_LT_GT] = ACTIONS(2819), + [anon_sym_is] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2819), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2819), + }, + [1470] = { + [sym__newline] = ACTIONS(2869), + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(470), + [anon_sym_and] = ACTIONS(472), + [anon_sym_or] = ACTIONS(474), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2869), + }, + [1471] = { + [sym__newline] = ACTIONS(2887), + [anon_sym_DOT] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_COMMA] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_and] = ACTIONS(2887), + [anon_sym_or] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2889), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(2887), + [anon_sym_STAR_STAR] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2889), + [anon_sym_LT_GT] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2887), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2887), + }, + [1472] = { + [sym_list_splat] = STATE(1399), + [sym_dictionary_splat] = STATE(1399), + [sym__expression] = STATE(1400), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -49696,7 +52030,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_keyword_argument] = STATE(1320), + [sym_keyword_argument] = STATE(1399), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -49710,71 +52044,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(2823), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_print] = ACTIONS(876), - [anon_sym_exec] = ACTIONS(876), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_RPAREN] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(878), + [sym_identifier] = ACTIONS(914), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1385] = { - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2774), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_COLON] = ACTIONS(2772), - [anon_sym_else] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_EQ] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2772), - [anon_sym_and] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2774), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_SLASH_SLASH] = ACTIONS(2772), - [anon_sym_STAR_STAR] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2774), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2774), - [anon_sym_LT_GT] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2772), - [anon_sym_RBRACK] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2772), - [sym_comment] = ACTIONS(76), + [1473] = { + [sym__newline] = ACTIONS(2900), + [anon_sym_DOT] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_GT_GT] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_in] = ACTIONS(2900), + [anon_sym_not] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_SLASH] = ACTIONS(2902), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_SLASH_SLASH] = ACTIONS(2900), + [anon_sym_STAR_STAR] = ACTIONS(2900), + [anon_sym_PIPE] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_CARET] = ACTIONS(2900), + [anon_sym_LT_LT] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2900), + [anon_sym_GT_EQ] = ACTIONS(2900), + [anon_sym_GT] = ACTIONS(2902), + [anon_sym_LT_GT] = ACTIONS(2900), + [anon_sym_is] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2900), }, - [1386] = { - [sym__expression] = STATE(1330), - [sym__primary_expression] = STATE(538), + [1474] = { + [sym__expression] = STATE(1409), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -49783,7 +52111,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_lambda] = STATE(67), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), - [sym_slice] = STATE(1331), + [sym_slice] = STATE(1410), [sym_call] = STATE(61), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), @@ -49799,177 +52127,151 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(920), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(2825), + [anon_sym_RBRACK] = ACTIONS(2957), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [1387] = { - [sym__newline] = ACTIONS(2369), - [anon_sym_from] = ACTIONS(2369), - [anon_sym_DOT] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_COMMA] = ACTIONS(2369), - [anon_sym_STAR] = ACTIONS(2371), - [anon_sym_GT_GT] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_in] = ACTIONS(2369), - [anon_sym_not] = ACTIONS(2369), - [anon_sym_and] = ACTIONS(2369), - [anon_sym_or] = ACTIONS(2369), - [anon_sym_PLUS] = ACTIONS(2369), - [anon_sym_DASH] = ACTIONS(2369), - [anon_sym_SLASH] = ACTIONS(2371), - [anon_sym_PERCENT] = ACTIONS(2369), - [anon_sym_SLASH_SLASH] = ACTIONS(2369), - [anon_sym_STAR_STAR] = ACTIONS(2369), - [anon_sym_PIPE] = ACTIONS(2369), - [anon_sym_AMP] = ACTIONS(2369), - [anon_sym_CARET] = ACTIONS(2369), - [anon_sym_LT_LT] = ACTIONS(2369), - [anon_sym_LT] = ACTIONS(2371), - [anon_sym_LT_EQ] = ACTIONS(2369), - [anon_sym_EQ_EQ] = ACTIONS(2369), - [anon_sym_BANG_EQ] = ACTIONS(2369), - [anon_sym_GT_EQ] = ACTIONS(2369), - [anon_sym_GT] = ACTIONS(2371), - [anon_sym_LT_GT] = ACTIONS(2369), - [anon_sym_is] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2369), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2369), - }, - [1388] = { - [sym__newline] = ACTIONS(2631), - [anon_sym_from] = ACTIONS(2631), - [anon_sym_DOT] = ACTIONS(2631), - [anon_sym_LPAREN] = ACTIONS(2631), - [anon_sym_COMMA] = ACTIONS(2631), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_GT_GT] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_in] = ACTIONS(2631), - [anon_sym_not] = ACTIONS(2631), - [anon_sym_and] = ACTIONS(2631), - [anon_sym_or] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2631), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2631), - [anon_sym_SLASH_SLASH] = ACTIONS(2631), - [anon_sym_STAR_STAR] = ACTIONS(2631), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_AMP] = ACTIONS(2631), - [anon_sym_CARET] = ACTIONS(2631), - [anon_sym_LT_LT] = ACTIONS(2631), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2631), - [anon_sym_EQ_EQ] = ACTIONS(2631), - [anon_sym_BANG_EQ] = ACTIONS(2631), - [anon_sym_GT_EQ] = ACTIONS(2631), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_LT_GT] = ACTIONS(2631), - [anon_sym_is] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2631), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2631), + [1475] = { + [sym__newline] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_and] = ACTIONS(1202), + [anon_sym_or] = ACTIONS(1204), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2219), }, - [1389] = { - [sym__newline] = ACTIONS(2687), - [anon_sym_from] = ACTIONS(2687), - [anon_sym_DOT] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_in] = ACTIONS(2687), - [anon_sym_not] = ACTIONS(2687), - [anon_sym_and] = ACTIONS(2687), - [anon_sym_or] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2689), - [anon_sym_PERCENT] = ACTIONS(2687), - [anon_sym_SLASH_SLASH] = ACTIONS(2687), - [anon_sym_STAR_STAR] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_LT_LT] = ACTIONS(2687), - [anon_sym_LT] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2687), - [anon_sym_EQ_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_GT_EQ] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2689), - [anon_sym_LT_GT] = ACTIONS(2687), - [anon_sym_is] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2687), + [1476] = { + [sym__expression] = STATE(1702), + [sym__primary_expression] = STATE(316), + [sym_not_operator] = STATE(40), + [sym_boolean_operator] = STATE(40), + [sym_binary_operator] = STATE(76), + [sym_unary_operator] = STATE(76), + [sym_comparison_operator] = STATE(40), + [sym_lambda] = STATE(40), + [sym_attribute] = STATE(76), + [sym_subscript] = STATE(76), + [sym_call] = STATE(76), + [sym_list] = STATE(76), + [sym_list_comprehension] = STATE(76), + [sym_dictionary] = STATE(76), + [sym_dictionary_comprehension] = STATE(76), + [sym_set] = STATE(76), + [sym_set_comprehension] = STATE(76), + [sym_parenthesized_expression] = STATE(76), + [sym_tuple] = STATE(76), + [sym_generator_expression] = STATE(76), + [sym_conditional_expression] = STATE(40), + [sym_concatenated_string] = STATE(76), + [sym_await] = STATE(40), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_print] = ACTIONS(118), + [anon_sym_exec] = ACTIONS(118), + [anon_sym_not] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_lambda] = ACTIONS(520), + [anon_sym_LBRACK] = ACTIONS(142), + [sym_ellipsis] = ACTIONS(126), + [anon_sym_LBRACE] = ACTIONS(128), + [sym_string] = ACTIONS(522), + [sym_integer] = ACTIONS(132), + [sym_float] = ACTIONS(132), + [sym_identifier] = ACTIONS(134), + [sym_true] = ACTIONS(132), + [sym_false] = ACTIONS(132), + [sym_none] = ACTIONS(132), + [anon_sym_await] = ACTIONS(524), + [sym_comment] = ACTIONS(76), }, - [1390] = { - [sym__newline] = ACTIONS(2691), - [anon_sym_from] = ACTIONS(2691), - [anon_sym_DOT] = ACTIONS(2691), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_in] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_and] = ACTIONS(2691), - [anon_sym_or] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_PERCENT] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(2691), - [anon_sym_STAR_STAR] = ACTIONS(2691), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2691), - [anon_sym_EQ_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_GT_EQ] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2693), - [anon_sym_LT_GT] = ACTIONS(2691), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2691), + [1477] = { + [sym_argument_list] = STATE(304), + [sym_generator_expression] = STATE(304), + [sym__newline] = ACTIONS(2380), + [anon_sym_DOT] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_SLASH] = ACTIONS(1206), + [anon_sym_PERCENT] = ACTIONS(1216), + [anon_sym_SLASH_SLASH] = ACTIONS(1216), + [anon_sym_STAR_STAR] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1224), + [anon_sym_LT_LT] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(504), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2380), }, - [1391] = { - [sym__newline] = ACTIONS(2741), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(456), - [anon_sym_and] = ACTIONS(458), - [anon_sym_or] = ACTIONS(460), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2741), + [1478] = { + [sym__newline] = ACTIONS(2477), + [anon_sym_from] = ACTIONS(2477), + [anon_sym_DOT] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_GT_GT] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_in] = ACTIONS(2477), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_and] = ACTIONS(2477), + [anon_sym_or] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2479), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_SLASH_SLASH] = ACTIONS(2477), + [anon_sym_STAR_STAR] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_LT_LT] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT_GT] = ACTIONS(2477), + [anon_sym_is] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2477), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2477), }, - [1392] = { + [1479] = { [sym__newline] = ACTIONS(2759), [anon_sym_from] = ACTIONS(2759), [anon_sym_DOT] = ACTIONS(2759), @@ -50004,11 +52306,126 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(76), [sym__semicolon] = ACTIONS(2759), }, - [1393] = { - [sym_list_splat] = STATE(1320), - [sym_dictionary_splat] = STATE(1320), - [sym__expression] = STATE(1321), - [sym__primary_expression] = STATE(221), + [1480] = { + [sym__newline] = ACTIONS(2815), + [anon_sym_from] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2815), + [anon_sym_COMMA] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_GT_GT] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_in] = ACTIONS(2815), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_and] = ACTIONS(2815), + [anon_sym_or] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_SLASH] = ACTIONS(2817), + [anon_sym_PERCENT] = ACTIONS(2815), + [anon_sym_SLASH_SLASH] = ACTIONS(2815), + [anon_sym_STAR_STAR] = ACTIONS(2815), + [anon_sym_PIPE] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym_CARET] = ACTIONS(2815), + [anon_sym_LT_LT] = ACTIONS(2815), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_LT_EQ] = ACTIONS(2815), + [anon_sym_EQ_EQ] = ACTIONS(2815), + [anon_sym_BANG_EQ] = ACTIONS(2815), + [anon_sym_GT_EQ] = ACTIONS(2815), + [anon_sym_GT] = ACTIONS(2817), + [anon_sym_LT_GT] = ACTIONS(2815), + [anon_sym_is] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2815), + }, + [1481] = { + [sym__newline] = ACTIONS(2819), + [anon_sym_from] = ACTIONS(2819), + [anon_sym_DOT] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2819), + [anon_sym_COMMA] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_GT_GT] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_in] = ACTIONS(2819), + [anon_sym_not] = ACTIONS(2819), + [anon_sym_and] = ACTIONS(2819), + [anon_sym_or] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_PERCENT] = ACTIONS(2819), + [anon_sym_SLASH_SLASH] = ACTIONS(2819), + [anon_sym_STAR_STAR] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_CARET] = ACTIONS(2819), + [anon_sym_LT_LT] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_LT_EQ] = ACTIONS(2819), + [anon_sym_EQ_EQ] = ACTIONS(2819), + [anon_sym_BANG_EQ] = ACTIONS(2819), + [anon_sym_GT_EQ] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2821), + [anon_sym_LT_GT] = ACTIONS(2819), + [anon_sym_is] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2819), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2819), + }, + [1482] = { + [sym__newline] = ACTIONS(2869), + [anon_sym_from] = ACTIONS(2869), + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(548), + [anon_sym_and] = ACTIONS(550), + [anon_sym_or] = ACTIONS(552), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2869), + }, + [1483] = { + [sym__newline] = ACTIONS(2887), + [anon_sym_from] = ACTIONS(2887), + [anon_sym_DOT] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_COMMA] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_and] = ACTIONS(2887), + [anon_sym_or] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2889), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(2887), + [anon_sym_STAR_STAR] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2889), + [anon_sym_LT_GT] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2887), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2887), + }, + [1484] = { + [sym_list_splat] = STATE(1399), + [sym_dictionary_splat] = STATE(1399), + [sym__expression] = STATE(1400), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -50018,7 +52435,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_keyword_argument] = STATE(1320), + [sym_keyword_argument] = STATE(1399), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -50032,66 +52449,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_print] = ACTIONS(876), - [anon_sym_exec] = ACTIONS(876), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_RPAREN] = ACTIONS(2959), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(878), + [sym_identifier] = ACTIONS(914), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1394] = { - [sym__newline] = ACTIONS(2772), - [anon_sym_from] = ACTIONS(2772), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2774), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_not] = ACTIONS(2772), - [anon_sym_and] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2774), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_SLASH_SLASH] = ACTIONS(2772), - [anon_sym_STAR_STAR] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2774), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2774), - [anon_sym_LT_GT] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2772), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2772), + [1485] = { + [sym__newline] = ACTIONS(2900), + [anon_sym_from] = ACTIONS(2900), + [anon_sym_DOT] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_GT_GT] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_in] = ACTIONS(2900), + [anon_sym_not] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_SLASH] = ACTIONS(2902), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_SLASH_SLASH] = ACTIONS(2900), + [anon_sym_STAR_STAR] = ACTIONS(2900), + [anon_sym_PIPE] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_CARET] = ACTIONS(2900), + [anon_sym_LT_LT] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2900), + [anon_sym_GT_EQ] = ACTIONS(2900), + [anon_sym_GT] = ACTIONS(2902), + [anon_sym_LT_GT] = ACTIONS(2900), + [anon_sym_is] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(2900), }, - [1395] = { - [sym__expression] = STATE(1330), - [sym__primary_expression] = STATE(538), + [1486] = { + [sym__expression] = STATE(1409), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -50100,7 +52517,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_lambda] = STATE(67), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), - [sym_slice] = STATE(1331), + [sym_slice] = STATE(1410), [sym_call] = STATE(61), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), @@ -50116,236 +52533,138 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(920), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(2829), + [anon_sym_RBRACK] = ACTIONS(2961), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [1396] = { - [sym__newline] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_and] = ACTIONS(1166), - [anon_sym_or] = ACTIONS(1168), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2111), - }, - [1397] = { - [sym__expression] = STATE(1613), - [sym__primary_expression] = STATE(310), - [sym_not_operator] = STATE(40), - [sym_boolean_operator] = STATE(40), - [sym_binary_operator] = STATE(76), - [sym_unary_operator] = STATE(76), - [sym_comparison_operator] = STATE(40), - [sym_lambda] = STATE(40), - [sym_attribute] = STATE(76), - [sym_subscript] = STATE(76), - [sym_call] = STATE(76), - [sym_list] = STATE(76), - [sym_list_comprehension] = STATE(76), - [sym_dictionary] = STATE(76), - [sym_dictionary_comprehension] = STATE(76), - [sym_set] = STATE(76), - [sym_set_comprehension] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_tuple] = STATE(76), - [sym_generator_expression] = STATE(76), - [sym_conditional_expression] = STATE(40), - [sym_concatenated_string] = STATE(76), - [sym_await] = STATE(40), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_print] = ACTIONS(118), - [anon_sym_exec] = ACTIONS(118), - [anon_sym_not] = ACTIONS(502), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_lambda] = ACTIONS(506), - [anon_sym_LBRACK] = ACTIONS(142), - [sym_ellipsis] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(128), - [sym_string] = ACTIONS(508), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(132), - [sym_identifier] = ACTIONS(134), - [sym_true] = ACTIONS(132), - [sym_false] = ACTIONS(132), - [sym_none] = ACTIONS(132), - [anon_sym_await] = ACTIONS(510), - [sym_comment] = ACTIONS(76), - }, - [1398] = { - [sym_argument_list] = STATE(298), - [sym_generator_expression] = STATE(298), - [sym__newline] = ACTIONS(2272), - [anon_sym_DOT] = ACTIONS(462), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_SLASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1180), - [anon_sym_SLASH_SLASH] = ACTIONS(1180), - [anon_sym_STAR_STAR] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1172), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(490), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2272), - }, - [1399] = { - [sym__newline] = ACTIONS(2741), - [anon_sym_from] = ACTIONS(2741), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(520), - [anon_sym_and] = ACTIONS(522), - [anon_sym_or] = ACTIONS(524), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2741), - }, - [1400] = { - [anon_sym_if] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(568), - [anon_sym_or] = ACTIONS(570), + [1487] = { + [anon_sym_if] = ACTIONS(598), + [anon_sym_COLON] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(602), + [anon_sym_or] = ACTIONS(604), [sym_comment] = ACTIONS(76), }, - [1401] = { - [ts_builtin_sym_end] = ACTIONS(2459), - [anon_sym_import] = ACTIONS(2461), - [anon_sym_from] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_print] = ACTIONS(2461), - [anon_sym_assert] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_del] = ACTIONS(2461), - [anon_sym_raise] = ACTIONS(2461), - [sym_pass_statement] = ACTIONS(2461), - [sym_break_statement] = ACTIONS(2461), - [sym_continue_statement] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_elif] = ACTIONS(2461), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_with] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_def] = ACTIONS(2461), - [anon_sym_global] = ACTIONS(2461), - [anon_sym_nonlocal] = ACTIONS(2461), - [anon_sym_exec] = ACTIONS(2461), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_lambda] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [sym_ellipsis] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [sym_string] = ACTIONS(2461), - [sym_integer] = ACTIONS(2461), - [sym_float] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2463), - [sym_true] = ACTIONS(2461), - [sym_false] = ACTIONS(2461), - [sym_none] = ACTIONS(2461), - [anon_sym_await] = ACTIONS(2461), + [1488] = { + [ts_builtin_sym_end] = ACTIONS(2583), + [anon_sym_import] = ACTIONS(2585), + [anon_sym_from] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_print] = ACTIONS(2585), + [anon_sym_assert] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_del] = ACTIONS(2585), + [anon_sym_raise] = ACTIONS(2585), + [sym_pass_statement] = ACTIONS(2585), + [sym_break_statement] = ACTIONS(2585), + [sym_continue_statement] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_elif] = ACTIONS(2585), + [anon_sym_else] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_with] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_def] = ACTIONS(2585), + [anon_sym_global] = ACTIONS(2585), + [anon_sym_nonlocal] = ACTIONS(2585), + [anon_sym_exec] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_lambda] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [sym_ellipsis] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [sym_string] = ACTIONS(2585), + [sym_integer] = ACTIONS(2585), + [sym_float] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2587), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_none] = ACTIONS(2585), + [anon_sym_await] = ACTIONS(2585), [sym_comment] = ACTIONS(76), }, - [1402] = { - [ts_builtin_sym_end] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(1206), - [anon_sym_from] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_print] = ACTIONS(1206), - [anon_sym_assert] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_del] = ACTIONS(1206), - [anon_sym_raise] = ACTIONS(1206), - [sym_pass_statement] = ACTIONS(1206), - [sym_break_statement] = ACTIONS(1206), - [sym_continue_statement] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_elif] = ACTIONS(1206), - [anon_sym_else] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_try] = ACTIONS(1206), - [anon_sym_with] = ACTIONS(1206), - [anon_sym_async] = ACTIONS(1206), - [anon_sym_def] = ACTIONS(1206), - [anon_sym_global] = ACTIONS(1206), - [anon_sym_nonlocal] = ACTIONS(1206), - [anon_sym_exec] = ACTIONS(1206), - [anon_sym_class] = ACTIONS(1206), - [anon_sym_AT] = ACTIONS(1204), - [anon_sym_not] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_lambda] = ACTIONS(1206), - [anon_sym_yield] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1204), - [sym_ellipsis] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1204), - [sym_string] = ACTIONS(1206), - [sym_integer] = ACTIONS(1206), - [sym_float] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [sym_none] = ACTIONS(1206), - [anon_sym_await] = ACTIONS(1206), + [1489] = { + [ts_builtin_sym_end] = ACTIONS(1264), + [anon_sym_import] = ACTIONS(1266), + [anon_sym_from] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_print] = ACTIONS(1266), + [anon_sym_assert] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_del] = ACTIONS(1266), + [anon_sym_raise] = ACTIONS(1266), + [sym_pass_statement] = ACTIONS(1266), + [sym_break_statement] = ACTIONS(1266), + [sym_continue_statement] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_elif] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_with] = ACTIONS(1266), + [anon_sym_async] = ACTIONS(1266), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_global] = ACTIONS(1266), + [anon_sym_nonlocal] = ACTIONS(1266), + [anon_sym_exec] = ACTIONS(1266), + [anon_sym_class] = ACTIONS(1266), + [anon_sym_AT] = ACTIONS(1264), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_lambda] = ACTIONS(1266), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [sym_ellipsis] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [sym_string] = ACTIONS(1266), + [sym_integer] = ACTIONS(1266), + [sym_float] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [sym_none] = ACTIONS(1266), + [anon_sym_await] = ACTIONS(1266), [sym_comment] = ACTIONS(76), }, - [1403] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [1490] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -50373,7 +52692,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(2831), + [sym__newline] = ACTIONS(2963), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -50382,9 +52701,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -50407,15 +52726,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1404] = { - [anon_sym_if] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(2833), - [anon_sym_and] = ACTIONS(568), - [anon_sym_or] = ACTIONS(570), + [1491] = { + [anon_sym_if] = ACTIONS(598), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_and] = ACTIONS(602), + [anon_sym_or] = ACTIONS(604), [sym_comment] = ACTIONS(76), }, - [1405] = { - [sym__simple_statements] = STATE(768), + [1492] = { + [sym__simple_statements] = STATE(822), [sym_import_statement] = STATE(10), [sym_import_from_statement] = STATE(10), [sym_print_statement] = STATE(10), @@ -50427,7 +52746,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_global_statement] = STATE(10), [sym_nonlocal_statement] = STATE(10), [sym_exec_statement] = STATE(10), - [sym__suite] = STATE(1616), + [sym__suite] = STATE(1707), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -50455,7 +52774,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(1273), + [sym__indent] = ACTIONS(1333), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -50489,155 +52808,155 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1406] = { - [ts_builtin_sym_end] = ACTIONS(2835), - [anon_sym_import] = ACTIONS(2837), - [anon_sym_from] = ACTIONS(2837), - [anon_sym_LPAREN] = ACTIONS(2835), - [anon_sym_print] = ACTIONS(2837), - [anon_sym_assert] = ACTIONS(2837), - [anon_sym_return] = ACTIONS(2837), - [anon_sym_del] = ACTIONS(2837), - [anon_sym_raise] = ACTIONS(2837), - [sym_pass_statement] = ACTIONS(2837), - [sym_break_statement] = ACTIONS(2837), - [sym_continue_statement] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2837), - [anon_sym_while] = ACTIONS(2837), - [anon_sym_try] = ACTIONS(2837), - [anon_sym_with] = ACTIONS(2837), - [anon_sym_async] = ACTIONS(2837), - [anon_sym_def] = ACTIONS(2837), - [anon_sym_global] = ACTIONS(2837), - [anon_sym_nonlocal] = ACTIONS(2837), - [anon_sym_exec] = ACTIONS(2837), - [anon_sym_class] = ACTIONS(2837), - [anon_sym_AT] = ACTIONS(2835), - [anon_sym_not] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_lambda] = ACTIONS(2837), - [anon_sym_yield] = ACTIONS(2837), - [anon_sym_LBRACK] = ACTIONS(2835), - [sym_ellipsis] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2835), - [sym_string] = ACTIONS(2837), - [sym_integer] = ACTIONS(2837), - [sym_float] = ACTIONS(2837), - [sym_identifier] = ACTIONS(2839), - [sym_true] = ACTIONS(2837), - [sym_false] = ACTIONS(2837), - [sym_none] = ACTIONS(2837), - [anon_sym_await] = ACTIONS(2837), + [1493] = { + [ts_builtin_sym_end] = ACTIONS(2967), + [anon_sym_import] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym_print] = ACTIONS(2969), + [anon_sym_assert] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_del] = ACTIONS(2969), + [anon_sym_raise] = ACTIONS(2969), + [sym_pass_statement] = ACTIONS(2969), + [sym_break_statement] = ACTIONS(2969), + [sym_continue_statement] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_try] = ACTIONS(2969), + [anon_sym_with] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(2969), + [anon_sym_def] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_nonlocal] = ACTIONS(2969), + [anon_sym_exec] = ACTIONS(2969), + [anon_sym_class] = ACTIONS(2969), + [anon_sym_AT] = ACTIONS(2967), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_lambda] = ACTIONS(2969), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2967), + [sym_ellipsis] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2967), + [sym_string] = ACTIONS(2969), + [sym_integer] = ACTIONS(2969), + [sym_float] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2971), + [sym_true] = ACTIONS(2969), + [sym_false] = ACTIONS(2969), + [sym_none] = ACTIONS(2969), + [anon_sym_await] = ACTIONS(2969), [sym_comment] = ACTIONS(76), }, - [1407] = { - [sym_elif_clause] = STATE(1104), - [aux_sym_if_statement_repeat1] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(2841), - [anon_sym_import] = ACTIONS(2843), - [anon_sym_from] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_print] = ACTIONS(2843), - [anon_sym_assert] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_del] = ACTIONS(2843), - [anon_sym_raise] = ACTIONS(2843), - [sym_pass_statement] = ACTIONS(2843), - [sym_break_statement] = ACTIONS(2843), - [sym_continue_statement] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_elif] = ACTIONS(2845), - [anon_sym_else] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_with] = ACTIONS(2843), - [anon_sym_async] = ACTIONS(2843), - [anon_sym_def] = ACTIONS(2843), - [anon_sym_global] = ACTIONS(2843), - [anon_sym_nonlocal] = ACTIONS(2843), - [anon_sym_exec] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2843), - [anon_sym_AT] = ACTIONS(2841), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_TILDE] = ACTIONS(2841), - [anon_sym_lambda] = ACTIONS(2843), - [anon_sym_yield] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2841), - [sym_ellipsis] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2841), - [sym_string] = ACTIONS(2843), - [sym_integer] = ACTIONS(2843), - [sym_float] = ACTIONS(2843), - [sym_identifier] = ACTIONS(2848), - [sym_true] = ACTIONS(2843), - [sym_false] = ACTIONS(2843), - [sym_none] = ACTIONS(2843), - [anon_sym_await] = ACTIONS(2843), + [1494] = { + [sym_elif_clause] = STATE(1180), + [aux_sym_if_statement_repeat1] = STATE(1494), + [ts_builtin_sym_end] = ACTIONS(2973), + [anon_sym_import] = ACTIONS(2975), + [anon_sym_from] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_print] = ACTIONS(2975), + [anon_sym_assert] = ACTIONS(2975), + [anon_sym_return] = ACTIONS(2975), + [anon_sym_del] = ACTIONS(2975), + [anon_sym_raise] = ACTIONS(2975), + [sym_pass_statement] = ACTIONS(2975), + [sym_break_statement] = ACTIONS(2975), + [sym_continue_statement] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_elif] = ACTIONS(2977), + [anon_sym_else] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2975), + [anon_sym_while] = ACTIONS(2975), + [anon_sym_try] = ACTIONS(2975), + [anon_sym_with] = ACTIONS(2975), + [anon_sym_async] = ACTIONS(2975), + [anon_sym_def] = ACTIONS(2975), + [anon_sym_global] = ACTIONS(2975), + [anon_sym_nonlocal] = ACTIONS(2975), + [anon_sym_exec] = ACTIONS(2975), + [anon_sym_class] = ACTIONS(2975), + [anon_sym_AT] = ACTIONS(2973), + [anon_sym_not] = ACTIONS(2975), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_lambda] = ACTIONS(2975), + [anon_sym_yield] = ACTIONS(2975), + [anon_sym_LBRACK] = ACTIONS(2973), + [sym_ellipsis] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2973), + [sym_string] = ACTIONS(2975), + [sym_integer] = ACTIONS(2975), + [sym_float] = ACTIONS(2975), + [sym_identifier] = ACTIONS(2980), + [sym_true] = ACTIONS(2975), + [sym_false] = ACTIONS(2975), + [sym_none] = ACTIONS(2975), + [anon_sym_await] = ACTIONS(2975), [sym_comment] = ACTIONS(76), }, - [1408] = { - [sym_else_clause] = STATE(1617), - [ts_builtin_sym_end] = ACTIONS(2850), - [anon_sym_import] = ACTIONS(2852), - [anon_sym_from] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_print] = ACTIONS(2852), - [anon_sym_assert] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2852), - [anon_sym_del] = ACTIONS(2852), - [anon_sym_raise] = ACTIONS(2852), - [sym_pass_statement] = ACTIONS(2852), - [sym_break_statement] = ACTIONS(2852), - [sym_continue_statement] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_while] = ACTIONS(2852), - [anon_sym_try] = ACTIONS(2852), - [anon_sym_with] = ACTIONS(2852), - [anon_sym_async] = ACTIONS(2852), - [anon_sym_def] = ACTIONS(2852), - [anon_sym_global] = ACTIONS(2852), - [anon_sym_nonlocal] = ACTIONS(2852), - [anon_sym_exec] = ACTIONS(2852), - [anon_sym_class] = ACTIONS(2852), - [anon_sym_AT] = ACTIONS(2850), - [anon_sym_not] = ACTIONS(2852), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_lambda] = ACTIONS(2852), - [anon_sym_yield] = ACTIONS(2852), - [anon_sym_LBRACK] = ACTIONS(2850), - [sym_ellipsis] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2850), - [sym_string] = ACTIONS(2852), - [sym_integer] = ACTIONS(2852), - [sym_float] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2854), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_none] = ACTIONS(2852), - [anon_sym_await] = ACTIONS(2852), + [1495] = { + [sym_else_clause] = STATE(1708), + [ts_builtin_sym_end] = ACTIONS(2982), + [anon_sym_import] = ACTIONS(2984), + [anon_sym_from] = ACTIONS(2984), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_print] = ACTIONS(2984), + [anon_sym_assert] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_del] = ACTIONS(2984), + [anon_sym_raise] = ACTIONS(2984), + [sym_pass_statement] = ACTIONS(2984), + [sym_break_statement] = ACTIONS(2984), + [sym_continue_statement] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(1954), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_with] = ACTIONS(2984), + [anon_sym_async] = ACTIONS(2984), + [anon_sym_def] = ACTIONS(2984), + [anon_sym_global] = ACTIONS(2984), + [anon_sym_nonlocal] = ACTIONS(2984), + [anon_sym_exec] = ACTIONS(2984), + [anon_sym_class] = ACTIONS(2984), + [anon_sym_AT] = ACTIONS(2982), + [anon_sym_not] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2982), + [anon_sym_lambda] = ACTIONS(2984), + [anon_sym_yield] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2982), + [sym_ellipsis] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2982), + [sym_string] = ACTIONS(2984), + [sym_integer] = ACTIONS(2984), + [sym_float] = ACTIONS(2984), + [sym_identifier] = ACTIONS(2986), + [sym_true] = ACTIONS(2984), + [sym_false] = ACTIONS(2984), + [sym_none] = ACTIONS(2984), + [anon_sym_await] = ACTIONS(2984), [sym_comment] = ACTIONS(76), }, - [1409] = { - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_COLON] = ACTIONS(1514), - [anon_sym_and] = ACTIONS(1311), - [anon_sym_or] = ACTIONS(1313), + [1496] = { + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(1580), + [anon_sym_and] = ACTIONS(1377), + [anon_sym_or] = ACTIONS(1379), [sym_comment] = ACTIONS(76), }, - [1410] = { - [sym__expression] = STATE(1409), - [sym__primary_expression] = STATE(415), + [1497] = { + [sym__expression] = STATE(1496), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -50661,134 +52980,134 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(1554), + [anon_sym_COLON] = ACTIONS(1620), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [1411] = { - [aux_sym_print_statement_repeat1] = STATE(1411), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_COLON] = ACTIONS(1514), + [1498] = { + [aux_sym_print_statement_repeat1] = STATE(1498), + [anon_sym_COMMA] = ACTIONS(2988), + [anon_sym_COLON] = ACTIONS(1580), [sym_comment] = ACTIONS(76), }, - [1412] = { - [ts_builtin_sym_end] = ACTIONS(2459), - [anon_sym_import] = ACTIONS(2461), - [anon_sym_from] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_print] = ACTIONS(2461), - [anon_sym_assert] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_del] = ACTIONS(2461), - [anon_sym_raise] = ACTIONS(2461), - [sym_pass_statement] = ACTIONS(2461), - [sym_break_statement] = ACTIONS(2461), - [sym_continue_statement] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_with] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_def] = ACTIONS(2461), - [anon_sym_global] = ACTIONS(2461), - [anon_sym_nonlocal] = ACTIONS(2461), - [anon_sym_exec] = ACTIONS(2461), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_lambda] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [sym_ellipsis] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [sym_string] = ACTIONS(2461), - [sym_integer] = ACTIONS(2461), - [sym_float] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2463), - [sym_true] = ACTIONS(2461), - [sym_false] = ACTIONS(2461), - [sym_none] = ACTIONS(2461), - [anon_sym_await] = ACTIONS(2461), + [1499] = { + [ts_builtin_sym_end] = ACTIONS(2583), + [anon_sym_import] = ACTIONS(2585), + [anon_sym_from] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_print] = ACTIONS(2585), + [anon_sym_assert] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_del] = ACTIONS(2585), + [anon_sym_raise] = ACTIONS(2585), + [sym_pass_statement] = ACTIONS(2585), + [sym_break_statement] = ACTIONS(2585), + [sym_continue_statement] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_else] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_with] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_def] = ACTIONS(2585), + [anon_sym_global] = ACTIONS(2585), + [anon_sym_nonlocal] = ACTIONS(2585), + [anon_sym_exec] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_lambda] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [sym_ellipsis] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [sym_string] = ACTIONS(2585), + [sym_integer] = ACTIONS(2585), + [sym_float] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2587), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_none] = ACTIONS(2585), + [anon_sym_await] = ACTIONS(2585), [sym_comment] = ACTIONS(76), }, - [1413] = { - [ts_builtin_sym_end] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(1206), - [anon_sym_from] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_print] = ACTIONS(1206), - [anon_sym_assert] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_del] = ACTIONS(1206), - [anon_sym_raise] = ACTIONS(1206), - [sym_pass_statement] = ACTIONS(1206), - [sym_break_statement] = ACTIONS(1206), - [sym_continue_statement] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_else] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_try] = ACTIONS(1206), - [anon_sym_with] = ACTIONS(1206), - [anon_sym_async] = ACTIONS(1206), - [anon_sym_def] = ACTIONS(1206), - [anon_sym_global] = ACTIONS(1206), - [anon_sym_nonlocal] = ACTIONS(1206), - [anon_sym_exec] = ACTIONS(1206), - [anon_sym_class] = ACTIONS(1206), - [anon_sym_AT] = ACTIONS(1204), - [anon_sym_not] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_lambda] = ACTIONS(1206), - [anon_sym_yield] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1204), - [sym_ellipsis] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1204), - [sym_string] = ACTIONS(1206), - [sym_integer] = ACTIONS(1206), - [sym_float] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [sym_none] = ACTIONS(1206), - [anon_sym_await] = ACTIONS(1206), + [1500] = { + [ts_builtin_sym_end] = ACTIONS(1264), + [anon_sym_import] = ACTIONS(1266), + [anon_sym_from] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_print] = ACTIONS(1266), + [anon_sym_assert] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_del] = ACTIONS(1266), + [anon_sym_raise] = ACTIONS(1266), + [sym_pass_statement] = ACTIONS(1266), + [sym_break_statement] = ACTIONS(1266), + [sym_continue_statement] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_with] = ACTIONS(1266), + [anon_sym_async] = ACTIONS(1266), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_global] = ACTIONS(1266), + [anon_sym_nonlocal] = ACTIONS(1266), + [anon_sym_exec] = ACTIONS(1266), + [anon_sym_class] = ACTIONS(1266), + [anon_sym_AT] = ACTIONS(1264), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_lambda] = ACTIONS(1266), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [sym_ellipsis] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [sym_string] = ACTIONS(1266), + [sym_integer] = ACTIONS(1266), + [sym_float] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [sym_none] = ACTIONS(1266), + [anon_sym_await] = ACTIONS(1266), [sym_comment] = ACTIONS(76), }, - [1414] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [1501] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -50816,7 +53135,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(2859), + [sym__newline] = ACTIONS(2991), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -50825,9 +53144,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -50850,62 +53169,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1415] = { - [sym__dedent] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(1206), - [anon_sym_from] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_print] = ACTIONS(1206), - [anon_sym_assert] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_del] = ACTIONS(1206), - [anon_sym_raise] = ACTIONS(1206), - [sym_pass_statement] = ACTIONS(1206), - [sym_break_statement] = ACTIONS(1206), - [sym_continue_statement] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_try] = ACTIONS(1206), - [anon_sym_with] = ACTIONS(1206), - [anon_sym_async] = ACTIONS(1206), - [anon_sym_def] = ACTIONS(1206), - [anon_sym_global] = ACTIONS(1206), - [anon_sym_nonlocal] = ACTIONS(1206), - [anon_sym_exec] = ACTIONS(1206), - [anon_sym_class] = ACTIONS(1206), - [anon_sym_AT] = ACTIONS(1204), - [anon_sym_not] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_lambda] = ACTIONS(1206), - [anon_sym_yield] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1204), - [sym_ellipsis] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1204), - [sym_string] = ACTIONS(1206), - [sym_integer] = ACTIONS(1206), - [sym_float] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [sym_none] = ACTIONS(1206), - [anon_sym_await] = ACTIONS(1206), + [1502] = { + [sym__dedent] = ACTIONS(1264), + [anon_sym_import] = ACTIONS(1266), + [anon_sym_from] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_print] = ACTIONS(1266), + [anon_sym_assert] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_del] = ACTIONS(1266), + [anon_sym_raise] = ACTIONS(1266), + [sym_pass_statement] = ACTIONS(1266), + [sym_break_statement] = ACTIONS(1266), + [sym_continue_statement] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_with] = ACTIONS(1266), + [anon_sym_async] = ACTIONS(1266), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_global] = ACTIONS(1266), + [anon_sym_nonlocal] = ACTIONS(1266), + [anon_sym_exec] = ACTIONS(1266), + [anon_sym_class] = ACTIONS(1266), + [anon_sym_AT] = ACTIONS(1264), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_lambda] = ACTIONS(1266), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [sym_ellipsis] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [sym_string] = ACTIONS(1266), + [sym_integer] = ACTIONS(1266), + [sym_float] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [sym_none] = ACTIONS(1266), + [anon_sym_await] = ACTIONS(1266), [sym_comment] = ACTIONS(76), }, - [1416] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [1503] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -50933,7 +53252,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(2861), + [sym__newline] = ACTIONS(2993), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -50942,9 +53261,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -50967,20 +53286,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1417] = { - [sym__simple_statements] = STATE(1623), - [sym_import_statement] = STATE(1622), - [sym_import_from_statement] = STATE(1622), - [sym_print_statement] = STATE(1622), - [sym_assert_statement] = STATE(1622), - [sym_expression_statement] = STATE(1622), - [sym_return_statement] = STATE(1622), - [sym_delete_statement] = STATE(1622), - [sym_raise_statement] = STATE(1622), - [sym_global_statement] = STATE(1622), - [sym_nonlocal_statement] = STATE(1622), - [sym_exec_statement] = STATE(1622), - [sym__suite] = STATE(1624), + [1504] = { + [sym__simple_statements] = STATE(1714), + [sym_import_statement] = STATE(1713), + [sym_import_from_statement] = STATE(1713), + [sym_print_statement] = STATE(1713), + [sym_assert_statement] = STATE(1713), + [sym_expression_statement] = STATE(1713), + [sym_return_statement] = STATE(1713), + [sym_delete_statement] = STATE(1713), + [sym_raise_statement] = STATE(1713), + [sym_global_statement] = STATE(1713), + [sym_nonlocal_statement] = STATE(1713), + [sym_exec_statement] = STATE(1713), + [sym__suite] = STATE(1715), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -51008,7 +53327,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(2863), + [sym__indent] = ACTIONS(2995), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -51017,9 +53336,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(2865), - [sym_break_statement] = ACTIONS(2865), - [sym_continue_statement] = ACTIONS(2865), + [sym_pass_statement] = ACTIONS(2997), + [sym_break_statement] = ACTIONS(2997), + [sym_continue_statement] = ACTIONS(2997), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -51042,10 +53361,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1418] = { - [sym_expression_list] = STATE(1625), - [sym__expression] = STATE(726), - [sym__primary_expression] = STATE(415), + [1505] = { + [sym_expression_list] = STATE(1716), + [sym__expression] = STATE(780), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -51070,38 +53389,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [1419] = { - [sym__simple_statements] = STATE(1628), - [sym_import_statement] = STATE(1627), - [sym_import_from_statement] = STATE(1627), - [sym_print_statement] = STATE(1627), - [sym_assert_statement] = STATE(1627), - [sym_expression_statement] = STATE(1627), - [sym_return_statement] = STATE(1627), - [sym_delete_statement] = STATE(1627), - [sym_raise_statement] = STATE(1627), - [sym_global_statement] = STATE(1627), - [sym_nonlocal_statement] = STATE(1627), - [sym_exec_statement] = STATE(1627), - [sym__suite] = STATE(1629), + [1506] = { + [sym__simple_statements] = STATE(1719), + [sym_import_statement] = STATE(1718), + [sym_import_from_statement] = STATE(1718), + [sym_print_statement] = STATE(1718), + [sym_assert_statement] = STATE(1718), + [sym_expression_statement] = STATE(1718), + [sym_return_statement] = STATE(1718), + [sym_delete_statement] = STATE(1718), + [sym_raise_statement] = STATE(1718), + [sym_global_statement] = STATE(1718), + [sym_nonlocal_statement] = STATE(1718), + [sym_exec_statement] = STATE(1718), + [sym__suite] = STATE(1720), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -51129,7 +53448,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(2867), + [sym__indent] = ACTIONS(2999), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -51138,9 +53457,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(2869), - [sym_break_statement] = ACTIONS(2869), - [sym_continue_statement] = ACTIONS(2869), + [sym_pass_statement] = ACTIONS(3001), + [sym_break_statement] = ACTIONS(3001), + [sym_continue_statement] = ACTIONS(3001), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -51163,28 +53482,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1420] = { - [sym_except_clause] = STATE(1632), - [sym_finally_clause] = STATE(1633), - [aux_sym_try_statement_repeat1] = STATE(1634), - [anon_sym_except] = ACTIONS(2871), - [anon_sym_finally] = ACTIONS(2873), + [1507] = { + [sym_except_clause] = STATE(1723), + [sym_finally_clause] = STATE(1724), + [aux_sym_try_statement_repeat1] = STATE(1725), + [anon_sym_except] = ACTIONS(3003), + [anon_sym_finally] = ACTIONS(3005), [sym_comment] = ACTIONS(76), }, - [1421] = { - [sym__simple_statements] = STATE(1636), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym__suite] = STATE(1637), + [1508] = { + [sym__simple_statements] = STATE(1727), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym__suite] = STATE(1728), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -51212,7 +53531,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(2875), + [sym__indent] = ACTIONS(3007), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -51221,9 +53540,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -51246,31 +53565,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1422] = { - [aux_sym_with_statement_repeat1] = STATE(771), - [anon_sym_COMMA] = ACTIONS(626), - [anon_sym_COLON] = ACTIONS(2877), + [1509] = { + [aux_sym_with_statement_repeat1] = STATE(825), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_COLON] = ACTIONS(3009), [sym_comment] = ACTIONS(76), }, - [1423] = { - [anon_sym_COLON] = ACTIONS(2879), - [anon_sym_DASH_GT] = ACTIONS(2881), + [1510] = { + [anon_sym_COLON] = ACTIONS(3011), + [anon_sym_DASH_GT] = ACTIONS(3013), [sym_comment] = ACTIONS(76), }, - [1424] = { - [sym__simple_statements] = STATE(1636), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym__suite] = STATE(1641), + [1511] = { + [sym__simple_statements] = STATE(1727), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym__suite] = STATE(1732), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -51298,7 +53617,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(2875), + [sym__indent] = ACTIONS(3007), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -51307,9 +53626,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -51332,107 +53651,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1425] = { - [anon_sym_COLON] = ACTIONS(2883), + [1512] = { + [anon_sym_COLON] = ACTIONS(3015), [sym_comment] = ACTIONS(76), }, - [1426] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_from] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_print] = ACTIONS(1835), - [anon_sym_assert] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_del] = ACTIONS(1835), - [anon_sym_raise] = ACTIONS(1835), - [sym_pass_statement] = ACTIONS(1835), - [sym_break_statement] = ACTIONS(1835), - [sym_continue_statement] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_except] = ACTIONS(1835), - [anon_sym_finally] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_global] = ACTIONS(1835), - [anon_sym_nonlocal] = ACTIONS(1835), - [anon_sym_exec] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_lambda] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), - [sym_ellipsis] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1833), - [sym_string] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_none] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1835), + [1513] = { + [ts_builtin_sym_end] = ACTIONS(1934), + [anon_sym_import] = ACTIONS(1936), + [anon_sym_from] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_print] = ACTIONS(1936), + [anon_sym_assert] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_del] = ACTIONS(1936), + [anon_sym_raise] = ACTIONS(1936), + [sym_pass_statement] = ACTIONS(1936), + [sym_break_statement] = ACTIONS(1936), + [sym_continue_statement] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_else] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_try] = ACTIONS(1936), + [anon_sym_except] = ACTIONS(1936), + [anon_sym_finally] = ACTIONS(1936), + [anon_sym_with] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_def] = ACTIONS(1936), + [anon_sym_global] = ACTIONS(1936), + [anon_sym_nonlocal] = ACTIONS(1936), + [anon_sym_exec] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_lambda] = ACTIONS(1936), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1934), + [sym_ellipsis] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_string] = ACTIONS(1936), + [sym_integer] = ACTIONS(1936), + [sym_float] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_none] = ACTIONS(1936), + [anon_sym_await] = ACTIONS(1936), [sym_comment] = ACTIONS(76), }, - [1427] = { - [ts_builtin_sym_end] = ACTIONS(2885), - [anon_sym_import] = ACTIONS(2887), - [anon_sym_from] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_print] = ACTIONS(2887), - [anon_sym_assert] = ACTIONS(2887), - [anon_sym_return] = ACTIONS(2887), - [anon_sym_del] = ACTIONS(2887), - [anon_sym_raise] = ACTIONS(2887), - [sym_pass_statement] = ACTIONS(2887), - [sym_break_statement] = ACTIONS(2887), - [sym_continue_statement] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_else] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2887), - [anon_sym_while] = ACTIONS(2887), - [anon_sym_try] = ACTIONS(2887), - [anon_sym_except] = ACTIONS(2887), - [anon_sym_finally] = ACTIONS(2887), - [anon_sym_with] = ACTIONS(2887), - [anon_sym_async] = ACTIONS(2887), - [anon_sym_def] = ACTIONS(2887), - [anon_sym_global] = ACTIONS(2887), - [anon_sym_nonlocal] = ACTIONS(2887), - [anon_sym_exec] = ACTIONS(2887), - [anon_sym_class] = ACTIONS(2887), - [anon_sym_AT] = ACTIONS(2885), - [anon_sym_not] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_lambda] = ACTIONS(2887), - [anon_sym_yield] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2885), - [sym_ellipsis] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2885), - [sym_string] = ACTIONS(2887), - [sym_integer] = ACTIONS(2887), - [sym_float] = ACTIONS(2887), - [sym_identifier] = ACTIONS(2889), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [anon_sym_await] = ACTIONS(2887), + [1514] = { + [ts_builtin_sym_end] = ACTIONS(3017), + [anon_sym_import] = ACTIONS(3019), + [anon_sym_from] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_print] = ACTIONS(3019), + [anon_sym_assert] = ACTIONS(3019), + [anon_sym_return] = ACTIONS(3019), + [anon_sym_del] = ACTIONS(3019), + [anon_sym_raise] = ACTIONS(3019), + [sym_pass_statement] = ACTIONS(3019), + [sym_break_statement] = ACTIONS(3019), + [sym_continue_statement] = ACTIONS(3019), + [anon_sym_if] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3019), + [anon_sym_for] = ACTIONS(3019), + [anon_sym_while] = ACTIONS(3019), + [anon_sym_try] = ACTIONS(3019), + [anon_sym_except] = ACTIONS(3019), + [anon_sym_finally] = ACTIONS(3019), + [anon_sym_with] = ACTIONS(3019), + [anon_sym_async] = ACTIONS(3019), + [anon_sym_def] = ACTIONS(3019), + [anon_sym_global] = ACTIONS(3019), + [anon_sym_nonlocal] = ACTIONS(3019), + [anon_sym_exec] = ACTIONS(3019), + [anon_sym_class] = ACTIONS(3019), + [anon_sym_AT] = ACTIONS(3017), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_lambda] = ACTIONS(3019), + [anon_sym_yield] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3017), + [sym_ellipsis] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [sym_string] = ACTIONS(3019), + [sym_integer] = ACTIONS(3019), + [sym_float] = ACTIONS(3019), + [sym_identifier] = ACTIONS(3021), + [sym_true] = ACTIONS(3019), + [sym_false] = ACTIONS(3019), + [sym_none] = ACTIONS(3019), + [anon_sym_await] = ACTIONS(3019), [sym_comment] = ACTIONS(76), }, - [1428] = { - [sym__expression] = STATE(1643), - [sym__primary_expression] = STATE(105), + [1515] = { + [sym__expression] = STATE(1734), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -51457,38 +53776,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [1429] = { - [sym__simple_statements] = STATE(369), - [sym_import_statement] = STATE(368), - [sym_import_from_statement] = STATE(368), - [sym_print_statement] = STATE(368), - [sym_assert_statement] = STATE(368), - [sym_expression_statement] = STATE(368), - [sym_return_statement] = STATE(368), - [sym_delete_statement] = STATE(368), - [sym_raise_statement] = STATE(368), - [sym_global_statement] = STATE(368), - [sym_nonlocal_statement] = STATE(368), - [sym_exec_statement] = STATE(368), - [sym__suite] = STATE(1644), + [1516] = { + [sym__simple_statements] = STATE(396), + [sym_import_statement] = STATE(395), + [sym_import_from_statement] = STATE(395), + [sym_print_statement] = STATE(395), + [sym_assert_statement] = STATE(395), + [sym_expression_statement] = STATE(395), + [sym_return_statement] = STATE(395), + [sym_delete_statement] = STATE(395), + [sym_raise_statement] = STATE(395), + [sym_global_statement] = STATE(395), + [sym_nonlocal_statement] = STATE(395), + [sym_exec_statement] = STATE(395), + [sym__suite] = STATE(1735), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -51516,7 +53835,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(620), + [sym__indent] = ACTIONS(654), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -51525,9 +53844,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(622), - [sym_break_statement] = ACTIONS(622), - [sym_continue_statement] = ACTIONS(622), + [sym_pass_statement] = ACTIONS(656), + [sym_break_statement] = ACTIONS(656), + [sym_continue_statement] = ACTIONS(656), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -51550,64 +53869,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1430] = { - [ts_builtin_sym_end] = ACTIONS(2891), - [anon_sym_import] = ACTIONS(2893), - [anon_sym_from] = ACTIONS(2893), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_print] = ACTIONS(2893), - [anon_sym_assert] = ACTIONS(2893), - [anon_sym_return] = ACTIONS(2893), - [anon_sym_del] = ACTIONS(2893), - [anon_sym_raise] = ACTIONS(2893), - [sym_pass_statement] = ACTIONS(2893), - [sym_break_statement] = ACTIONS(2893), - [sym_continue_statement] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2893), - [anon_sym_for] = ACTIONS(2893), - [anon_sym_while] = ACTIONS(2893), - [anon_sym_try] = ACTIONS(2893), - [anon_sym_with] = ACTIONS(2893), - [anon_sym_async] = ACTIONS(2893), - [anon_sym_def] = ACTIONS(2893), - [anon_sym_global] = ACTIONS(2893), - [anon_sym_nonlocal] = ACTIONS(2893), - [anon_sym_exec] = ACTIONS(2893), - [anon_sym_class] = ACTIONS(2893), - [anon_sym_AT] = ACTIONS(2891), - [anon_sym_not] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_lambda] = ACTIONS(2893), - [anon_sym_yield] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2891), - [sym_ellipsis] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [sym_string] = ACTIONS(2893), - [sym_integer] = ACTIONS(2893), - [sym_float] = ACTIONS(2893), - [sym_identifier] = ACTIONS(2895), - [sym_true] = ACTIONS(2893), - [sym_false] = ACTIONS(2893), - [sym_none] = ACTIONS(2893), - [anon_sym_await] = ACTIONS(2893), + [1517] = { + [ts_builtin_sym_end] = ACTIONS(3023), + [anon_sym_import] = ACTIONS(3025), + [anon_sym_from] = ACTIONS(3025), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_print] = ACTIONS(3025), + [anon_sym_assert] = ACTIONS(3025), + [anon_sym_return] = ACTIONS(3025), + [anon_sym_del] = ACTIONS(3025), + [anon_sym_raise] = ACTIONS(3025), + [sym_pass_statement] = ACTIONS(3025), + [sym_break_statement] = ACTIONS(3025), + [sym_continue_statement] = ACTIONS(3025), + [anon_sym_if] = ACTIONS(3025), + [anon_sym_for] = ACTIONS(3025), + [anon_sym_while] = ACTIONS(3025), + [anon_sym_try] = ACTIONS(3025), + [anon_sym_with] = ACTIONS(3025), + [anon_sym_async] = ACTIONS(3025), + [anon_sym_def] = ACTIONS(3025), + [anon_sym_global] = ACTIONS(3025), + [anon_sym_nonlocal] = ACTIONS(3025), + [anon_sym_exec] = ACTIONS(3025), + [anon_sym_class] = ACTIONS(3025), + [anon_sym_AT] = ACTIONS(3023), + [anon_sym_not] = ACTIONS(3025), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(3023), + [sym_ellipsis] = ACTIONS(3023), + [anon_sym_LBRACE] = ACTIONS(3023), + [sym_string] = ACTIONS(3025), + [sym_integer] = ACTIONS(3025), + [sym_float] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3027), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [sym_none] = ACTIONS(3025), + [anon_sym_await] = ACTIONS(3025), [sym_comment] = ACTIONS(76), }, - [1431] = { - [sym__simple_statements] = STATE(1647), - [sym_import_statement] = STATE(1646), - [sym_import_from_statement] = STATE(1646), - [sym_print_statement] = STATE(1646), - [sym_assert_statement] = STATE(1646), - [sym_expression_statement] = STATE(1646), - [sym_return_statement] = STATE(1646), - [sym_delete_statement] = STATE(1646), - [sym_raise_statement] = STATE(1646), - [sym_global_statement] = STATE(1646), - [sym_nonlocal_statement] = STATE(1646), - [sym_exec_statement] = STATE(1646), - [sym__suite] = STATE(1648), + [1518] = { + [sym__simple_statements] = STATE(1738), + [sym_import_statement] = STATE(1737), + [sym_import_from_statement] = STATE(1737), + [sym_print_statement] = STATE(1737), + [sym_assert_statement] = STATE(1737), + [sym_expression_statement] = STATE(1737), + [sym_return_statement] = STATE(1737), + [sym_delete_statement] = STATE(1737), + [sym_raise_statement] = STATE(1737), + [sym_global_statement] = STATE(1737), + [sym_nonlocal_statement] = STATE(1737), + [sym_exec_statement] = STATE(1737), + [sym__suite] = STATE(1739), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -51635,7 +53954,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(2897), + [sym__indent] = ACTIONS(3029), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -51644,9 +53963,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(2899), - [sym_break_statement] = ACTIONS(2899), - [sym_continue_statement] = ACTIONS(2899), + [sym_pass_statement] = ACTIONS(3031), + [sym_break_statement] = ACTIONS(3031), + [sym_continue_statement] = ACTIONS(3031), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -51669,124 +53988,124 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1432] = { - [ts_builtin_sym_end] = ACTIONS(2901), - [anon_sym_import] = ACTIONS(2903), - [anon_sym_from] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_print] = ACTIONS(2903), - [anon_sym_assert] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2903), - [anon_sym_del] = ACTIONS(2903), - [anon_sym_raise] = ACTIONS(2903), - [sym_pass_statement] = ACTIONS(2903), - [sym_break_statement] = ACTIONS(2903), - [sym_continue_statement] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_for] = ACTIONS(2903), - [anon_sym_while] = ACTIONS(2903), - [anon_sym_try] = ACTIONS(2903), - [anon_sym_with] = ACTIONS(2903), - [anon_sym_async] = ACTIONS(2903), - [anon_sym_def] = ACTIONS(2903), - [anon_sym_global] = ACTIONS(2903), - [anon_sym_nonlocal] = ACTIONS(2903), - [anon_sym_exec] = ACTIONS(2903), - [anon_sym_class] = ACTIONS(2903), - [anon_sym_AT] = ACTIONS(2901), - [anon_sym_not] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_TILDE] = ACTIONS(2901), - [anon_sym_lambda] = ACTIONS(2903), - [anon_sym_yield] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2901), - [sym_ellipsis] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2901), - [sym_string] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2903), - [sym_identifier] = ACTIONS(2905), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_none] = ACTIONS(2903), - [anon_sym_await] = ACTIONS(2903), + [1519] = { + [ts_builtin_sym_end] = ACTIONS(3033), + [anon_sym_import] = ACTIONS(3035), + [anon_sym_from] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3033), + [anon_sym_print] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_del] = ACTIONS(3035), + [anon_sym_raise] = ACTIONS(3035), + [sym_pass_statement] = ACTIONS(3035), + [sym_break_statement] = ACTIONS(3035), + [sym_continue_statement] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_with] = ACTIONS(3035), + [anon_sym_async] = ACTIONS(3035), + [anon_sym_def] = ACTIONS(3035), + [anon_sym_global] = ACTIONS(3035), + [anon_sym_nonlocal] = ACTIONS(3035), + [anon_sym_exec] = ACTIONS(3035), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_AT] = ACTIONS(3033), + [anon_sym_not] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_TILDE] = ACTIONS(3033), + [anon_sym_lambda] = ACTIONS(3035), + [anon_sym_yield] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3033), + [sym_ellipsis] = ACTIONS(3033), + [anon_sym_LBRACE] = ACTIONS(3033), + [sym_string] = ACTIONS(3035), + [sym_integer] = ACTIONS(3035), + [sym_float] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3037), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [sym_none] = ACTIONS(3035), + [anon_sym_await] = ACTIONS(3035), [sym_comment] = ACTIONS(76), }, - [1433] = { - [ts_builtin_sym_end] = ACTIONS(2459), - [anon_sym_import] = ACTIONS(2461), - [anon_sym_from] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_print] = ACTIONS(2461), - [anon_sym_assert] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_del] = ACTIONS(2461), - [anon_sym_raise] = ACTIONS(2461), - [sym_pass_statement] = ACTIONS(2461), - [sym_break_statement] = ACTIONS(2461), - [sym_continue_statement] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_with] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_def] = ACTIONS(2461), - [anon_sym_global] = ACTIONS(2461), - [anon_sym_nonlocal] = ACTIONS(2461), - [anon_sym_exec] = ACTIONS(2461), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_lambda] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [sym_ellipsis] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [sym_string] = ACTIONS(2461), - [sym_integer] = ACTIONS(2461), - [sym_float] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2463), - [sym_true] = ACTIONS(2461), - [sym_false] = ACTIONS(2461), - [sym_none] = ACTIONS(2461), - [anon_sym_await] = ACTIONS(2461), + [1520] = { + [ts_builtin_sym_end] = ACTIONS(2583), + [anon_sym_import] = ACTIONS(2585), + [anon_sym_from] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_print] = ACTIONS(2585), + [anon_sym_assert] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_del] = ACTIONS(2585), + [anon_sym_raise] = ACTIONS(2585), + [sym_pass_statement] = ACTIONS(2585), + [sym_break_statement] = ACTIONS(2585), + [sym_continue_statement] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_with] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_def] = ACTIONS(2585), + [anon_sym_global] = ACTIONS(2585), + [anon_sym_nonlocal] = ACTIONS(2585), + [anon_sym_exec] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_lambda] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [sym_ellipsis] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [sym_string] = ACTIONS(2585), + [sym_integer] = ACTIONS(2585), + [sym_float] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2587), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_none] = ACTIONS(2585), + [anon_sym_await] = ACTIONS(2585), [sym_comment] = ACTIONS(76), }, - [1434] = { - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_as] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(634), - [anon_sym_COLON] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(636), - [anon_sym_or] = ACTIONS(638), + [1521] = { + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_as] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(668), + [anon_sym_COLON] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(670), + [anon_sym_or] = ACTIONS(672), [sym_comment] = ACTIONS(76), }, - [1435] = { - [anon_sym_RPAREN] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_COLON] = ACTIONS(2016), - [anon_sym_and] = ACTIONS(2527), - [anon_sym_or] = ACTIONS(2529), + [1522] = { + [anon_sym_RPAREN] = ACTIONS(2124), + [anon_sym_COMMA] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_COLON] = ACTIONS(2124), + [anon_sym_and] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(2653), [sym_comment] = ACTIONS(76), }, - [1436] = { - [anon_sym_RPAREN] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_and] = ACTIONS(2527), - [anon_sym_or] = ACTIONS(2529), + [1523] = { + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_COLON] = ACTIONS(726), + [anon_sym_and] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(2653), [sym_comment] = ACTIONS(76), }, - [1437] = { - [sym__expression] = STATE(1649), - [sym__primary_expression] = STATE(1154), + [1524] = { + [sym__expression] = STATE(1740), + [sym__primary_expression] = STATE(1230), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -51811,67 +54130,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), - [anon_sym_lambda] = ACTIONS(1979), + [anon_sym_not] = ACTIONS(2076), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_lambda] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1983), + [anon_sym_await] = ACTIONS(2084), [sym_comment] = ACTIONS(76), }, - [1438] = { - [anon_sym_COLON] = ACTIONS(2907), + [1525] = { + [anon_sym_COLON] = ACTIONS(3039), [sym_comment] = ACTIONS(76), }, - [1439] = { - [aux_sym_concatenated_string_repeat1] = STATE(1651), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_COLON] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [1526] = { + [aux_sym_concatenated_string_repeat1] = STATE(1742), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_COLON] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [1440] = { - [sym__expression] = STATE(1652), - [sym__primary_expression] = STATE(509), + [1527] = { + [sym__expression] = STATE(1743), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -51896,27 +54215,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [1441] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(1154), + [1528] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(1230), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -51941,27 +54260,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), - [anon_sym_lambda] = ACTIONS(1979), + [anon_sym_not] = ACTIONS(2076), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_lambda] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1983), + [anon_sym_await] = ACTIONS(2084), [sym_comment] = ACTIONS(76), }, - [1442] = { - [sym__expression] = STATE(1653), - [sym__primary_expression] = STATE(1154), + [1529] = { + [sym__expression] = STATE(1744), + [sym__primary_expression] = STATE(1230), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -51986,26 +54305,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), - [anon_sym_lambda] = ACTIONS(1979), + [anon_sym_not] = ACTIONS(2076), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_lambda] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1983), + [anon_sym_await] = ACTIONS(2084), [sym_comment] = ACTIONS(76), }, - [1443] = { - [sym__primary_expression] = STATE(1654), + [1530] = { + [sym__primary_expression] = STATE(1745), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -52024,13 +54343,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -52039,8 +54358,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1444] = { - [sym__primary_expression] = STATE(1655), + [1531] = { + [sym__primary_expression] = STATE(1746), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -52059,13 +54378,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -52074,8 +54393,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1445] = { - [sym__primary_expression] = STATE(1656), + [1532] = { + [sym__primary_expression] = STATE(1747), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -52094,13 +54413,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -52109,12 +54428,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1446] = { - [anon_sym_in] = ACTIONS(2909), + [1533] = { + [anon_sym_in] = ACTIONS(3041), [sym_comment] = ACTIONS(76), }, - [1447] = { - [sym__primary_expression] = STATE(1658), + [1534] = { + [sym__primary_expression] = STATE(1749), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -52133,13 +54452,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -52148,8 +54467,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1448] = { - [sym__primary_expression] = STATE(618), + [1535] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -52168,13 +54487,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -52183,8 +54502,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1449] = { - [sym__primary_expression] = STATE(1659), + [1536] = { + [sym__primary_expression] = STATE(1750), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -52203,13 +54522,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -52218,8 +54537,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1450] = { - [sym__primary_expression] = STATE(1660), + [1537] = { + [sym__primary_expression] = STATE(1751), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -52238,13 +54557,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -52253,8 +54572,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1451] = { - [sym__primary_expression] = STATE(1661), + [1538] = { + [sym__primary_expression] = STATE(1752), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -52273,13 +54592,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -52288,8 +54607,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1452] = { - [sym__primary_expression] = STATE(1656), + [1539] = { + [sym__primary_expression] = STATE(1747), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -52308,14 +54627,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(3043), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -52324,82 +54643,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1453] = { - [aux_sym_comparison_operator_repeat1] = STATE(1662), - [anon_sym_RPAREN] = ACTIONS(900), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_COLON] = ACTIONS(900), - [anon_sym_in] = ACTIONS(2535), - [anon_sym_not] = ACTIONS(2537), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_LT_EQ] = ACTIONS(2535), - [anon_sym_EQ_EQ] = ACTIONS(2535), - [anon_sym_BANG_EQ] = ACTIONS(2535), - [anon_sym_GT_EQ] = ACTIONS(2535), - [anon_sym_GT] = ACTIONS(2551), - [anon_sym_LT_GT] = ACTIONS(2535), - [anon_sym_is] = ACTIONS(2553), + [1540] = { + [aux_sym_comparison_operator_repeat1] = STATE(1753), + [anon_sym_RPAREN] = ACTIONS(936), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_COLON] = ACTIONS(936), + [anon_sym_in] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2661), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(2675), + [anon_sym_LT_EQ] = ACTIONS(2659), + [anon_sym_EQ_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2659), + [anon_sym_GT] = ACTIONS(2675), + [anon_sym_LT_GT] = ACTIONS(2659), + [anon_sym_is] = ACTIONS(2677), [sym_comment] = ACTIONS(76), }, - [1454] = { - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_COMMA] = ACTIONS(2024), - [anon_sym_COLON] = ACTIONS(1987), - [anon_sym_EQ] = ACTIONS(1989), + [1541] = { + [anon_sym_RPAREN] = ACTIONS(2132), + [anon_sym_COMMA] = ACTIONS(2132), + [anon_sym_COLON] = ACTIONS(2088), + [anon_sym_EQ] = ACTIONS(2090), [sym_comment] = ACTIONS(76), }, - [1455] = { - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_COLON] = ACTIONS(1993), - [anon_sym_EQ] = ACTIONS(1995), + [1542] = { + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_COMMA] = ACTIONS(2134), + [anon_sym_COLON] = ACTIONS(2094), + [anon_sym_EQ] = ACTIONS(2096), [sym_comment] = ACTIONS(76), }, - [1456] = { - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_COLON] = ACTIONS(1999), + [1543] = { + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_COMMA] = ACTIONS(2134), + [anon_sym_COLON] = ACTIONS(2100), [sym_comment] = ACTIONS(76), }, - [1457] = { - [anon_sym_EQ] = ACTIONS(2913), + [1544] = { + [anon_sym_EQ] = ACTIONS(3045), [sym_comment] = ACTIONS(76), }, - [1458] = { - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_COMMA] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [1545] = { + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_COMMA] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [1459] = { - [sym_default_parameter] = STATE(823), - [sym_typed_default_parameter] = STATE(823), - [sym_list_splat] = STATE(1456), - [sym_dictionary_splat] = STATE(1456), - [sym_typed_parameter] = STATE(823), - [sym_tuple] = STATE(823), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_print] = ACTIONS(2555), - [anon_sym_exec] = ACTIONS(2555), - [sym_identifier] = ACTIONS(2557), + [1546] = { + [sym_default_parameter] = STATE(881), + [sym_typed_default_parameter] = STATE(881), + [sym_list_splat] = STATE(1543), + [sym_dictionary_splat] = STATE(1543), + [sym_typed_parameter] = STATE(881), + [sym_tuple] = STATE(881), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_RPAREN] = ACTIONS(2174), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_print] = ACTIONS(2679), + [anon_sym_exec] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2681), [sym_comment] = ACTIONS(76), }, - [1460] = { - [aux_sym__parameters_repeat1] = STATE(1460), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2915), + [1547] = { + [aux_sym__parameters_repeat1] = STATE(1547), + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_COMMA] = ACTIONS(3047), [sym_comment] = ACTIONS(76), }, - [1461] = { - [sym__expression] = STATE(1665), - [sym__primary_expression] = STATE(1467), + [1548] = { + [sym__expression] = STATE(1756), + [sym__primary_expression] = STATE(1554), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -52424,26 +54743,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_lambda] = ACTIONS(2689), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2569), + [anon_sym_await] = ACTIONS(2693), [sym_comment] = ACTIONS(76), }, - [1462] = { - [sym__primary_expression] = STATE(210), + [1549] = { + [sym__primary_expression] = STATE(216), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -52462,13 +54781,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -52477,62 +54796,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1463] = { - [sym_lambda_parameters] = STATE(1667), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2918), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [1550] = { + [sym_lambda_parameters] = STATE(1758), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(3050), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [1464] = { - [aux_sym_concatenated_string_repeat1] = STATE(1668), - [anon_sym_DOT] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_RPAREN] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_in] = ACTIONS(236), - [anon_sym_EQ] = ACTIONS(238), - [anon_sym_not] = ACTIONS(236), - [anon_sym_and] = ACTIONS(236), - [anon_sym_or] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(236), - [anon_sym_STAR_STAR] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_is] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(236), - [sym_string] = ACTIONS(392), + [1551] = { + [aux_sym_concatenated_string_repeat1] = STATE(1759), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_RPAREN] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_if] = ACTIONS(250), + [anon_sym_in] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(252), + [anon_sym_not] = ACTIONS(250), + [anon_sym_and] = ACTIONS(250), + [anon_sym_or] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_SLASH_SLASH] = ACTIONS(250), + [anon_sym_STAR_STAR] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(252), + [anon_sym_LT_GT] = ACTIONS(250), + [anon_sym_is] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(250), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [1465] = { - [sym__expression] = STATE(234), - [sym__primary_expression] = STATE(1467), + [1552] = { + [sym__expression] = STATE(240), + [sym__primary_expression] = STATE(1554), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -52557,109 +54876,109 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_lambda] = ACTIONS(2689), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2569), + [anon_sym_await] = ACTIONS(2693), [sym_comment] = ACTIONS(76), }, - [1466] = { - [anon_sym_RPAREN] = ACTIONS(2032), - [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_EQ] = ACTIONS(2032), - [anon_sym_and] = ACTIONS(2922), - [anon_sym_or] = ACTIONS(2924), + [1553] = { + [anon_sym_RPAREN] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(2140), + [anon_sym_and] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3056), [sym_comment] = ACTIONS(76), }, - [1467] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [aux_sym_comparison_operator_repeat1] = STATE(1682), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(296), - [anon_sym_COMMA] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_GT_GT] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(296), - [anon_sym_in] = ACTIONS(2930), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_not] = ACTIONS(2932), - [anon_sym_and] = ACTIONS(296), - [anon_sym_or] = ACTIONS(296), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2936), - [anon_sym_SLASH_SLASH] = ACTIONS(2936), - [anon_sym_STAR_STAR] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(2940), - [anon_sym_AMP] = ACTIONS(2942), - [anon_sym_CARET] = ACTIONS(2944), - [anon_sym_LT_LT] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2946), - [anon_sym_LT_EQ] = ACTIONS(2930), - [anon_sym_EQ_EQ] = ACTIONS(2930), - [anon_sym_BANG_EQ] = ACTIONS(2930), - [anon_sym_GT_EQ] = ACTIONS(2930), - [anon_sym_GT] = ACTIONS(2946), - [anon_sym_LT_GT] = ACTIONS(2930), - [anon_sym_is] = ACTIONS(2948), - [anon_sym_LBRACK] = ACTIONS(434), + [1554] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [aux_sym_comparison_operator_repeat1] = STATE(1773), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(310), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(310), + [anon_sym_in] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_not] = ACTIONS(3064), + [anon_sym_and] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_SLASH_SLASH] = ACTIONS(3068), + [anon_sym_STAR_STAR] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3074), + [anon_sym_CARET] = ACTIONS(3076), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3078), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3078), + [anon_sym_LT_GT] = ACTIONS(3062), + [anon_sym_is] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1468] = { - [anon_sym_RPAREN] = ACTIONS(2103), - [anon_sym_COMMA] = ACTIONS(2103), - [anon_sym_EQ] = ACTIONS(2950), + [1555] = { + [anon_sym_RPAREN] = ACTIONS(2211), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_EQ] = ACTIONS(3082), [sym_comment] = ACTIONS(76), }, - [1469] = { - [anon_sym_RPAREN] = ACTIONS(2107), - [anon_sym_COMMA] = ACTIONS(2107), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [1556] = { + [anon_sym_RPAREN] = ACTIONS(2215), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [1470] = { - [sym_default_parameter] = STATE(823), - [sym_typed_default_parameter] = STATE(823), - [sym_list_splat] = STATE(1456), - [sym_dictionary_splat] = STATE(1456), - [sym_typed_parameter] = STATE(823), - [sym_tuple] = STATE(823), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_print] = ACTIONS(2555), - [anon_sym_exec] = ACTIONS(2555), - [sym_identifier] = ACTIONS(2557), + [1557] = { + [sym_default_parameter] = STATE(881), + [sym_typed_default_parameter] = STATE(881), + [sym_list_splat] = STATE(1543), + [sym_dictionary_splat] = STATE(1543), + [sym_typed_parameter] = STATE(881), + [sym_tuple] = STATE(881), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_RPAREN] = ACTIONS(2217), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_print] = ACTIONS(2679), + [anon_sym_exec] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2681), [sym_comment] = ACTIONS(76), }, - [1471] = { - [anon_sym_RPAREN] = ACTIONS(2032), - [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [1558] = { + [anon_sym_RPAREN] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [1472] = { - [sym__simple_statements] = STATE(768), + [1559] = { + [sym__simple_statements] = STATE(822), [sym_import_statement] = STATE(10), [sym_import_from_statement] = STATE(10), [sym_print_statement] = STATE(10), @@ -52671,7 +54990,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_global_statement] = STATE(10), [sym_nonlocal_statement] = STATE(10), [sym_exec_statement] = STATE(10), - [sym__suite] = STATE(1684), + [sym__suite] = STATE(1775), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -52699,7 +55018,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(1273), + [sym__indent] = ACTIONS(1333), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -52733,17 +55052,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1473] = { - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_COLON] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(1311), - [anon_sym_or] = ACTIONS(1313), + [1560] = { + [sym__newline] = ACTIONS(2887), [sym_comment] = ACTIONS(76), }, - [1474] = { - [sym__expression] = STATE(1685), - [sym__primary_expression] = STATE(415), + [1561] = { + [sym_list_splat] = STATE(1399), + [sym_dictionary_splat] = STATE(1399), + [sym__expression] = STATE(1400), + [sym__primary_expression] = STATE(227), + [sym_not_operator] = STATE(67), + [sym_boolean_operator] = STATE(67), + [sym_binary_operator] = STATE(61), + [sym_unary_operator] = STATE(61), + [sym_comparison_operator] = STATE(67), + [sym_lambda] = STATE(67), + [sym_attribute] = STATE(61), + [sym_subscript] = STATE(61), + [sym_call] = STATE(61), + [sym_keyword_argument] = STATE(1399), + [sym_list] = STATE(61), + [sym_list_comprehension] = STATE(61), + [sym_dictionary] = STATE(61), + [sym_dictionary_comprehension] = STATE(61), + [sym_set] = STATE(61), + [sym_set_comprehension] = STATE(61), + [sym_parenthesized_expression] = STATE(61), + [sym_tuple] = STATE(61), + [sym_generator_expression] = STATE(61), + [sym_conditional_expression] = STATE(67), + [sym_concatenated_string] = STATE(61), + [sym_await] = STATE(67), + [anon_sym_LPAREN] = ACTIONS(84), + [anon_sym_RPAREN] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(100), + [sym_ellipsis] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(104), + [sym_string] = ACTIONS(394), + [sym_integer] = ACTIONS(108), + [sym_float] = ACTIONS(108), + [sym_identifier] = ACTIONS(914), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_none] = ACTIONS(108), + [anon_sym_await] = ACTIONS(396), + [sym_comment] = ACTIONS(76), + }, + [1562] = { + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(1377), + [anon_sym_or] = ACTIONS(1379), + [sym_comment] = ACTIONS(76), + }, + [1563] = { + [sym__expression] = STATE(1777), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -52768,69 +55141,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [1475] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_GT_GT] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_COLON] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_SLASH_SLASH] = ACTIONS(1325), - [anon_sym_STAR_STAR] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1333), - [anon_sym_LT_LT] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), + [1564] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_COLON] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PERCENT] = ACTIONS(1391), + [anon_sym_SLASH_SLASH] = ACTIONS(1391), + [anon_sym_STAR_STAR] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1476] = { - [anon_sym_if] = ACTIONS(2030), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(2034), - [anon_sym_or] = ACTIONS(2036), + [1565] = { + [anon_sym_if] = ACTIONS(2138), + [anon_sym_EQ] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(2142), + [anon_sym_or] = ACTIONS(2144), [sym_comment] = ACTIONS(76), }, - [1477] = { - [sym__expression] = STATE(1686), - [sym__primary_expression] = STATE(831), + [1566] = { + [sym__expression] = STATE(1778), + [sym__primary_expression] = STATE(889), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -52855,176 +55228,176 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_lambda] = ACTIONS(1349), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_lambda] = ACTIONS(1415), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1353), + [anon_sym_await] = ACTIONS(1419), [sym_comment] = ACTIONS(76), }, - [1478] = { - [aux_sym_concatenated_string_repeat1] = STATE(1478), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_EQ] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [1567] = { + [aux_sym_concatenated_string_repeat1] = STATE(1567), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(1567), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [1479] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(2952), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1568] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(3086), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1480] = { - [anon_sym_if] = ACTIONS(1550), - [anon_sym_EQ] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(2034), - [anon_sym_or] = ACTIONS(1550), + [1569] = { + [anon_sym_if] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(2142), + [anon_sym_or] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [1481] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1570] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1482] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_SLASH] = ACTIONS(2038), - [anon_sym_PERCENT] = ACTIONS(2048), - [anon_sym_SLASH_SLASH] = ACTIONS(2048), - [anon_sym_STAR_STAR] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1571] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2146), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2154), + [anon_sym_SLASH] = ACTIONS(2146), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_SLASH_SLASH] = ACTIONS(2156), + [anon_sym_STAR_STAR] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1483] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_GT_GT] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_EQ] = ACTIONS(1583), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_SLASH] = ACTIONS(2038), - [anon_sym_PERCENT] = ACTIONS(2048), - [anon_sym_SLASH_SLASH] = ACTIONS(2048), - [anon_sym_STAR_STAR] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_CARET] = ACTIONS(2056), - [anon_sym_LT_LT] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), + [1572] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2146), + [anon_sym_GT_GT] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_EQ] = ACTIONS(1649), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2154), + [anon_sym_SLASH] = ACTIONS(2146), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_SLASH_SLASH] = ACTIONS(2156), + [anon_sym_STAR_STAR] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1484] = { - [sym__primary_expression] = STATE(1688), + [1573] = { + [sym__primary_expression] = STATE(1780), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -53043,13 +55416,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -53058,180 +55431,180 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1485] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(2038), - [anon_sym_PERCENT] = ACTIONS(2048), - [anon_sym_SLASH_SLASH] = ACTIONS(2048), - [anon_sym_STAR_STAR] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1574] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2146), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(2146), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_SLASH_SLASH] = ACTIONS(2156), + [anon_sym_STAR_STAR] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1486] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_GT_GT] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_SLASH] = ACTIONS(2038), - [anon_sym_PERCENT] = ACTIONS(2048), - [anon_sym_SLASH_SLASH] = ACTIONS(2048), - [anon_sym_STAR_STAR] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_CARET] = ACTIONS(2056), - [anon_sym_LT_LT] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1575] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2146), + [anon_sym_GT_GT] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2154), + [anon_sym_SLASH] = ACTIONS(2146), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_SLASH_SLASH] = ACTIONS(2156), + [anon_sym_STAR_STAR] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1487] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_GT_GT] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_SLASH] = ACTIONS(2038), - [anon_sym_PERCENT] = ACTIONS(2048), - [anon_sym_SLASH_SLASH] = ACTIONS(2048), - [anon_sym_STAR_STAR] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(2056), - [anon_sym_LT_LT] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1576] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2146), + [anon_sym_GT_GT] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2154), + [anon_sym_SLASH] = ACTIONS(2146), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_SLASH_SLASH] = ACTIONS(2156), + [anon_sym_STAR_STAR] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1488] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_GT_GT] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_SLASH] = ACTIONS(2038), - [anon_sym_PERCENT] = ACTIONS(2048), - [anon_sym_SLASH_SLASH] = ACTIONS(2048), - [anon_sym_STAR_STAR] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1577] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2146), + [anon_sym_GT_GT] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2154), + [anon_sym_SLASH] = ACTIONS(2146), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_SLASH_SLASH] = ACTIONS(2156), + [anon_sym_STAR_STAR] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1489] = { - [aux_sym_comparison_operator_repeat1] = STATE(1489), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(2954), - [anon_sym_EQ] = ACTIONS(1583), - [anon_sym_not] = ACTIONS(2957), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(2960), - [anon_sym_LT_EQ] = ACTIONS(2954), - [anon_sym_EQ_EQ] = ACTIONS(2954), - [anon_sym_BANG_EQ] = ACTIONS(2954), - [anon_sym_GT_EQ] = ACTIONS(2954), - [anon_sym_GT] = ACTIONS(2960), - [anon_sym_LT_GT] = ACTIONS(2954), - [anon_sym_is] = ACTIONS(2963), + [1578] = { + [aux_sym_comparison_operator_repeat1] = STATE(1578), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(3088), + [anon_sym_EQ] = ACTIONS(1649), + [anon_sym_not] = ACTIONS(3091), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3088), + [anon_sym_EQ_EQ] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(3088), + [anon_sym_GT_EQ] = ACTIONS(3088), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_LT_GT] = ACTIONS(3088), + [anon_sym_is] = ACTIONS(3097), [sym_comment] = ACTIONS(76), }, - [1490] = { - [anon_sym_COMMA] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_and] = ACTIONS(1311), - [anon_sym_or] = ACTIONS(1313), + [1579] = { + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(3100), + [anon_sym_and] = ACTIONS(1377), + [anon_sym_or] = ACTIONS(1379), [sym_comment] = ACTIONS(76), }, - [1491] = { - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(2075), - [anon_sym_or] = ACTIONS(2077), + [1580] = { + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_EQ] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(2183), + [anon_sym_or] = ACTIONS(2185), [sym_comment] = ACTIONS(76), }, - [1492] = { - [sym__expression] = STATE(1689), - [sym__primary_expression] = STATE(842), + [1581] = { + [sym__expression] = STATE(1781), + [sym__primary_expression] = STATE(900), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -53256,186 +55629,186 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_lambda] = ACTIONS(1365), + [anon_sym_not] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), + [anon_sym_lambda] = ACTIONS(1431), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1435), [sym_comment] = ACTIONS(76), }, - [1493] = { - [aux_sym_concatenated_string_repeat1] = STATE(1493), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_EQ] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [1582] = { + [aux_sym_concatenated_string_repeat1] = STATE(1582), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_COLON] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(1567), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [1494] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(2968), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1583] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1495] = { - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_COLON] = ACTIONS(1550), - [anon_sym_EQ] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(2075), - [anon_sym_or] = ACTIONS(1550), + [1584] = { + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_COLON] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(2183), + [anon_sym_or] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [1496] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1585] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1497] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_SLASH] = ACTIONS(2079), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(2089), - [anon_sym_STAR_STAR] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1586] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2197), + [anon_sym_SLASH_SLASH] = ACTIONS(2197), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1498] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_GT_GT] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_COLON] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_EQ] = ACTIONS(1583), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_SLASH] = ACTIONS(2079), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(2089), - [anon_sym_STAR_STAR] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), + [1587] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_EQ] = ACTIONS(1649), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2197), + [anon_sym_SLASH_SLASH] = ACTIONS(2197), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_CARET] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1499] = { - [sym__primary_expression] = STATE(1691), + [1588] = { + [sym__primary_expression] = STATE(1783), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -53454,13 +55827,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -53469,189 +55842,189 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1500] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(2079), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(2089), - [anon_sym_STAR_STAR] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1589] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2197), + [anon_sym_SLASH_SLASH] = ACTIONS(2197), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1501] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_GT_GT] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_SLASH] = ACTIONS(2079), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(2089), - [anon_sym_STAR_STAR] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1590] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2197), + [anon_sym_SLASH_SLASH] = ACTIONS(2197), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_CARET] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1502] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_GT_GT] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_SLASH] = ACTIONS(2079), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(2089), - [anon_sym_STAR_STAR] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1591] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2197), + [anon_sym_SLASH_SLASH] = ACTIONS(2197), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1503] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_GT_GT] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_SLASH] = ACTIONS(2079), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(2089), - [anon_sym_STAR_STAR] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1592] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2197), + [anon_sym_SLASH_SLASH] = ACTIONS(2197), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1504] = { - [aux_sym_comparison_operator_repeat1] = STATE(1504), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_COLON] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(1583), - [anon_sym_not] = ACTIONS(2973), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(2976), - [anon_sym_LT_EQ] = ACTIONS(2970), - [anon_sym_EQ_EQ] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_GT_EQ] = ACTIONS(2970), - [anon_sym_GT] = ACTIONS(2976), - [anon_sym_LT_GT] = ACTIONS(2970), - [anon_sym_is] = ACTIONS(2979), + [1593] = { + [aux_sym_comparison_operator_repeat1] = STATE(1593), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(3104), + [anon_sym_EQ] = ACTIONS(1649), + [anon_sym_not] = ACTIONS(3107), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(3110), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_LT_GT] = ACTIONS(3104), + [anon_sym_is] = ACTIONS(3113), [sym_comment] = ACTIONS(76), }, - [1505] = { - [anon_sym_COMMA] = ACTIONS(2982), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_COLON] = ACTIONS(2982), - [anon_sym_and] = ACTIONS(1311), - [anon_sym_or] = ACTIONS(1313), + [1594] = { + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(3116), + [anon_sym_and] = ACTIONS(1377), + [anon_sym_or] = ACTIONS(1379), [sym_comment] = ACTIONS(76), }, - [1506] = { - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_and] = ACTIONS(1383), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_RBRACK] = ACTIONS(2111), + [1595] = { + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_and] = ACTIONS(1449), + [anon_sym_or] = ACTIONS(1451), + [anon_sym_RBRACK] = ACTIONS(2219), [sym_comment] = ACTIONS(76), }, - [1507] = { - [sym__expression] = STATE(1692), - [sym__primary_expression] = STATE(435), + [1596] = { + [sym__expression] = STATE(1784), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -53676,113 +56049,113 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [1508] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_GT_GT] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(1397), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_CARET] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACK] = ACTIONS(2272), + [1597] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_PERCENT] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(1463), + [anon_sym_STAR_STAR] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACK] = ACTIONS(2380), [sym_comment] = ACTIONS(76), }, - [1509] = { - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(748), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(752), - [anon_sym_or] = ACTIONS(754), - [anon_sym_RBRACK] = ACTIONS(2741), + [1598] = { + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(784), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(788), + [anon_sym_or] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(2869), [sym_comment] = ACTIONS(76), }, - [1510] = { - [sym_lambda_parameters] = STATE(1694), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2984), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [1599] = { + [sym_lambda_parameters] = STATE(1786), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(3118), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [1511] = { - [aux_sym_for_in_clause_repeat1] = STATE(1696), - [anon_sym_COMMA] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_for] = ACTIONS(2809), - [anon_sym_RBRACK] = ACTIONS(2809), + [1600] = { + [aux_sym_for_in_clause_repeat1] = STATE(1788), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(2937), [sym_comment] = ACTIONS(76), }, - [1512] = { - [anon_sym_COMMA] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_and] = ACTIONS(752), - [anon_sym_or] = ACTIONS(754), - [anon_sym_RBRACK] = ACTIONS(2813), + [1601] = { + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_and] = ACTIONS(788), + [anon_sym_or] = ACTIONS(790), + [anon_sym_RBRACK] = ACTIONS(2941), [sym_comment] = ACTIONS(76), }, - [1513] = { - [anon_sym_if] = ACTIONS(690), - [anon_sym_for] = ACTIONS(690), - [anon_sym_and] = ACTIONS(2639), - [anon_sym_or] = ACTIONS(2641), - [anon_sym_RBRACK] = ACTIONS(690), + [1602] = { + [anon_sym_if] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_and] = ACTIONS(2767), + [anon_sym_or] = ACTIONS(2769), + [anon_sym_RBRACK] = ACTIONS(726), [sym_comment] = ACTIONS(76), }, - [1514] = { - [sym__expression] = STATE(1697), - [sym__primary_expression] = STATE(1248), + [1603] = { + [sym__expression] = STATE(1789), + [sym__primary_expression] = STATE(1327), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -53807,66 +56180,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_lambda] = ACTIONS(2142), + [anon_sym_not] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_lambda] = ACTIONS(2250), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2146), + [anon_sym_await] = ACTIONS(2254), [sym_comment] = ACTIONS(76), }, - [1515] = { - [anon_sym_COLON] = ACTIONS(2988), + [1604] = { + [anon_sym_COLON] = ACTIONS(3122), [sym_comment] = ACTIONS(76), }, - [1516] = { - [aux_sym_concatenated_string_repeat1] = STATE(1699), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_RBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [1605] = { + [aux_sym_concatenated_string_repeat1] = STATE(1791), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_for] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_RBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [1517] = { - [sym__expression] = STATE(1700), - [sym__primary_expression] = STATE(509), + [1606] = { + [sym__expression] = STATE(1792), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -53891,27 +56264,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [1518] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(1248), + [1607] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(1327), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -53936,27 +56309,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_lambda] = ACTIONS(2142), + [anon_sym_not] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_lambda] = ACTIONS(2250), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2146), + [anon_sym_await] = ACTIONS(2254), [sym_comment] = ACTIONS(76), }, - [1519] = { - [sym__expression] = STATE(1701), - [sym__primary_expression] = STATE(1248), + [1608] = { + [sym__expression] = STATE(1793), + [sym__primary_expression] = STATE(1327), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -53981,26 +56354,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_lambda] = ACTIONS(2142), + [anon_sym_not] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_lambda] = ACTIONS(2250), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2146), + [anon_sym_await] = ACTIONS(2254), [sym_comment] = ACTIONS(76), }, - [1520] = { - [sym__primary_expression] = STATE(1702), + [1609] = { + [sym__primary_expression] = STATE(1794), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -54019,13 +56392,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -54034,8 +56407,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1521] = { - [sym__primary_expression] = STATE(1703), + [1610] = { + [sym__primary_expression] = STATE(1795), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -54054,13 +56427,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -54069,8 +56442,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1522] = { - [sym__primary_expression] = STATE(1704), + [1611] = { + [sym__primary_expression] = STATE(1796), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -54089,13 +56462,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -54104,12 +56477,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1523] = { - [anon_sym_in] = ACTIONS(2990), + [1612] = { + [anon_sym_in] = ACTIONS(3124), [sym_comment] = ACTIONS(76), }, - [1524] = { - [sym__primary_expression] = STATE(1706), + [1613] = { + [sym__primary_expression] = STATE(1798), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -54128,13 +56501,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -54143,8 +56516,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1525] = { - [sym__primary_expression] = STATE(618), + [1614] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -54163,13 +56536,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -54178,8 +56551,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1526] = { - [sym__primary_expression] = STATE(1707), + [1615] = { + [sym__primary_expression] = STATE(1799), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -54198,13 +56571,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -54213,8 +56586,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1527] = { - [sym__primary_expression] = STATE(1708), + [1616] = { + [sym__primary_expression] = STATE(1800), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -54233,13 +56606,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -54248,8 +56621,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1528] = { - [sym__primary_expression] = STATE(1709), + [1617] = { + [sym__primary_expression] = STATE(1801), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -54268,13 +56641,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -54283,8 +56656,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1529] = { - [sym__primary_expression] = STATE(1704), + [1618] = { + [sym__primary_expression] = STATE(1796), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -54303,14 +56676,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), + [anon_sym_not] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -54319,36 +56692,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1530] = { - [aux_sym_comparison_operator_repeat1] = STATE(1710), - [anon_sym_if] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_in] = ACTIONS(2647), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(2663), - [anon_sym_LT_EQ] = ACTIONS(2647), - [anon_sym_EQ_EQ] = ACTIONS(2647), - [anon_sym_BANG_EQ] = ACTIONS(2647), - [anon_sym_GT_EQ] = ACTIONS(2647), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_LT_GT] = ACTIONS(2647), - [anon_sym_is] = ACTIONS(2665), - [anon_sym_RBRACK] = ACTIONS(900), + [1619] = { + [aux_sym_comparison_operator_repeat1] = STATE(1802), + [anon_sym_if] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_in] = ACTIONS(2775), + [anon_sym_not] = ACTIONS(2777), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(2791), + [anon_sym_LT_EQ] = ACTIONS(2775), + [anon_sym_EQ_EQ] = ACTIONS(2775), + [anon_sym_BANG_EQ] = ACTIONS(2775), + [anon_sym_GT_EQ] = ACTIONS(2775), + [anon_sym_GT] = ACTIONS(2791), + [anon_sym_LT_GT] = ACTIONS(2775), + [anon_sym_is] = ACTIONS(2793), + [anon_sym_RBRACK] = ACTIONS(936), [sym_comment] = ACTIONS(76), }, - [1531] = { - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_and] = ACTIONS(1433), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(2111), + [1620] = { + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1499), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(2219), [sym_comment] = ACTIONS(76), }, - [1532] = { - [sym__expression] = STATE(1711), - [sym__primary_expression] = STATE(467), + [1621] = { + [sym__expression] = STATE(1803), + [sym__primary_expression] = STATE(495), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -54373,89 +56746,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(784), - [anon_sym_PLUS] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(786), - [anon_sym_TILDE] = ACTIONS(786), - [anon_sym_lambda] = ACTIONS(788), + [anon_sym_not] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(822), + [anon_sym_lambda] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(790), + [sym_string] = ACTIONS(826), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(792), + [anon_sym_await] = ACTIONS(828), [sym_comment] = ACTIONS(76), }, - [1533] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_GT_GT] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(1447), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_LT_LT] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(2272), + [1622] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(1513), + [anon_sym_STAR_STAR] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(2380), [sym_comment] = ACTIONS(76), }, - [1534] = { - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_and] = ACTIONS(1433), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(2192), + [1623] = { + [anon_sym_COMMA] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1499), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(2300), [sym_comment] = ACTIONS(76), }, - [1535] = { - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(806), - [anon_sym_COLON] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(812), - [anon_sym_or] = ACTIONS(814), - [anon_sym_RBRACE] = ACTIONS(2741), + [1624] = { + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(842), + [anon_sym_COLON] = ACTIONS(2869), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(848), + [anon_sym_or] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(2869), [sym_comment] = ACTIONS(76), }, - [1536] = { - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(2196), - [anon_sym_or] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(1357), + [1625] = { + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(2304), + [anon_sym_or] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(1423), [sym_comment] = ACTIONS(76), }, - [1537] = { - [sym__expression] = STATE(1712), - [sym__primary_expression] = STATE(930), + [1626] = { + [sym__expression] = STATE(1804), + [sym__primary_expression] = STATE(988), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -54480,186 +56853,186 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_lambda] = ACTIONS(1483), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_lambda] = ACTIONS(1549), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1553), [sym_comment] = ACTIONS(76), }, - [1538] = { - [aux_sym_concatenated_string_repeat1] = STATE(1538), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [1627] = { + [aux_sym_concatenated_string_repeat1] = STATE(1627), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [1539] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1628] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(3128), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1540] = { - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(2196), - [anon_sym_or] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), + [1629] = { + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(2304), + [anon_sym_or] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [1541] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1630] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1542] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_PERCENT] = ACTIONS(2210), - [anon_sym_SLASH_SLASH] = ACTIONS(2210), - [anon_sym_STAR_STAR] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1631] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2308), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2316), + [anon_sym_DASH] = ACTIONS(2316), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_SLASH_SLASH] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1543] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_GT_GT] = ACTIONS(2202), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_PERCENT] = ACTIONS(2210), - [anon_sym_SLASH_SLASH] = ACTIONS(2210), - [anon_sym_STAR_STAR] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_CARET] = ACTIONS(2218), - [anon_sym_LT_LT] = ACTIONS(2202), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(1581), + [1632] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(2308), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(2316), + [anon_sym_DASH] = ACTIONS(2316), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_SLASH_SLASH] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2322), + [anon_sym_AMP] = ACTIONS(2324), + [anon_sym_CARET] = ACTIONS(2326), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(1647), [sym_comment] = ACTIONS(76), }, - [1544] = { - [sym__primary_expression] = STATE(1714), + [1633] = { + [sym__primary_expression] = STATE(1806), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -54678,13 +57051,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -54693,215 +57066,215 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1545] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_PERCENT] = ACTIONS(2210), - [anon_sym_SLASH_SLASH] = ACTIONS(2210), - [anon_sym_STAR_STAR] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1634] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2308), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_SLASH_SLASH] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1546] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_GT_GT] = ACTIONS(2202), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_PERCENT] = ACTIONS(2210), - [anon_sym_SLASH_SLASH] = ACTIONS(2210), - [anon_sym_STAR_STAR] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_CARET] = ACTIONS(2218), - [anon_sym_LT_LT] = ACTIONS(2202), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1635] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2308), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2316), + [anon_sym_DASH] = ACTIONS(2316), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_SLASH_SLASH] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(2324), + [anon_sym_CARET] = ACTIONS(2326), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1547] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_GT_GT] = ACTIONS(2202), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_PERCENT] = ACTIONS(2210), - [anon_sym_SLASH_SLASH] = ACTIONS(2210), - [anon_sym_STAR_STAR] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(2218), - [anon_sym_LT_LT] = ACTIONS(2202), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1636] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2308), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2316), + [anon_sym_DASH] = ACTIONS(2316), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_SLASH_SLASH] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(2326), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1548] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_GT_GT] = ACTIONS(2202), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_PERCENT] = ACTIONS(2210), - [anon_sym_SLASH_SLASH] = ACTIONS(2210), - [anon_sym_STAR_STAR] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(2202), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1637] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2308), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2316), + [anon_sym_DASH] = ACTIONS(2316), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_SLASH_SLASH] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1549] = { - [aux_sym_comparison_operator_repeat1] = STATE(1549), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2999), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_LT_EQ] = ACTIONS(2996), - [anon_sym_EQ_EQ] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(2996), - [anon_sym_GT_EQ] = ACTIONS(2996), - [anon_sym_GT] = ACTIONS(3002), - [anon_sym_LT_GT] = ACTIONS(2996), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_RBRACE] = ACTIONS(1581), + [1638] = { + [aux_sym_comparison_operator_repeat1] = STATE(1638), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_not] = ACTIONS(3133), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(3136), + [anon_sym_LT_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_GT_EQ] = ACTIONS(3130), + [anon_sym_GT] = ACTIONS(3136), + [anon_sym_LT_GT] = ACTIONS(3130), + [anon_sym_is] = ACTIONS(3139), + [anon_sym_RBRACE] = ACTIONS(1647), [sym_comment] = ACTIONS(76), }, - [1550] = { - [sym_lambda_parameters] = STATE(1716), - [sym__parameters] = STATE(137), - [sym_default_parameter] = STATE(138), - [sym_typed_default_parameter] = STATE(138), - [sym_list_splat] = STATE(139), - [sym_dictionary_splat] = STATE(139), - [sym_typed_parameter] = STATE(138), - [sym_tuple] = STATE(138), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(208), - [anon_sym_print] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(3008), - [anon_sym_exec] = ACTIONS(210), - [sym_identifier] = ACTIONS(214), + [1639] = { + [sym_lambda_parameters] = STATE(1808), + [sym__parameters] = STATE(143), + [sym_default_parameter] = STATE(144), + [sym_typed_default_parameter] = STATE(144), + [sym_list_splat] = STATE(145), + [sym_dictionary_splat] = STATE(145), + [sym_typed_parameter] = STATE(144), + [sym_tuple] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(224), + [anon_sym_COLON] = ACTIONS(3142), + [anon_sym_exec] = ACTIONS(224), + [sym_identifier] = ACTIONS(228), [sym_comment] = ACTIONS(76), }, - [1551] = { - [aux_sym_for_in_clause_repeat1] = STATE(1718), - [anon_sym_COMMA] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_for] = ACTIONS(2809), - [anon_sym_RBRACE] = ACTIONS(2809), + [1640] = { + [aux_sym_for_in_clause_repeat1] = STATE(1810), + [anon_sym_COMMA] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_RBRACE] = ACTIONS(2937), [sym_comment] = ACTIONS(76), }, - [1552] = { - [anon_sym_COMMA] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_and] = ACTIONS(2196), - [anon_sym_or] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2813), + [1641] = { + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_and] = ACTIONS(2304), + [anon_sym_or] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(2941), [sym_comment] = ACTIONS(76), }, - [1553] = { - [anon_sym_if] = ACTIONS(690), - [anon_sym_for] = ACTIONS(690), - [anon_sym_and] = ACTIONS(2705), - [anon_sym_or] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(690), + [1642] = { + [anon_sym_if] = ACTIONS(726), + [anon_sym_for] = ACTIONS(726), + [anon_sym_and] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2835), + [anon_sym_RBRACE] = ACTIONS(726), [sym_comment] = ACTIONS(76), }, - [1554] = { - [sym__expression] = STATE(1719), - [sym__primary_expression] = STATE(1297), + [1643] = { + [sym__expression] = STATE(1811), + [sym__primary_expression] = STATE(1376), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -54926,66 +57299,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_lambda] = ACTIONS(2234), + [anon_sym_not] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_lambda] = ACTIONS(2342), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2346), [sym_comment] = ACTIONS(76), }, - [1555] = { - [anon_sym_COLON] = ACTIONS(3012), + [1644] = { + [anon_sym_COLON] = ACTIONS(3146), [sym_comment] = ACTIONS(76), }, - [1556] = { - [aux_sym_concatenated_string_repeat1] = STATE(1721), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_for] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [anon_sym_RBRACE] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [1645] = { + [aux_sym_concatenated_string_repeat1] = STATE(1813), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_for] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_RBRACE] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [1557] = { - [sym__expression] = STATE(1722), - [sym__primary_expression] = STATE(509), + [1646] = { + [sym__expression] = STATE(1814), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -55010,27 +57383,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [1558] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(1297), + [1647] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(1376), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -55055,27 +57428,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_lambda] = ACTIONS(2234), + [anon_sym_not] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_lambda] = ACTIONS(2342), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2346), [sym_comment] = ACTIONS(76), }, - [1559] = { - [sym__expression] = STATE(1723), - [sym__primary_expression] = STATE(1297), + [1648] = { + [sym__expression] = STATE(1815), + [sym__primary_expression] = STATE(1376), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -55100,26 +57473,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_lambda] = ACTIONS(2234), + [anon_sym_not] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_lambda] = ACTIONS(2342), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2346), [sym_comment] = ACTIONS(76), }, - [1560] = { - [sym__primary_expression] = STATE(1724), + [1649] = { + [sym__primary_expression] = STATE(1816), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -55138,13 +57511,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -55153,8 +57526,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1561] = { - [sym__primary_expression] = STATE(1725), + [1650] = { + [sym__primary_expression] = STATE(1817), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -55173,13 +57546,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -55188,8 +57561,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1562] = { - [sym__primary_expression] = STATE(1726), + [1651] = { + [sym__primary_expression] = STATE(1818), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -55208,13 +57581,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -55223,12 +57596,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1563] = { - [anon_sym_in] = ACTIONS(3014), + [1652] = { + [anon_sym_in] = ACTIONS(3148), [sym_comment] = ACTIONS(76), }, - [1564] = { - [sym__primary_expression] = STATE(1728), + [1653] = { + [sym__primary_expression] = STATE(1820), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -55247,13 +57620,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -55262,8 +57635,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1565] = { - [sym__primary_expression] = STATE(618), + [1654] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -55282,13 +57655,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -55297,8 +57670,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1566] = { - [sym__primary_expression] = STATE(1729), + [1655] = { + [sym__primary_expression] = STATE(1821), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -55317,13 +57690,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -55332,8 +57705,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1567] = { - [sym__primary_expression] = STATE(1730), + [1656] = { + [sym__primary_expression] = STATE(1822), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -55352,13 +57725,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -55367,8 +57740,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1568] = { - [sym__primary_expression] = STATE(1731), + [1657] = { + [sym__primary_expression] = STATE(1823), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -55387,13 +57760,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -55402,8 +57775,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1569] = { - [sym__primary_expression] = STATE(1726), + [1658] = { + [sym__primary_expression] = STATE(1818), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -55422,14 +57795,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(3016), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), + [anon_sym_not] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -55438,35 +57811,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1570] = { - [aux_sym_comparison_operator_repeat1] = STATE(1732), - [anon_sym_if] = ACTIONS(900), - [anon_sym_for] = ACTIONS(900), - [anon_sym_in] = ACTIONS(2713), - [anon_sym_not] = ACTIONS(2715), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(2729), - [anon_sym_LT_EQ] = ACTIONS(2713), - [anon_sym_EQ_EQ] = ACTIONS(2713), - [anon_sym_BANG_EQ] = ACTIONS(2713), - [anon_sym_GT_EQ] = ACTIONS(2713), - [anon_sym_GT] = ACTIONS(2729), - [anon_sym_LT_GT] = ACTIONS(2713), - [anon_sym_is] = ACTIONS(2731), - [anon_sym_RBRACE] = ACTIONS(900), + [1659] = { + [aux_sym_comparison_operator_repeat1] = STATE(1824), + [anon_sym_if] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_in] = ACTIONS(2841), + [anon_sym_not] = ACTIONS(2843), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_LT_EQ] = ACTIONS(2841), + [anon_sym_EQ_EQ] = ACTIONS(2841), + [anon_sym_BANG_EQ] = ACTIONS(2841), + [anon_sym_GT_EQ] = ACTIONS(2841), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_LT_GT] = ACTIONS(2841), + [anon_sym_is] = ACTIONS(2859), + [anon_sym_RBRACE] = ACTIONS(936), [sym_comment] = ACTIONS(76), }, - [1571] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1660] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1572] = { - [sym__expression] = STATE(1733), - [sym__primary_expression] = STATE(509), + [1661] = { + [sym__expression] = STATE(1825), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -55491,110 +57864,110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [1573] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_GT_GT] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_else] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_SLASH] = ACTIONS(1526), - [anon_sym_PERCENT] = ACTIONS(1536), - [anon_sym_SLASH_SLASH] = ACTIONS(1536), - [anon_sym_STAR_STAR] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1542), - [anon_sym_CARET] = ACTIONS(1544), - [anon_sym_LT_LT] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), + [1662] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_GT_GT] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_else] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1602), + [anon_sym_SLASH_SLASH] = ACTIONS(1602), + [anon_sym_STAR_STAR] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1606), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym_LT_LT] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1574] = { - [sym__newline] = ACTIONS(3018), - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_GT_GT] = ACTIONS(3020), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_in] = ACTIONS(3018), - [anon_sym_EQ] = ACTIONS(3020), - [anon_sym_not] = ACTIONS(3018), - [anon_sym_and] = ACTIONS(3018), - [anon_sym_or] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_SLASH] = ACTIONS(3020), - [anon_sym_PERCENT] = ACTIONS(3020), - [anon_sym_SLASH_SLASH] = ACTIONS(3020), - [anon_sym_STAR_STAR] = ACTIONS(3020), - [anon_sym_PIPE] = ACTIONS(3020), - [anon_sym_AMP] = ACTIONS(3020), - [anon_sym_CARET] = ACTIONS(3020), - [anon_sym_LT_LT] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_GT] = ACTIONS(3020), - [anon_sym_LT_GT] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3018), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3018), - [anon_sym_GT_GT_EQ] = ACTIONS(3018), - [anon_sym_LT_LT_EQ] = ACTIONS(3018), - [anon_sym_AMP_EQ] = ACTIONS(3018), - [anon_sym_CARET_EQ] = ACTIONS(3018), - [anon_sym_PIPE_EQ] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(3018), + [1663] = { + [sym__newline] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_COMMA] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3154), + [anon_sym_GT_GT] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3154), + [anon_sym_not] = ACTIONS(3152), + [anon_sym_and] = ACTIONS(3152), + [anon_sym_or] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_SLASH_SLASH] = ACTIONS(3154), + [anon_sym_STAR_STAR] = ACTIONS(3154), + [anon_sym_PIPE] = ACTIONS(3154), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_CARET] = ACTIONS(3154), + [anon_sym_LT_LT] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_GT_EQ] = ACTIONS(3152), + [anon_sym_GT] = ACTIONS(3154), + [anon_sym_LT_GT] = ACTIONS(3152), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_PLUS_EQ] = ACTIONS(3152), + [anon_sym_DASH_EQ] = ACTIONS(3152), + [anon_sym_STAR_EQ] = ACTIONS(3152), + [anon_sym_SLASH_EQ] = ACTIONS(3152), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3152), + [anon_sym_PERCENT_EQ] = ACTIONS(3152), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3152), + [anon_sym_GT_GT_EQ] = ACTIONS(3152), + [anon_sym_LT_LT_EQ] = ACTIONS(3152), + [anon_sym_AMP_EQ] = ACTIONS(3152), + [anon_sym_CARET_EQ] = ACTIONS(3152), + [anon_sym_PIPE_EQ] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3152), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(3152), }, - [1575] = { - [sym_list_splat] = STATE(1320), - [sym_dictionary_splat] = STATE(1320), - [sym__expression] = STATE(1321), - [sym__primary_expression] = STATE(221), + [1664] = { + [sym_list_splat] = STATE(1399), + [sym_dictionary_splat] = STATE(1399), + [sym__expression] = STATE(1400), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -55604,7 +57977,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_keyword_argument] = STATE(1320), + [sym_keyword_argument] = STATE(1399), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -55618,47 +57991,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_print] = ACTIONS(876), - [anon_sym_exec] = ACTIONS(876), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_print] = ACTIONS(912), + [anon_sym_exec] = ACTIONS(912), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), - [sym_identifier] = ACTIONS(878), + [sym_identifier] = ACTIONS(914), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1576] = { - [anon_sym_COMMA] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_and] = ACTIONS(1383), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_RBRACK] = ACTIONS(3022), + [1665] = { + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_and] = ACTIONS(1449), + [anon_sym_or] = ACTIONS(1451), + [anon_sym_RBRACK] = ACTIONS(3156), [sym_comment] = ACTIONS(76), }, - [1577] = { - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_COLON] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1599), - [anon_sym_RBRACK] = ACTIONS(2111), + [1666] = { + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_COLON] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1665), + [anon_sym_RBRACK] = ACTIONS(2219), [sym_comment] = ACTIONS(76), }, - [1578] = { - [sym__expression] = STATE(1734), - [sym__primary_expression] = STATE(538), + [1667] = { + [sym__expression] = STATE(1826), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -55683,27 +58056,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [1579] = { - [sym__expression] = STATE(1735), - [sym__primary_expression] = STATE(435), + [1668] = { + [sym__expression] = STATE(1827), + [sym__primary_expression] = STATE(463), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -55726,78 +58099,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_COMMA] = ACTIONS(3156), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_lambda] = ACTIONS(734), + [anon_sym_not] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_lambda] = ACTIONS(770), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(3022), + [anon_sym_RBRACK] = ACTIONS(3156), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(736), + [sym_string] = ACTIONS(772), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(738), + [anon_sym_await] = ACTIONS(774), [sym_comment] = ACTIONS(76), }, - [1580] = { - [sym__newline] = ACTIONS(3024), - [anon_sym_DOT] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(3024), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_GT_GT] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3024), - [anon_sym_in] = ACTIONS(3024), - [anon_sym_EQ] = ACTIONS(3026), - [anon_sym_not] = ACTIONS(3024), - [anon_sym_and] = ACTIONS(3024), - [anon_sym_or] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_SLASH] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_SLASH_SLASH] = ACTIONS(3026), - [anon_sym_STAR_STAR] = ACTIONS(3026), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_CARET] = ACTIONS(3026), - [anon_sym_LT_LT] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_GT] = ACTIONS(3026), - [anon_sym_LT_GT] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3024), - [anon_sym_PLUS_EQ] = ACTIONS(3024), - [anon_sym_DASH_EQ] = ACTIONS(3024), - [anon_sym_STAR_EQ] = ACTIONS(3024), - [anon_sym_SLASH_EQ] = ACTIONS(3024), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3024), - [anon_sym_PERCENT_EQ] = ACTIONS(3024), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3024), - [anon_sym_GT_GT_EQ] = ACTIONS(3024), - [anon_sym_LT_LT_EQ] = ACTIONS(3024), - [anon_sym_AMP_EQ] = ACTIONS(3024), - [anon_sym_CARET_EQ] = ACTIONS(3024), - [anon_sym_PIPE_EQ] = ACTIONS(3024), - [anon_sym_LBRACK] = ACTIONS(3024), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(3024), + [1669] = { + [sym__newline] = ACTIONS(3158), + [anon_sym_DOT] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3158), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_STAR] = ACTIONS(3160), + [anon_sym_GT_GT] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_in] = ACTIONS(3158), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3158), + [anon_sym_and] = ACTIONS(3158), + [anon_sym_or] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_SLASH_SLASH] = ACTIONS(3160), + [anon_sym_STAR_STAR] = ACTIONS(3160), + [anon_sym_PIPE] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_LT_LT] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_LT_EQ] = ACTIONS(3158), + [anon_sym_EQ_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3158), + [anon_sym_GT_EQ] = ACTIONS(3158), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_LT_GT] = ACTIONS(3158), + [anon_sym_is] = ACTIONS(3158), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3158), + [anon_sym_GT_GT_EQ] = ACTIONS(3158), + [anon_sym_LT_LT_EQ] = ACTIONS(3158), + [anon_sym_AMP_EQ] = ACTIONS(3158), + [anon_sym_CARET_EQ] = ACTIONS(3158), + [anon_sym_PIPE_EQ] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3158), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(3158), }, - [1581] = { - [sym__expression] = STATE(1330), - [sym__primary_expression] = STATE(538), + [1670] = { + [sym__expression] = STATE(1409), + [sym__primary_expression] = STATE(566), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -55806,7 +58179,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_lambda] = STATE(67), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), - [sym_slice] = STATE(1331), + [sym_slice] = STATE(1410), [sym_call] = STATE(61), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), @@ -55822,115 +58195,115 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(884), + [anon_sym_COLON] = ACTIONS(920), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_lambda] = ACTIONS(890), + [anon_sym_not] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(924), + [anon_sym_lambda] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(892), + [sym_string] = ACTIONS(928), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(894), + [anon_sym_await] = ACTIONS(930), [sym_comment] = ACTIONS(76), }, - [1582] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_GT_GT] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_COLON] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_SLASH] = ACTIONS(1603), - [anon_sym_PERCENT] = ACTIONS(1613), - [anon_sym_SLASH_SLASH] = ACTIONS(1613), - [anon_sym_STAR_STAR] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_LT_LT] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACK] = ACTIONS(2272), + [1671] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_COLON] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_PERCENT] = ACTIONS(1679), + [anon_sym_SLASH_SLASH] = ACTIONS(1679), + [anon_sym_STAR_STAR] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_CARET] = ACTIONS(1687), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACK] = ACTIONS(2380), [sym_comment] = ACTIONS(76), }, - [1583] = { - [aux_sym_dotted_name_repeat1] = STATE(1583), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_RPAREN] = ACTIONS(1639), - [anon_sym_COMMA] = ACTIONS(1639), - [anon_sym_as] = ACTIONS(1639), + [1672] = { + [aux_sym_dotted_name_repeat1] = STATE(1672), + [anon_sym_DOT] = ACTIONS(1719), + [anon_sym_RPAREN] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), [sym_comment] = ACTIONS(76), }, - [1584] = { - [anon_sym_RPAREN] = ACTIONS(1644), - [anon_sym_COMMA] = ACTIONS(1644), + [1673] = { + [anon_sym_RPAREN] = ACTIONS(1710), + [anon_sym_COMMA] = ACTIONS(1710), [sym_comment] = ACTIONS(76), }, - [1585] = { - [anon_sym_RPAREN] = ACTIONS(1644), - [anon_sym_COMMA] = ACTIONS(1644), - [anon_sym_as] = ACTIONS(2298), + [1674] = { + [anon_sym_RPAREN] = ACTIONS(1710), + [anon_sym_COMMA] = ACTIONS(1710), + [anon_sym_as] = ACTIONS(2406), [sym_comment] = ACTIONS(76), }, - [1586] = { - [sym_aliased_import] = STATE(1584), - [sym_dotted_name] = STATE(1585), - [anon_sym_RPAREN] = ACTIONS(1646), - [sym_identifier] = ACTIONS(1656), + [1675] = { + [sym_aliased_import] = STATE(1673), + [sym_dotted_name] = STATE(1674), + [anon_sym_RPAREN] = ACTIONS(1712), + [sym_identifier] = ACTIONS(1722), [sym_comment] = ACTIONS(76), }, - [1587] = { - [aux_sym__import_list_repeat1] = STATE(1587), - [anon_sym_RPAREN] = ACTIONS(1644), - [anon_sym_COMMA] = ACTIONS(3028), + [1676] = { + [aux_sym__import_list_repeat1] = STATE(1676), + [anon_sym_RPAREN] = ACTIONS(1710), + [anon_sym_COMMA] = ACTIONS(3162), [sym_comment] = ACTIONS(76), }, - [1588] = { - [anon_sym_RPAREN] = ACTIONS(1651), - [anon_sym_COMMA] = ACTIONS(1651), + [1677] = { + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_COMMA] = ACTIONS(1717), [sym_comment] = ACTIONS(76), }, - [1589] = { - [sym__newline] = ACTIONS(3031), + [1678] = { + [sym__newline] = ACTIONS(3165), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(3031), + [sym__semicolon] = ACTIONS(3165), }, - [1590] = { - [anon_sym_RPAREN] = ACTIONS(2741), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [1679] = { + [anon_sym_RPAREN] = ACTIONS(2869), + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [1591] = { - [sym__expression_within_for_in_clause] = STATE(1737), - [sym__expression] = STATE(1363), + [1680] = { + [sym__expression_within_for_in_clause] = STATE(1829), + [sym__expression] = STATE(1442), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -55938,7 +58311,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -55961,7 +58334,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(94), [anon_sym_DASH] = ACTIONS(94), [anon_sym_TILDE] = ACTIONS(94), - [anon_sym_lambda] = ACTIONS(2327), + [anon_sym_lambda] = ACTIONS(2435), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), @@ -55975,13 +58348,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(112), [sym_comment] = ACTIONS(76), }, - [1592] = { - [anon_sym_COLON] = ACTIONS(3033), + [1681] = { + [anon_sym_COLON] = ACTIONS(3167), [sym_comment] = ACTIONS(76), }, - [1593] = { - [sym__expression_within_for_in_clause] = STATE(1739), - [sym__expression] = STATE(1363), + [1682] = { + [sym__expression_within_for_in_clause] = STATE(1831), + [sym__expression] = STATE(1442), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -55989,7 +58362,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -56006,16 +58379,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(3035), + [anon_sym_RPAREN] = ACTIONS(3169), [anon_sym_print] = ACTIONS(90), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_for] = ACTIONS(3037), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), [anon_sym_exec] = ACTIONS(90), [anon_sym_not] = ACTIONS(92), [anon_sym_PLUS] = ACTIONS(94), [anon_sym_DASH] = ACTIONS(94), [anon_sym_TILDE] = ACTIONS(94), - [anon_sym_lambda] = ACTIONS(2327), + [anon_sym_lambda] = ACTIONS(2435), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), @@ -56029,25 +58402,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(112), [sym_comment] = ACTIONS(76), }, - [1594] = { - [aux_sym_for_in_clause_repeat1] = STATE(1741), - [anon_sym_RPAREN] = ACTIONS(3035), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), + [1683] = { + [aux_sym_for_in_clause_repeat1] = STATE(1833), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3169), [sym_comment] = ACTIONS(76), }, - [1595] = { - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(2333), - [anon_sym_or] = ACTIONS(2335), + [1684] = { + [anon_sym_RPAREN] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(2441), + [anon_sym_or] = ACTIONS(2443), [sym_comment] = ACTIONS(76), }, - [1596] = { - [sym__expression] = STATE(1742), - [sym__primary_expression] = STATE(1045), + [1685] = { + [sym__expression] = STATE(1834), + [sym__primary_expression] = STATE(1103), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -56072,181 +58445,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_lambda] = ACTIONS(1717), + [anon_sym_not] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), + [anon_sym_lambda] = ACTIONS(1783), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(1787), [sym_comment] = ACTIONS(76), }, - [1597] = { - [aux_sym_concatenated_string_repeat1] = STATE(1597), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [1686] = { + [aux_sym_concatenated_string_repeat1] = STATE(1686), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [1598] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(3043), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1687] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(3177), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1599] = { - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(2333), - [anon_sym_or] = ACTIONS(1550), + [1688] = { + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(2441), + [anon_sym_or] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [1600] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1689] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1601] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_SLASH_SLASH] = ACTIONS(2347), - [anon_sym_STAR_STAR] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1690] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2455), + [anon_sym_SLASH_SLASH] = ACTIONS(2455), + [anon_sym_STAR_STAR] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1602] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_GT_GT] = ACTIONS(2339), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_SLASH_SLASH] = ACTIONS(2347), - [anon_sym_STAR_STAR] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_CARET] = ACTIONS(2355), - [anon_sym_LT_LT] = ACTIONS(2339), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), + [1691] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2455), + [anon_sym_SLASH_SLASH] = ACTIONS(2455), + [anon_sym_STAR_STAR] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2459), + [anon_sym_AMP] = ACTIONS(2461), + [anon_sym_CARET] = ACTIONS(2463), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1603] = { - [sym__primary_expression] = STATE(1744), + [1692] = { + [sym__primary_expression] = STATE(1836), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -56265,13 +58638,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -56280,383 +58653,451 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1604] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_SLASH_SLASH] = ACTIONS(2347), - [anon_sym_STAR_STAR] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1693] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2455), + [anon_sym_SLASH_SLASH] = ACTIONS(2455), + [anon_sym_STAR_STAR] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1605] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_GT_GT] = ACTIONS(2339), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_SLASH_SLASH] = ACTIONS(2347), - [anon_sym_STAR_STAR] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_CARET] = ACTIONS(2355), - [anon_sym_LT_LT] = ACTIONS(2339), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1694] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2455), + [anon_sym_SLASH_SLASH] = ACTIONS(2455), + [anon_sym_STAR_STAR] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(2461), + [anon_sym_CARET] = ACTIONS(2463), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1606] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_GT_GT] = ACTIONS(2339), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_SLASH_SLASH] = ACTIONS(2347), - [anon_sym_STAR_STAR] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(2355), - [anon_sym_LT_LT] = ACTIONS(2339), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1695] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2455), + [anon_sym_SLASH_SLASH] = ACTIONS(2455), + [anon_sym_STAR_STAR] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(2463), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1607] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_GT_GT] = ACTIONS(2339), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_SLASH_SLASH] = ACTIONS(2347), - [anon_sym_STAR_STAR] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(2339), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1696] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2455), + [anon_sym_SLASH_SLASH] = ACTIONS(2455), + [anon_sym_STAR_STAR] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1608] = { - [aux_sym_comparison_operator_repeat1] = STATE(1608), - [anon_sym_RPAREN] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(3045), - [anon_sym_not] = ACTIONS(3048), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_EQ_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_LT_GT] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3054), + [1697] = { + [aux_sym_comparison_operator_repeat1] = STATE(1697), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(3179), + [anon_sym_not] = ACTIONS(3182), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3179), + [anon_sym_EQ_EQ] = ACTIONS(3179), + [anon_sym_BANG_EQ] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_LT_GT] = ACTIONS(3179), + [anon_sym_is] = ACTIONS(3188), [sym_comment] = ACTIONS(76), }, - [1609] = { - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_as] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_GT_GT] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_COLON] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_in] = ACTIONS(3018), - [anon_sym_EQ] = ACTIONS(3020), - [anon_sym_not] = ACTIONS(3018), - [anon_sym_and] = ACTIONS(3018), - [anon_sym_or] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_SLASH] = ACTIONS(3020), - [anon_sym_PERCENT] = ACTIONS(3018), - [anon_sym_SLASH_SLASH] = ACTIONS(3018), - [anon_sym_STAR_STAR] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_CARET] = ACTIONS(3018), - [anon_sym_LT_LT] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_GT] = ACTIONS(3020), - [anon_sym_LT_GT] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_RBRACK] = ACTIONS(3018), - [anon_sym_RBRACE] = ACTIONS(3018), + [1698] = { + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_RPAREN] = ACTIONS(3152), + [anon_sym_COMMA] = ACTIONS(3152), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3154), + [anon_sym_GT_GT] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_COLON] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3154), + [anon_sym_not] = ACTIONS(3152), + [anon_sym_and] = ACTIONS(3152), + [anon_sym_or] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_SLASH_SLASH] = ACTIONS(3152), + [anon_sym_STAR_STAR] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3152), + [anon_sym_CARET] = ACTIONS(3152), + [anon_sym_LT_LT] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_GT_EQ] = ACTIONS(3152), + [anon_sym_GT] = ACTIONS(3154), + [anon_sym_LT_GT] = ACTIONS(3152), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_RBRACK] = ACTIONS(3152), + [anon_sym_RBRACE] = ACTIONS(3152), [sym_comment] = ACTIONS(76), }, - [1610] = { - [anon_sym_DOT] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(3024), - [anon_sym_RPAREN] = ACTIONS(3024), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_as] = ACTIONS(3024), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_GT_GT] = ACTIONS(3024), - [anon_sym_if] = ACTIONS(3024), - [anon_sym_COLON] = ACTIONS(3024), - [anon_sym_else] = ACTIONS(3024), - [anon_sym_for] = ACTIONS(3024), - [anon_sym_in] = ACTIONS(3024), - [anon_sym_EQ] = ACTIONS(3026), - [anon_sym_not] = ACTIONS(3024), - [anon_sym_and] = ACTIONS(3024), - [anon_sym_or] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3024), - [anon_sym_DASH] = ACTIONS(3024), - [anon_sym_SLASH] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3024), - [anon_sym_SLASH_SLASH] = ACTIONS(3024), - [anon_sym_STAR_STAR] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3024), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_CARET] = ACTIONS(3024), - [anon_sym_LT_LT] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_GT] = ACTIONS(3026), - [anon_sym_LT_GT] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3024), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_RBRACK] = ACTIONS(3024), - [anon_sym_RBRACE] = ACTIONS(3024), + [1699] = { + [anon_sym_DOT] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3158), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_as] = ACTIONS(3158), + [anon_sym_STAR] = ACTIONS(3160), + [anon_sym_GT_GT] = ACTIONS(3158), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_COLON] = ACTIONS(3158), + [anon_sym_else] = ACTIONS(3158), + [anon_sym_for] = ACTIONS(3158), + [anon_sym_in] = ACTIONS(3158), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3158), + [anon_sym_and] = ACTIONS(3158), + [anon_sym_or] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(3158), + [anon_sym_STAR_STAR] = ACTIONS(3158), + [anon_sym_PIPE] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3158), + [anon_sym_CARET] = ACTIONS(3158), + [anon_sym_LT_LT] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_LT_EQ] = ACTIONS(3158), + [anon_sym_EQ_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3158), + [anon_sym_GT_EQ] = ACTIONS(3158), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_LT_GT] = ACTIONS(3158), + [anon_sym_is] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3158), [sym_comment] = ACTIONS(76), }, - [1611] = { - [sym__newline] = ACTIONS(3018), - [anon_sym_from] = ACTIONS(3018), - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_GT_GT] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_in] = ACTIONS(3018), - [anon_sym_not] = ACTIONS(3018), - [anon_sym_and] = ACTIONS(3018), - [anon_sym_or] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_SLASH] = ACTIONS(3020), - [anon_sym_PERCENT] = ACTIONS(3018), - [anon_sym_SLASH_SLASH] = ACTIONS(3018), - [anon_sym_STAR_STAR] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_CARET] = ACTIONS(3018), - [anon_sym_LT_LT] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3020), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_GT] = ACTIONS(3020), - [anon_sym_LT_GT] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(3018), + [1700] = { + [sym__newline] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_COMMA] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3154), + [anon_sym_GT_GT] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3152), + [anon_sym_and] = ACTIONS(3152), + [anon_sym_or] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_SLASH_SLASH] = ACTIONS(3152), + [anon_sym_STAR_STAR] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3152), + [anon_sym_CARET] = ACTIONS(3152), + [anon_sym_LT_LT] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_GT_EQ] = ACTIONS(3152), + [anon_sym_GT] = ACTIONS(3154), + [anon_sym_LT_GT] = ACTIONS(3152), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3152), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(3152), }, - [1612] = { - [sym__newline] = ACTIONS(3024), - [anon_sym_from] = ACTIONS(3024), - [anon_sym_DOT] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(3024), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_GT_GT] = ACTIONS(3024), - [anon_sym_if] = ACTIONS(3024), - [anon_sym_in] = ACTIONS(3024), - [anon_sym_not] = ACTIONS(3024), - [anon_sym_and] = ACTIONS(3024), - [anon_sym_or] = ACTIONS(3024), - [anon_sym_PLUS] = ACTIONS(3024), - [anon_sym_DASH] = ACTIONS(3024), - [anon_sym_SLASH] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3024), - [anon_sym_SLASH_SLASH] = ACTIONS(3024), - [anon_sym_STAR_STAR] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3024), - [anon_sym_AMP] = ACTIONS(3024), - [anon_sym_CARET] = ACTIONS(3024), - [anon_sym_LT_LT] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_EQ_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_GT] = ACTIONS(3026), - [anon_sym_LT_GT] = ACTIONS(3024), - [anon_sym_is] = ACTIONS(3024), - [anon_sym_LBRACK] = ACTIONS(3024), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(3024), + [1701] = { + [sym__newline] = ACTIONS(3158), + [anon_sym_DOT] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3158), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_STAR] = ACTIONS(3160), + [anon_sym_GT_GT] = ACTIONS(3158), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_in] = ACTIONS(3158), + [anon_sym_not] = ACTIONS(3158), + [anon_sym_and] = ACTIONS(3158), + [anon_sym_or] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(3158), + [anon_sym_STAR_STAR] = ACTIONS(3158), + [anon_sym_PIPE] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3158), + [anon_sym_CARET] = ACTIONS(3158), + [anon_sym_LT_LT] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_LT_EQ] = ACTIONS(3158), + [anon_sym_EQ_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3158), + [anon_sym_GT_EQ] = ACTIONS(3158), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_LT_GT] = ACTIONS(3158), + [anon_sym_is] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3158), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(3158), }, - [1613] = { - [sym__newline] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_and] = ACTIONS(1166), - [anon_sym_or] = ACTIONS(1168), + [1702] = { + [sym__newline] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_and] = ACTIONS(1202), + [anon_sym_or] = ACTIONS(1204), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(2741), + [sym__semicolon] = ACTIONS(2869), }, - [1614] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_from] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_print] = ACTIONS(1835), - [anon_sym_assert] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_del] = ACTIONS(1835), - [anon_sym_raise] = ACTIONS(1835), - [sym_pass_statement] = ACTIONS(1835), - [sym_break_statement] = ACTIONS(1835), - [sym_continue_statement] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_elif] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_global] = ACTIONS(1835), - [anon_sym_nonlocal] = ACTIONS(1835), - [anon_sym_exec] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_lambda] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), - [sym_ellipsis] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1833), - [sym_string] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_none] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1835), + [1703] = { + [sym__newline] = ACTIONS(3152), + [anon_sym_from] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_COMMA] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3154), + [anon_sym_GT_GT] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_not] = ACTIONS(3152), + [anon_sym_and] = ACTIONS(3152), + [anon_sym_or] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_SLASH_SLASH] = ACTIONS(3152), + [anon_sym_STAR_STAR] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3152), + [anon_sym_CARET] = ACTIONS(3152), + [anon_sym_LT_LT] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_GT_EQ] = ACTIONS(3152), + [anon_sym_GT] = ACTIONS(3154), + [anon_sym_LT_GT] = ACTIONS(3152), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3152), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(3152), + }, + [1704] = { + [sym__newline] = ACTIONS(3158), + [anon_sym_from] = ACTIONS(3158), + [anon_sym_DOT] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3158), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_STAR] = ACTIONS(3160), + [anon_sym_GT_GT] = ACTIONS(3158), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_in] = ACTIONS(3158), + [anon_sym_not] = ACTIONS(3158), + [anon_sym_and] = ACTIONS(3158), + [anon_sym_or] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(3158), + [anon_sym_STAR_STAR] = ACTIONS(3158), + [anon_sym_PIPE] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3158), + [anon_sym_CARET] = ACTIONS(3158), + [anon_sym_LT_LT] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_LT_EQ] = ACTIONS(3158), + [anon_sym_EQ_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3158), + [anon_sym_GT_EQ] = ACTIONS(3158), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_LT_GT] = ACTIONS(3158), + [anon_sym_is] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3158), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(3158), + }, + [1705] = { + [ts_builtin_sym_end] = ACTIONS(1934), + [anon_sym_import] = ACTIONS(1936), + [anon_sym_from] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_print] = ACTIONS(1936), + [anon_sym_assert] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_del] = ACTIONS(1936), + [anon_sym_raise] = ACTIONS(1936), + [sym_pass_statement] = ACTIONS(1936), + [sym_break_statement] = ACTIONS(1936), + [sym_continue_statement] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_elif] = ACTIONS(1936), + [anon_sym_else] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_try] = ACTIONS(1936), + [anon_sym_with] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_def] = ACTIONS(1936), + [anon_sym_global] = ACTIONS(1936), + [anon_sym_nonlocal] = ACTIONS(1936), + [anon_sym_exec] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_lambda] = ACTIONS(1936), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1934), + [sym_ellipsis] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_string] = ACTIONS(1936), + [sym_integer] = ACTIONS(1936), + [sym_float] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_none] = ACTIONS(1936), + [anon_sym_await] = ACTIONS(1936), [sym_comment] = ACTIONS(76), }, - [1615] = { - [sym__simple_statements] = STATE(712), - [sym_import_statement] = STATE(711), - [sym_import_from_statement] = STATE(711), - [sym_print_statement] = STATE(711), - [sym_assert_statement] = STATE(711), - [sym_expression_statement] = STATE(711), - [sym_return_statement] = STATE(711), - [sym_delete_statement] = STATE(711), - [sym_raise_statement] = STATE(711), - [sym_global_statement] = STATE(711), - [sym_nonlocal_statement] = STATE(711), - [sym_exec_statement] = STATE(711), - [sym__suite] = STATE(1745), + [1706] = { + [sym__simple_statements] = STATE(766), + [sym_import_statement] = STATE(765), + [sym_import_from_statement] = STATE(765), + [sym_print_statement] = STATE(765), + [sym_assert_statement] = STATE(765), + [sym_expression_statement] = STATE(765), + [sym_return_statement] = STATE(765), + [sym_delete_statement] = STATE(765), + [sym_raise_statement] = STATE(765), + [sym_global_statement] = STATE(765), + [sym_nonlocal_statement] = STATE(765), + [sym_exec_statement] = STATE(765), + [sym__suite] = STATE(1837), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -56684,7 +59125,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(1219), + [sym__indent] = ACTIONS(1279), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -56693,9 +59134,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1221), - [sym_break_statement] = ACTIONS(1221), - [sym_continue_statement] = ACTIONS(1221), + [sym_pass_statement] = ACTIONS(1281), + [sym_break_statement] = ACTIONS(1281), + [sym_continue_statement] = ACTIONS(1281), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -56718,97 +59159,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1616] = { - [ts_builtin_sym_end] = ACTIONS(3057), - [anon_sym_import] = ACTIONS(3059), - [anon_sym_from] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym_print] = ACTIONS(3059), - [anon_sym_assert] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_del] = ACTIONS(3059), - [anon_sym_raise] = ACTIONS(3059), - [sym_pass_statement] = ACTIONS(3059), - [sym_break_statement] = ACTIONS(3059), - [sym_continue_statement] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_for] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3059), - [anon_sym_try] = ACTIONS(3059), - [anon_sym_with] = ACTIONS(3059), - [anon_sym_async] = ACTIONS(3059), - [anon_sym_def] = ACTIONS(3059), - [anon_sym_global] = ACTIONS(3059), - [anon_sym_nonlocal] = ACTIONS(3059), - [anon_sym_exec] = ACTIONS(3059), - [anon_sym_class] = ACTIONS(3059), - [anon_sym_AT] = ACTIONS(3057), - [anon_sym_not] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_lambda] = ACTIONS(3059), - [anon_sym_yield] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3057), - [sym_ellipsis] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [sym_string] = ACTIONS(3059), - [sym_integer] = ACTIONS(3059), - [sym_float] = ACTIONS(3059), - [sym_identifier] = ACTIONS(3061), - [sym_true] = ACTIONS(3059), - [sym_false] = ACTIONS(3059), - [sym_none] = ACTIONS(3059), - [anon_sym_await] = ACTIONS(3059), + [1707] = { + [ts_builtin_sym_end] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_from] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_print] = ACTIONS(3193), + [anon_sym_assert] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_del] = ACTIONS(3193), + [anon_sym_raise] = ACTIONS(3193), + [sym_pass_statement] = ACTIONS(3193), + [sym_break_statement] = ACTIONS(3193), + [sym_continue_statement] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_with] = ACTIONS(3193), + [anon_sym_async] = ACTIONS(3193), + [anon_sym_def] = ACTIONS(3193), + [anon_sym_global] = ACTIONS(3193), + [anon_sym_nonlocal] = ACTIONS(3193), + [anon_sym_exec] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3191), + [anon_sym_not] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_lambda] = ACTIONS(3193), + [anon_sym_yield] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3191), + [sym_ellipsis] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [sym_string] = ACTIONS(3193), + [sym_integer] = ACTIONS(3193), + [sym_float] = ACTIONS(3193), + [sym_identifier] = ACTIONS(3195), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_none] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3193), [sym_comment] = ACTIONS(76), }, - [1617] = { - [ts_builtin_sym_end] = ACTIONS(3063), - [anon_sym_import] = ACTIONS(3065), - [anon_sym_from] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3063), - [anon_sym_print] = ACTIONS(3065), - [anon_sym_assert] = ACTIONS(3065), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_del] = ACTIONS(3065), - [anon_sym_raise] = ACTIONS(3065), - [sym_pass_statement] = ACTIONS(3065), - [sym_break_statement] = ACTIONS(3065), - [sym_continue_statement] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_for] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3065), - [anon_sym_try] = ACTIONS(3065), - [anon_sym_with] = ACTIONS(3065), - [anon_sym_async] = ACTIONS(3065), - [anon_sym_def] = ACTIONS(3065), - [anon_sym_global] = ACTIONS(3065), - [anon_sym_nonlocal] = ACTIONS(3065), - [anon_sym_exec] = ACTIONS(3065), - [anon_sym_class] = ACTIONS(3065), - [anon_sym_AT] = ACTIONS(3063), - [anon_sym_not] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_lambda] = ACTIONS(3065), - [anon_sym_yield] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3063), - [sym_ellipsis] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3063), - [sym_string] = ACTIONS(3065), - [sym_integer] = ACTIONS(3065), - [sym_float] = ACTIONS(3065), - [sym_identifier] = ACTIONS(3067), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [sym_none] = ACTIONS(3065), - [anon_sym_await] = ACTIONS(3065), + [1708] = { + [ts_builtin_sym_end] = ACTIONS(3197), + [anon_sym_import] = ACTIONS(3199), + [anon_sym_from] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_print] = ACTIONS(3199), + [anon_sym_assert] = ACTIONS(3199), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_del] = ACTIONS(3199), + [anon_sym_raise] = ACTIONS(3199), + [sym_pass_statement] = ACTIONS(3199), + [sym_break_statement] = ACTIONS(3199), + [sym_continue_statement] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_while] = ACTIONS(3199), + [anon_sym_try] = ACTIONS(3199), + [anon_sym_with] = ACTIONS(3199), + [anon_sym_async] = ACTIONS(3199), + [anon_sym_def] = ACTIONS(3199), + [anon_sym_global] = ACTIONS(3199), + [anon_sym_nonlocal] = ACTIONS(3199), + [anon_sym_exec] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3199), + [anon_sym_AT] = ACTIONS(3197), + [anon_sym_not] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_lambda] = ACTIONS(3199), + [anon_sym_yield] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3197), + [sym_ellipsis] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3197), + [sym_string] = ACTIONS(3199), + [sym_integer] = ACTIONS(3199), + [sym_float] = ACTIONS(3199), + [sym_identifier] = ACTIONS(3201), + [sym_true] = ACTIONS(3199), + [sym_false] = ACTIONS(3199), + [sym_none] = ACTIONS(3199), + [anon_sym_await] = ACTIONS(3199), [sym_comment] = ACTIONS(76), }, - [1618] = { - [sym__expression] = STATE(1409), - [sym__primary_expression] = STATE(415), + [1709] = { + [sym__expression] = STATE(1496), + [sym__primary_expression] = STATE(443), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -56833,137 +59274,137 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_lambda] = ACTIONS(704), + [anon_sym_not] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_lambda] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(706), + [sym_string] = ACTIONS(742), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(708), + [anon_sym_await] = ACTIONS(744), [sym_comment] = ACTIONS(76), }, - [1619] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_from] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_print] = ACTIONS(1835), - [anon_sym_assert] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_del] = ACTIONS(1835), - [anon_sym_raise] = ACTIONS(1835), - [sym_pass_statement] = ACTIONS(1835), - [sym_break_statement] = ACTIONS(1835), - [sym_continue_statement] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_global] = ACTIONS(1835), - [anon_sym_nonlocal] = ACTIONS(1835), - [anon_sym_exec] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_lambda] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), - [sym_ellipsis] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1833), - [sym_string] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_none] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1835), + [1710] = { + [ts_builtin_sym_end] = ACTIONS(1934), + [anon_sym_import] = ACTIONS(1936), + [anon_sym_from] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_print] = ACTIONS(1936), + [anon_sym_assert] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_del] = ACTIONS(1936), + [anon_sym_raise] = ACTIONS(1936), + [sym_pass_statement] = ACTIONS(1936), + [sym_break_statement] = ACTIONS(1936), + [sym_continue_statement] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_else] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_try] = ACTIONS(1936), + [anon_sym_with] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_def] = ACTIONS(1936), + [anon_sym_global] = ACTIONS(1936), + [anon_sym_nonlocal] = ACTIONS(1936), + [anon_sym_exec] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_lambda] = ACTIONS(1936), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1934), + [sym_ellipsis] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_string] = ACTIONS(1936), + [sym_integer] = ACTIONS(1936), + [sym_float] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_none] = ACTIONS(1936), + [anon_sym_await] = ACTIONS(1936), [sym_comment] = ACTIONS(76), }, - [1620] = { - [sym__dedent] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_from] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_print] = ACTIONS(1835), - [anon_sym_assert] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_del] = ACTIONS(1835), - [anon_sym_raise] = ACTIONS(1835), - [sym_pass_statement] = ACTIONS(1835), - [sym_break_statement] = ACTIONS(1835), - [sym_continue_statement] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_global] = ACTIONS(1835), - [anon_sym_nonlocal] = ACTIONS(1835), - [anon_sym_exec] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_lambda] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), - [sym_ellipsis] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1833), - [sym_string] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_none] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1835), + [1711] = { + [sym__dedent] = ACTIONS(1934), + [anon_sym_import] = ACTIONS(1936), + [anon_sym_from] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_print] = ACTIONS(1936), + [anon_sym_assert] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_del] = ACTIONS(1936), + [anon_sym_raise] = ACTIONS(1936), + [sym_pass_statement] = ACTIONS(1936), + [sym_break_statement] = ACTIONS(1936), + [sym_continue_statement] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_try] = ACTIONS(1936), + [anon_sym_with] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_def] = ACTIONS(1936), + [anon_sym_global] = ACTIONS(1936), + [anon_sym_nonlocal] = ACTIONS(1936), + [anon_sym_exec] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_lambda] = ACTIONS(1936), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1934), + [sym_ellipsis] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_string] = ACTIONS(1936), + [sym_integer] = ACTIONS(1936), + [sym_float] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_none] = ACTIONS(1936), + [anon_sym_await] = ACTIONS(1936), [sym_comment] = ACTIONS(76), }, - [1621] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [1712] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -56992,9 +59433,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1747), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(3069), + [aux_sym_module_repeat1] = STATE(1839), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(3203), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -57003,20 +59444,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -57037,135 +59478,135 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1622] = { - [aux_sym__simple_statements_repeat1] = STATE(1750), - [sym__newline] = ACTIONS(3071), + [1713] = { + [aux_sym__simple_statements_repeat1] = STATE(1842), + [sym__newline] = ACTIONS(3205), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(3073), + [sym__semicolon] = ACTIONS(3207), }, - [1623] = { - [sym__dedent] = ACTIONS(1261), - [anon_sym_import] = ACTIONS(1263), - [anon_sym_from] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_print] = ACTIONS(1263), - [anon_sym_assert] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_del] = ACTIONS(1263), - [anon_sym_raise] = ACTIONS(1263), - [sym_pass_statement] = ACTIONS(1263), - [sym_break_statement] = ACTIONS(1263), - [sym_continue_statement] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_elif] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_with] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_global] = ACTIONS(1263), - [anon_sym_nonlocal] = ACTIONS(1263), - [anon_sym_exec] = ACTIONS(1263), - [anon_sym_class] = ACTIONS(1263), - [anon_sym_AT] = ACTIONS(1261), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_yield] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1261), - [sym_ellipsis] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [sym_string] = ACTIONS(1263), - [sym_integer] = ACTIONS(1263), - [sym_float] = ACTIONS(1263), - [sym_identifier] = ACTIONS(1265), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [sym_none] = ACTIONS(1263), - [anon_sym_await] = ACTIONS(1263), + [1714] = { + [sym__dedent] = ACTIONS(1321), + [anon_sym_import] = ACTIONS(1323), + [anon_sym_from] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_print] = ACTIONS(1323), + [anon_sym_assert] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_del] = ACTIONS(1323), + [anon_sym_raise] = ACTIONS(1323), + [sym_pass_statement] = ACTIONS(1323), + [sym_break_statement] = ACTIONS(1323), + [sym_continue_statement] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_elif] = ACTIONS(1323), + [anon_sym_else] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_try] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1323), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(1323), + [anon_sym_global] = ACTIONS(1323), + [anon_sym_nonlocal] = ACTIONS(1323), + [anon_sym_exec] = ACTIONS(1323), + [anon_sym_class] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(1321), + [anon_sym_not] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_lambda] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1321), + [sym_ellipsis] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [sym_string] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [sym_identifier] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [sym_none] = ACTIONS(1323), + [anon_sym_await] = ACTIONS(1323), [sym_comment] = ACTIONS(76), }, - [1624] = { - [sym_elif_clause] = STATE(1753), - [sym_else_clause] = STATE(1754), - [aux_sym_if_statement_repeat1] = STATE(1755), - [sym__dedent] = ACTIONS(1847), - [anon_sym_import] = ACTIONS(1849), - [anon_sym_from] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_print] = ACTIONS(1849), - [anon_sym_assert] = ACTIONS(1849), - [anon_sym_return] = ACTIONS(1849), - [anon_sym_del] = ACTIONS(1849), - [anon_sym_raise] = ACTIONS(1849), - [sym_pass_statement] = ACTIONS(1849), - [sym_break_statement] = ACTIONS(1849), - [sym_continue_statement] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_elif] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_while] = ACTIONS(1849), - [anon_sym_try] = ACTIONS(1849), - [anon_sym_with] = ACTIONS(1849), - [anon_sym_async] = ACTIONS(1849), - [anon_sym_def] = ACTIONS(1849), - [anon_sym_global] = ACTIONS(1849), - [anon_sym_nonlocal] = ACTIONS(1849), - [anon_sym_exec] = ACTIONS(1849), - [anon_sym_class] = ACTIONS(1849), - [anon_sym_AT] = ACTIONS(1847), - [anon_sym_not] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_lambda] = ACTIONS(1849), - [anon_sym_yield] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1847), - [sym_ellipsis] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1847), - [sym_string] = ACTIONS(1849), - [sym_integer] = ACTIONS(1849), - [sym_float] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1855), - [sym_true] = ACTIONS(1849), - [sym_false] = ACTIONS(1849), - [sym_none] = ACTIONS(1849), - [anon_sym_await] = ACTIONS(1849), + [1715] = { + [sym_elif_clause] = STATE(1845), + [sym_else_clause] = STATE(1846), + [aux_sym_if_statement_repeat1] = STATE(1847), + [sym__dedent] = ACTIONS(1948), + [anon_sym_import] = ACTIONS(1950), + [anon_sym_from] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1948), + [anon_sym_print] = ACTIONS(1950), + [anon_sym_assert] = ACTIONS(1950), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_del] = ACTIONS(1950), + [anon_sym_raise] = ACTIONS(1950), + [sym_pass_statement] = ACTIONS(1950), + [sym_break_statement] = ACTIONS(1950), + [sym_continue_statement] = ACTIONS(1950), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_elif] = ACTIONS(3209), + [anon_sym_else] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(1950), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_try] = ACTIONS(1950), + [anon_sym_with] = ACTIONS(1950), + [anon_sym_async] = ACTIONS(1950), + [anon_sym_def] = ACTIONS(1950), + [anon_sym_global] = ACTIONS(1950), + [anon_sym_nonlocal] = ACTIONS(1950), + [anon_sym_exec] = ACTIONS(1950), + [anon_sym_class] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [anon_sym_not] = ACTIONS(1950), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_lambda] = ACTIONS(1950), + [anon_sym_yield] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1948), + [sym_ellipsis] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1948), + [sym_string] = ACTIONS(1950), + [sym_integer] = ACTIONS(1950), + [sym_float] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1956), + [sym_true] = ACTIONS(1950), + [sym_false] = ACTIONS(1950), + [sym_none] = ACTIONS(1950), + [anon_sym_await] = ACTIONS(1950), [sym_comment] = ACTIONS(76), }, - [1625] = { - [anon_sym_COLON] = ACTIONS(3079), + [1716] = { + [anon_sym_COLON] = ACTIONS(3213), [sym_comment] = ACTIONS(76), }, - [1626] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [1717] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -57194,9 +59635,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1758), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(3081), + [aux_sym_module_repeat1] = STATE(1850), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(3215), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -57205,20 +59646,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -57239,106 +59680,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1627] = { - [aux_sym__simple_statements_repeat1] = STATE(1761), - [sym__newline] = ACTIONS(3083), + [1718] = { + [aux_sym__simple_statements_repeat1] = STATE(1853), + [sym__newline] = ACTIONS(3217), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(3085), + [sym__semicolon] = ACTIONS(3219), }, - [1628] = { - [sym__dedent] = ACTIONS(1261), - [anon_sym_import] = ACTIONS(1263), - [anon_sym_from] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_print] = ACTIONS(1263), - [anon_sym_assert] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_del] = ACTIONS(1263), - [anon_sym_raise] = ACTIONS(1263), - [sym_pass_statement] = ACTIONS(1263), - [sym_break_statement] = ACTIONS(1263), - [sym_continue_statement] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_with] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_global] = ACTIONS(1263), - [anon_sym_nonlocal] = ACTIONS(1263), - [anon_sym_exec] = ACTIONS(1263), - [anon_sym_class] = ACTIONS(1263), - [anon_sym_AT] = ACTIONS(1261), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_yield] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1261), - [sym_ellipsis] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [sym_string] = ACTIONS(1263), - [sym_integer] = ACTIONS(1263), - [sym_float] = ACTIONS(1263), - [sym_identifier] = ACTIONS(1265), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [sym_none] = ACTIONS(1263), - [anon_sym_await] = ACTIONS(1263), + [1719] = { + [sym__dedent] = ACTIONS(1321), + [anon_sym_import] = ACTIONS(1323), + [anon_sym_from] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_print] = ACTIONS(1323), + [anon_sym_assert] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_del] = ACTIONS(1323), + [anon_sym_raise] = ACTIONS(1323), + [sym_pass_statement] = ACTIONS(1323), + [sym_break_statement] = ACTIONS(1323), + [sym_continue_statement] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_else] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_try] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1323), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(1323), + [anon_sym_global] = ACTIONS(1323), + [anon_sym_nonlocal] = ACTIONS(1323), + [anon_sym_exec] = ACTIONS(1323), + [anon_sym_class] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(1321), + [anon_sym_not] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_lambda] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1321), + [sym_ellipsis] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [sym_string] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [sym_identifier] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [sym_none] = ACTIONS(1323), + [anon_sym_await] = ACTIONS(1323), [sym_comment] = ACTIONS(76), }, - [1629] = { - [sym_else_clause] = STATE(1762), - [sym__dedent] = ACTIONS(1886), - [anon_sym_import] = ACTIONS(1888), - [anon_sym_from] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_print] = ACTIONS(1888), - [anon_sym_assert] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_del] = ACTIONS(1888), - [anon_sym_raise] = ACTIONS(1888), - [sym_pass_statement] = ACTIONS(1888), - [sym_break_statement] = ACTIONS(1888), - [sym_continue_statement] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_else] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_try] = ACTIONS(1888), - [anon_sym_with] = ACTIONS(1888), - [anon_sym_async] = ACTIONS(1888), - [anon_sym_def] = ACTIONS(1888), - [anon_sym_global] = ACTIONS(1888), - [anon_sym_nonlocal] = ACTIONS(1888), - [anon_sym_exec] = ACTIONS(1888), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_AT] = ACTIONS(1886), - [anon_sym_not] = ACTIONS(1888), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_TILDE] = ACTIONS(1886), - [anon_sym_lambda] = ACTIONS(1888), - [anon_sym_yield] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1886), - [sym_ellipsis] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [sym_string] = ACTIONS(1888), - [sym_integer] = ACTIONS(1888), - [sym_float] = ACTIONS(1888), - [sym_identifier] = ACTIONS(1890), - [sym_true] = ACTIONS(1888), - [sym_false] = ACTIONS(1888), - [sym_none] = ACTIONS(1888), - [anon_sym_await] = ACTIONS(1888), + [1720] = { + [sym_else_clause] = STATE(1854), + [sym__dedent] = ACTIONS(1987), + [anon_sym_import] = ACTIONS(1989), + [anon_sym_from] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_print] = ACTIONS(1989), + [anon_sym_assert] = ACTIONS(1989), + [anon_sym_return] = ACTIONS(1989), + [anon_sym_del] = ACTIONS(1989), + [anon_sym_raise] = ACTIONS(1989), + [sym_pass_statement] = ACTIONS(1989), + [sym_break_statement] = ACTIONS(1989), + [sym_continue_statement] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1989), + [anon_sym_else] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(1989), + [anon_sym_while] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(1989), + [anon_sym_with] = ACTIONS(1989), + [anon_sym_async] = ACTIONS(1989), + [anon_sym_def] = ACTIONS(1989), + [anon_sym_global] = ACTIONS(1989), + [anon_sym_nonlocal] = ACTIONS(1989), + [anon_sym_exec] = ACTIONS(1989), + [anon_sym_class] = ACTIONS(1989), + [anon_sym_AT] = ACTIONS(1987), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_TILDE] = ACTIONS(1987), + [anon_sym_lambda] = ACTIONS(1989), + [anon_sym_yield] = ACTIONS(1989), + [anon_sym_LBRACK] = ACTIONS(1987), + [sym_ellipsis] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1987), + [sym_string] = ACTIONS(1989), + [sym_integer] = ACTIONS(1989), + [sym_float] = ACTIONS(1989), + [sym_identifier] = ACTIONS(1991), + [sym_true] = ACTIONS(1989), + [sym_false] = ACTIONS(1989), + [sym_none] = ACTIONS(1989), + [anon_sym_await] = ACTIONS(1989), [sym_comment] = ACTIONS(76), }, - [1630] = { - [sym__expression] = STATE(1764), - [sym__primary_expression] = STATE(119), + [1721] = { + [sym__expression] = STATE(1856), + [sym__primary_expression] = STATE(125), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -57362,196 +59803,196 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_COLON] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3221), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_lambda] = ACTIONS(184), + [anon_sym_not] = ACTIONS(194), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_lambda] = ACTIONS(198), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(186), + [sym_string] = ACTIONS(200), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(188), + [anon_sym_await] = ACTIONS(202), [sym_comment] = ACTIONS(76), }, - [1631] = { - [anon_sym_COLON] = ACTIONS(3089), + [1722] = { + [anon_sym_COLON] = ACTIONS(3223), [sym_comment] = ACTIONS(76), }, - [1632] = { - [sym__dedent] = ACTIONS(1924), - [anon_sym_import] = ACTIONS(1926), - [anon_sym_from] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1924), - [anon_sym_print] = ACTIONS(1926), - [anon_sym_assert] = ACTIONS(1926), - [anon_sym_return] = ACTIONS(1926), - [anon_sym_del] = ACTIONS(1926), - [anon_sym_raise] = ACTIONS(1926), - [sym_pass_statement] = ACTIONS(1926), - [sym_break_statement] = ACTIONS(1926), - [sym_continue_statement] = ACTIONS(1926), - [anon_sym_if] = ACTIONS(1926), - [anon_sym_else] = ACTIONS(1926), - [anon_sym_for] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1926), - [anon_sym_try] = ACTIONS(1926), - [anon_sym_except] = ACTIONS(1926), - [anon_sym_finally] = ACTIONS(1926), - [anon_sym_with] = ACTIONS(1926), - [anon_sym_async] = ACTIONS(1926), - [anon_sym_def] = ACTIONS(1926), - [anon_sym_global] = ACTIONS(1926), - [anon_sym_nonlocal] = ACTIONS(1926), - [anon_sym_exec] = ACTIONS(1926), - [anon_sym_class] = ACTIONS(1926), - [anon_sym_AT] = ACTIONS(1924), - [anon_sym_not] = ACTIONS(1926), - [anon_sym_PLUS] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1924), - [anon_sym_TILDE] = ACTIONS(1924), - [anon_sym_lambda] = ACTIONS(1926), - [anon_sym_yield] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1924), - [sym_ellipsis] = ACTIONS(1924), - [anon_sym_LBRACE] = ACTIONS(1924), - [sym_string] = ACTIONS(1926), - [sym_integer] = ACTIONS(1926), - [sym_float] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [sym_true] = ACTIONS(1926), - [sym_false] = ACTIONS(1926), - [sym_none] = ACTIONS(1926), - [anon_sym_await] = ACTIONS(1926), + [1723] = { + [sym__dedent] = ACTIONS(2025), + [anon_sym_import] = ACTIONS(2027), + [anon_sym_from] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_print] = ACTIONS(2027), + [anon_sym_assert] = ACTIONS(2027), + [anon_sym_return] = ACTIONS(2027), + [anon_sym_del] = ACTIONS(2027), + [anon_sym_raise] = ACTIONS(2027), + [sym_pass_statement] = ACTIONS(2027), + [sym_break_statement] = ACTIONS(2027), + [sym_continue_statement] = ACTIONS(2027), + [anon_sym_if] = ACTIONS(2027), + [anon_sym_else] = ACTIONS(2027), + [anon_sym_for] = ACTIONS(2027), + [anon_sym_while] = ACTIONS(2027), + [anon_sym_try] = ACTIONS(2027), + [anon_sym_except] = ACTIONS(2027), + [anon_sym_finally] = ACTIONS(2027), + [anon_sym_with] = ACTIONS(2027), + [anon_sym_async] = ACTIONS(2027), + [anon_sym_def] = ACTIONS(2027), + [anon_sym_global] = ACTIONS(2027), + [anon_sym_nonlocal] = ACTIONS(2027), + [anon_sym_exec] = ACTIONS(2027), + [anon_sym_class] = ACTIONS(2027), + [anon_sym_AT] = ACTIONS(2025), + [anon_sym_not] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_TILDE] = ACTIONS(2025), + [anon_sym_lambda] = ACTIONS(2027), + [anon_sym_yield] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2025), + [sym_ellipsis] = ACTIONS(2025), + [anon_sym_LBRACE] = ACTIONS(2025), + [sym_string] = ACTIONS(2027), + [sym_integer] = ACTIONS(2027), + [sym_float] = ACTIONS(2027), + [sym_identifier] = ACTIONS(2029), + [sym_true] = ACTIONS(2027), + [sym_false] = ACTIONS(2027), + [sym_none] = ACTIONS(2027), + [anon_sym_await] = ACTIONS(2027), [sym_comment] = ACTIONS(76), }, - [1633] = { - [sym__dedent] = ACTIONS(1930), - [anon_sym_import] = ACTIONS(1932), - [anon_sym_from] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_print] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_del] = ACTIONS(1932), - [anon_sym_raise] = ACTIONS(1932), - [sym_pass_statement] = ACTIONS(1932), - [sym_break_statement] = ACTIONS(1932), - [sym_continue_statement] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_try] = ACTIONS(1932), - [anon_sym_with] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_def] = ACTIONS(1932), - [anon_sym_global] = ACTIONS(1932), - [anon_sym_nonlocal] = ACTIONS(1932), - [anon_sym_exec] = ACTIONS(1932), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_AT] = ACTIONS(1930), - [anon_sym_not] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_TILDE] = ACTIONS(1930), - [anon_sym_lambda] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [sym_ellipsis] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [sym_string] = ACTIONS(1932), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1932), - [sym_identifier] = ACTIONS(1934), - [sym_true] = ACTIONS(1932), - [sym_false] = ACTIONS(1932), - [sym_none] = ACTIONS(1932), - [anon_sym_await] = ACTIONS(1932), + [1724] = { + [sym__dedent] = ACTIONS(2031), + [anon_sym_import] = ACTIONS(2033), + [anon_sym_from] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_print] = ACTIONS(2033), + [anon_sym_assert] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_del] = ACTIONS(2033), + [anon_sym_raise] = ACTIONS(2033), + [sym_pass_statement] = ACTIONS(2033), + [sym_break_statement] = ACTIONS(2033), + [sym_continue_statement] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_try] = ACTIONS(2033), + [anon_sym_with] = ACTIONS(2033), + [anon_sym_async] = ACTIONS(2033), + [anon_sym_def] = ACTIONS(2033), + [anon_sym_global] = ACTIONS(2033), + [anon_sym_nonlocal] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(2033), + [anon_sym_class] = ACTIONS(2033), + [anon_sym_AT] = ACTIONS(2031), + [anon_sym_not] = ACTIONS(2033), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_TILDE] = ACTIONS(2031), + [anon_sym_lambda] = ACTIONS(2033), + [anon_sym_yield] = ACTIONS(2033), + [anon_sym_LBRACK] = ACTIONS(2031), + [sym_ellipsis] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2031), + [sym_string] = ACTIONS(2033), + [sym_integer] = ACTIONS(2033), + [sym_float] = ACTIONS(2033), + [sym_identifier] = ACTIONS(2035), + [sym_true] = ACTIONS(2033), + [sym_false] = ACTIONS(2033), + [sym_none] = ACTIONS(2033), + [anon_sym_await] = ACTIONS(2033), [sym_comment] = ACTIONS(76), }, - [1634] = { - [sym_else_clause] = STATE(1767), - [sym_except_clause] = STATE(1632), - [sym_finally_clause] = STATE(1768), - [aux_sym_try_statement_repeat1] = STATE(1769), - [sym__dedent] = ACTIONS(1930), - [anon_sym_import] = ACTIONS(1932), - [anon_sym_from] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_print] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_del] = ACTIONS(1932), - [anon_sym_raise] = ACTIONS(1932), - [sym_pass_statement] = ACTIONS(1932), - [sym_break_statement] = ACTIONS(1932), - [sym_continue_statement] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_else] = ACTIONS(3091), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_try] = ACTIONS(1932), - [anon_sym_except] = ACTIONS(3093), - [anon_sym_finally] = ACTIONS(3095), - [anon_sym_with] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_def] = ACTIONS(1932), - [anon_sym_global] = ACTIONS(1932), - [anon_sym_nonlocal] = ACTIONS(1932), - [anon_sym_exec] = ACTIONS(1932), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_AT] = ACTIONS(1930), - [anon_sym_not] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_TILDE] = ACTIONS(1930), - [anon_sym_lambda] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [sym_ellipsis] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [sym_string] = ACTIONS(1932), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1932), - [sym_identifier] = ACTIONS(1934), - [sym_true] = ACTIONS(1932), - [sym_false] = ACTIONS(1932), - [sym_none] = ACTIONS(1932), - [anon_sym_await] = ACTIONS(1932), + [1725] = { + [sym_else_clause] = STATE(1859), + [sym_except_clause] = STATE(1723), + [sym_finally_clause] = STATE(1860), + [aux_sym_try_statement_repeat1] = STATE(1861), + [sym__dedent] = ACTIONS(2031), + [anon_sym_import] = ACTIONS(2033), + [anon_sym_from] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_print] = ACTIONS(2033), + [anon_sym_assert] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_del] = ACTIONS(2033), + [anon_sym_raise] = ACTIONS(2033), + [sym_pass_statement] = ACTIONS(2033), + [sym_break_statement] = ACTIONS(2033), + [sym_continue_statement] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_else] = ACTIONS(3225), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_try] = ACTIONS(2033), + [anon_sym_except] = ACTIONS(3227), + [anon_sym_finally] = ACTIONS(3229), + [anon_sym_with] = ACTIONS(2033), + [anon_sym_async] = ACTIONS(2033), + [anon_sym_def] = ACTIONS(2033), + [anon_sym_global] = ACTIONS(2033), + [anon_sym_nonlocal] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(2033), + [anon_sym_class] = ACTIONS(2033), + [anon_sym_AT] = ACTIONS(2031), + [anon_sym_not] = ACTIONS(2033), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_TILDE] = ACTIONS(2031), + [anon_sym_lambda] = ACTIONS(2033), + [anon_sym_yield] = ACTIONS(2033), + [anon_sym_LBRACK] = ACTIONS(2031), + [sym_ellipsis] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2031), + [sym_string] = ACTIONS(2033), + [sym_integer] = ACTIONS(2033), + [sym_float] = ACTIONS(2033), + [sym_identifier] = ACTIONS(2035), + [sym_true] = ACTIONS(2033), + [sym_false] = ACTIONS(2033), + [sym_none] = ACTIONS(2033), + [anon_sym_await] = ACTIONS(2033), [sym_comment] = ACTIONS(76), }, - [1635] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [1726] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -57580,9 +60021,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1771), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(3097), + [aux_sym_module_repeat1] = STATE(1863), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(3231), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -57591,20 +60032,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -57625,108 +60066,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1636] = { - [sym__dedent] = ACTIONS(1261), - [anon_sym_import] = ACTIONS(1263), - [anon_sym_from] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_print] = ACTIONS(1263), - [anon_sym_assert] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_del] = ACTIONS(1263), - [anon_sym_raise] = ACTIONS(1263), - [sym_pass_statement] = ACTIONS(1263), - [sym_break_statement] = ACTIONS(1263), - [sym_continue_statement] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_with] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_global] = ACTIONS(1263), - [anon_sym_nonlocal] = ACTIONS(1263), - [anon_sym_exec] = ACTIONS(1263), - [anon_sym_class] = ACTIONS(1263), - [anon_sym_AT] = ACTIONS(1261), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_yield] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1261), - [sym_ellipsis] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [sym_string] = ACTIONS(1263), - [sym_integer] = ACTIONS(1263), - [sym_float] = ACTIONS(1263), - [sym_identifier] = ACTIONS(1265), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [sym_none] = ACTIONS(1263), - [anon_sym_await] = ACTIONS(1263), + [1727] = { + [sym__dedent] = ACTIONS(1321), + [anon_sym_import] = ACTIONS(1323), + [anon_sym_from] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_print] = ACTIONS(1323), + [anon_sym_assert] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_del] = ACTIONS(1323), + [anon_sym_raise] = ACTIONS(1323), + [sym_pass_statement] = ACTIONS(1323), + [sym_break_statement] = ACTIONS(1323), + [sym_continue_statement] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_try] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1323), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(1323), + [anon_sym_global] = ACTIONS(1323), + [anon_sym_nonlocal] = ACTIONS(1323), + [anon_sym_exec] = ACTIONS(1323), + [anon_sym_class] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(1321), + [anon_sym_not] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_lambda] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1321), + [sym_ellipsis] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [sym_string] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [sym_identifier] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [sym_none] = ACTIONS(1323), + [anon_sym_await] = ACTIONS(1323), [sym_comment] = ACTIONS(76), }, - [1637] = { - [sym__dedent] = ACTIONS(1946), - [anon_sym_import] = ACTIONS(1948), - [anon_sym_from] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_print] = ACTIONS(1948), - [anon_sym_assert] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_del] = ACTIONS(1948), - [anon_sym_raise] = ACTIONS(1948), - [sym_pass_statement] = ACTIONS(1948), - [sym_break_statement] = ACTIONS(1948), - [sym_continue_statement] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_try] = ACTIONS(1948), - [anon_sym_with] = ACTIONS(1948), - [anon_sym_async] = ACTIONS(1948), - [anon_sym_def] = ACTIONS(1948), - [anon_sym_global] = ACTIONS(1948), - [anon_sym_nonlocal] = ACTIONS(1948), - [anon_sym_exec] = ACTIONS(1948), - [anon_sym_class] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_TILDE] = ACTIONS(1946), - [anon_sym_lambda] = ACTIONS(1948), - [anon_sym_yield] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1946), - [sym_ellipsis] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1946), - [sym_string] = ACTIONS(1948), - [sym_integer] = ACTIONS(1948), - [sym_float] = ACTIONS(1948), - [sym_identifier] = ACTIONS(1950), - [sym_true] = ACTIONS(1948), - [sym_false] = ACTIONS(1948), - [sym_none] = ACTIONS(1948), - [anon_sym_await] = ACTIONS(1948), + [1728] = { + [sym__dedent] = ACTIONS(2047), + [anon_sym_import] = ACTIONS(2049), + [anon_sym_from] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_assert] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_del] = ACTIONS(2049), + [anon_sym_raise] = ACTIONS(2049), + [sym_pass_statement] = ACTIONS(2049), + [sym_break_statement] = ACTIONS(2049), + [sym_continue_statement] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [anon_sym_try] = ACTIONS(2049), + [anon_sym_with] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_def] = ACTIONS(2049), + [anon_sym_global] = ACTIONS(2049), + [anon_sym_nonlocal] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_class] = ACTIONS(2049), + [anon_sym_AT] = ACTIONS(2047), + [anon_sym_not] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_lambda] = ACTIONS(2049), + [anon_sym_yield] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2047), + [sym_ellipsis] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [sym_string] = ACTIONS(2049), + [sym_integer] = ACTIONS(2049), + [sym_float] = ACTIONS(2049), + [sym_identifier] = ACTIONS(2051), + [sym_true] = ACTIONS(2049), + [sym_false] = ACTIONS(2049), + [sym_none] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2049), [sym_comment] = ACTIONS(76), }, - [1638] = { - [sym__simple_statements] = STATE(1636), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym__suite] = STATE(1772), + [1729] = { + [sym__simple_statements] = STATE(1727), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym__suite] = STATE(1864), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -57754,7 +60195,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(2875), + [sym__indent] = ACTIONS(3007), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -57763,9 +60204,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -57788,20 +60229,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1639] = { - [sym__simple_statements] = STATE(1636), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym__suite] = STATE(1773), + [1730] = { + [sym__simple_statements] = STATE(1727), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym__suite] = STATE(1865), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -57829,7 +60270,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(2875), + [sym__indent] = ACTIONS(3007), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -57838,9 +60279,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -57863,9 +60304,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1640] = { - [sym__expression] = STATE(1166), - [sym__primary_expression] = STATE(105), + [1731] = { + [sym__expression] = STATE(1242), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -57875,7 +60316,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), - [sym_type] = STATE(1774), + [sym_type] = STATE(1866), [sym_list] = STATE(61), [sym_list_comprehension] = STATE(61), [sym_dictionary] = STATE(61), @@ -57891,82 +60332,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [1641] = { - [sym__dedent] = ACTIONS(2008), - [anon_sym_import] = ACTIONS(2010), - [anon_sym_from] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2008), - [anon_sym_print] = ACTIONS(2010), - [anon_sym_assert] = ACTIONS(2010), - [anon_sym_return] = ACTIONS(2010), - [anon_sym_del] = ACTIONS(2010), - [anon_sym_raise] = ACTIONS(2010), - [sym_pass_statement] = ACTIONS(2010), - [sym_break_statement] = ACTIONS(2010), - [sym_continue_statement] = ACTIONS(2010), - [anon_sym_if] = ACTIONS(2010), - [anon_sym_for] = ACTIONS(2010), - [anon_sym_while] = ACTIONS(2010), - [anon_sym_try] = ACTIONS(2010), - [anon_sym_with] = ACTIONS(2010), - [anon_sym_async] = ACTIONS(2010), - [anon_sym_def] = ACTIONS(2010), - [anon_sym_global] = ACTIONS(2010), - [anon_sym_nonlocal] = ACTIONS(2010), - [anon_sym_exec] = ACTIONS(2010), - [anon_sym_class] = ACTIONS(2010), - [anon_sym_AT] = ACTIONS(2008), - [anon_sym_not] = ACTIONS(2010), - [anon_sym_PLUS] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2008), - [anon_sym_lambda] = ACTIONS(2010), - [anon_sym_yield] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2008), - [sym_ellipsis] = ACTIONS(2008), - [anon_sym_LBRACE] = ACTIONS(2008), - [sym_string] = ACTIONS(2010), - [sym_integer] = ACTIONS(2010), - [sym_float] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2012), - [sym_true] = ACTIONS(2010), - [sym_false] = ACTIONS(2010), - [sym_none] = ACTIONS(2010), - [anon_sym_await] = ACTIONS(2010), + [1732] = { + [sym__dedent] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_from] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_print] = ACTIONS(2111), + [anon_sym_assert] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_del] = ACTIONS(2111), + [anon_sym_raise] = ACTIONS(2111), + [sym_pass_statement] = ACTIONS(2111), + [sym_break_statement] = ACTIONS(2111), + [sym_continue_statement] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_def] = ACTIONS(2111), + [anon_sym_global] = ACTIONS(2111), + [anon_sym_nonlocal] = ACTIONS(2111), + [anon_sym_exec] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_not] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_lambda] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2109), + [sym_ellipsis] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [sym_string] = ACTIONS(2111), + [sym_integer] = ACTIONS(2111), + [sym_float] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2113), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_none] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), [sym_comment] = ACTIONS(76), }, - [1642] = { - [sym__simple_statements] = STATE(1636), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym__suite] = STATE(1775), + [1733] = { + [sym__simple_statements] = STATE(1727), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym__suite] = STATE(1867), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -57994,7 +60435,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(2875), + [sym__indent] = ACTIONS(3007), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -58003,9 +60444,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -58028,84 +60469,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1643] = { - [anon_sym_if] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_and] = ACTIONS(568), - [anon_sym_or] = ACTIONS(570), + [1734] = { + [anon_sym_if] = ACTIONS(598), + [anon_sym_COLON] = ACTIONS(3233), + [anon_sym_and] = ACTIONS(602), + [anon_sym_or] = ACTIONS(604), [sym_comment] = ACTIONS(76), }, - [1644] = { - [ts_builtin_sym_end] = ACTIONS(3101), - [anon_sym_import] = ACTIONS(3103), - [anon_sym_from] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_print] = ACTIONS(3103), - [anon_sym_assert] = ACTIONS(3103), - [anon_sym_return] = ACTIONS(3103), - [anon_sym_del] = ACTIONS(3103), - [anon_sym_raise] = ACTIONS(3103), - [sym_pass_statement] = ACTIONS(3103), - [sym_break_statement] = ACTIONS(3103), - [sym_continue_statement] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_else] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3103), - [anon_sym_while] = ACTIONS(3103), - [anon_sym_try] = ACTIONS(3103), - [anon_sym_except] = ACTIONS(3103), - [anon_sym_finally] = ACTIONS(3103), - [anon_sym_with] = ACTIONS(3103), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_def] = ACTIONS(3103), - [anon_sym_global] = ACTIONS(3103), - [anon_sym_nonlocal] = ACTIONS(3103), - [anon_sym_exec] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_not] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_lambda] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3101), - [sym_ellipsis] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3101), - [sym_string] = ACTIONS(3103), - [sym_integer] = ACTIONS(3103), - [sym_float] = ACTIONS(3103), - [sym_identifier] = ACTIONS(3105), - [sym_true] = ACTIONS(3103), - [sym_false] = ACTIONS(3103), - [sym_none] = ACTIONS(3103), - [anon_sym_await] = ACTIONS(3103), + [1735] = { + [ts_builtin_sym_end] = ACTIONS(3235), + [anon_sym_import] = ACTIONS(3237), + [anon_sym_from] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_print] = ACTIONS(3237), + [anon_sym_assert] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_del] = ACTIONS(3237), + [anon_sym_raise] = ACTIONS(3237), + [sym_pass_statement] = ACTIONS(3237), + [sym_break_statement] = ACTIONS(3237), + [sym_continue_statement] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_else] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_while] = ACTIONS(3237), + [anon_sym_try] = ACTIONS(3237), + [anon_sym_except] = ACTIONS(3237), + [anon_sym_finally] = ACTIONS(3237), + [anon_sym_with] = ACTIONS(3237), + [anon_sym_async] = ACTIONS(3237), + [anon_sym_def] = ACTIONS(3237), + [anon_sym_global] = ACTIONS(3237), + [anon_sym_nonlocal] = ACTIONS(3237), + [anon_sym_exec] = ACTIONS(3237), + [anon_sym_class] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3235), + [anon_sym_not] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_lambda] = ACTIONS(3237), + [anon_sym_yield] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3235), + [sym_ellipsis] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3235), + [sym_string] = ACTIONS(3237), + [sym_integer] = ACTIONS(3237), + [sym_float] = ACTIONS(3237), + [sym_identifier] = ACTIONS(3239), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_none] = ACTIONS(3237), + [anon_sym_await] = ACTIONS(3237), [sym_comment] = ACTIONS(76), }, - [1645] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [1736] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -58134,9 +60575,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1778), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(3107), + [aux_sym_module_repeat1] = STATE(1870), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(3241), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -58145,20 +60586,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -58179,114 +60620,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1646] = { - [aux_sym__simple_statements_repeat1] = STATE(1781), - [sym__newline] = ACTIONS(3109), + [1737] = { + [aux_sym__simple_statements_repeat1] = STATE(1873), + [sym__newline] = ACTIONS(3243), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(3111), + [sym__semicolon] = ACTIONS(3245), }, - [1647] = { - [ts_builtin_sym_end] = ACTIONS(1261), - [anon_sym_import] = ACTIONS(1263), - [anon_sym_from] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_print] = ACTIONS(1263), - [anon_sym_assert] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_del] = ACTIONS(1263), - [anon_sym_raise] = ACTIONS(1263), - [sym_pass_statement] = ACTIONS(1263), - [sym_break_statement] = ACTIONS(1263), - [sym_continue_statement] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_finally] = ACTIONS(1263), - [anon_sym_with] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_global] = ACTIONS(1263), - [anon_sym_nonlocal] = ACTIONS(1263), - [anon_sym_exec] = ACTIONS(1263), - [anon_sym_class] = ACTIONS(1263), - [anon_sym_AT] = ACTIONS(1261), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_yield] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1261), - [sym_ellipsis] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [sym_string] = ACTIONS(1263), - [sym_integer] = ACTIONS(1263), - [sym_float] = ACTIONS(1263), - [sym_identifier] = ACTIONS(1265), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [sym_none] = ACTIONS(1263), - [anon_sym_await] = ACTIONS(1263), + [1738] = { + [ts_builtin_sym_end] = ACTIONS(1321), + [anon_sym_import] = ACTIONS(1323), + [anon_sym_from] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_print] = ACTIONS(1323), + [anon_sym_assert] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_del] = ACTIONS(1323), + [anon_sym_raise] = ACTIONS(1323), + [sym_pass_statement] = ACTIONS(1323), + [sym_break_statement] = ACTIONS(1323), + [sym_continue_statement] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_try] = ACTIONS(1323), + [anon_sym_finally] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1323), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(1323), + [anon_sym_global] = ACTIONS(1323), + [anon_sym_nonlocal] = ACTIONS(1323), + [anon_sym_exec] = ACTIONS(1323), + [anon_sym_class] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(1321), + [anon_sym_not] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_lambda] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1321), + [sym_ellipsis] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [sym_string] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [sym_identifier] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [sym_none] = ACTIONS(1323), + [anon_sym_await] = ACTIONS(1323), [sym_comment] = ACTIONS(76), }, - [1648] = { - [ts_builtin_sym_end] = ACTIONS(3057), - [anon_sym_import] = ACTIONS(3059), - [anon_sym_from] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym_print] = ACTIONS(3059), - [anon_sym_assert] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_del] = ACTIONS(3059), - [anon_sym_raise] = ACTIONS(3059), - [sym_pass_statement] = ACTIONS(3059), - [sym_break_statement] = ACTIONS(3059), - [sym_continue_statement] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_for] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3059), - [anon_sym_try] = ACTIONS(3059), - [anon_sym_finally] = ACTIONS(3059), - [anon_sym_with] = ACTIONS(3059), - [anon_sym_async] = ACTIONS(3059), - [anon_sym_def] = ACTIONS(3059), - [anon_sym_global] = ACTIONS(3059), - [anon_sym_nonlocal] = ACTIONS(3059), - [anon_sym_exec] = ACTIONS(3059), - [anon_sym_class] = ACTIONS(3059), - [anon_sym_AT] = ACTIONS(3057), - [anon_sym_not] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_lambda] = ACTIONS(3059), - [anon_sym_yield] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3057), - [sym_ellipsis] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [sym_string] = ACTIONS(3059), - [sym_integer] = ACTIONS(3059), - [sym_float] = ACTIONS(3059), - [sym_identifier] = ACTIONS(3061), - [sym_true] = ACTIONS(3059), - [sym_false] = ACTIONS(3059), - [sym_none] = ACTIONS(3059), - [anon_sym_await] = ACTIONS(3059), + [1739] = { + [ts_builtin_sym_end] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_from] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_print] = ACTIONS(3193), + [anon_sym_assert] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_del] = ACTIONS(3193), + [anon_sym_raise] = ACTIONS(3193), + [sym_pass_statement] = ACTIONS(3193), + [sym_break_statement] = ACTIONS(3193), + [sym_continue_statement] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_finally] = ACTIONS(3193), + [anon_sym_with] = ACTIONS(3193), + [anon_sym_async] = ACTIONS(3193), + [anon_sym_def] = ACTIONS(3193), + [anon_sym_global] = ACTIONS(3193), + [anon_sym_nonlocal] = ACTIONS(3193), + [anon_sym_exec] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3191), + [anon_sym_not] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_lambda] = ACTIONS(3193), + [anon_sym_yield] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3191), + [sym_ellipsis] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [sym_string] = ACTIONS(3193), + [sym_integer] = ACTIONS(3193), + [sym_float] = ACTIONS(3193), + [sym_identifier] = ACTIONS(3195), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_none] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3193), [sym_comment] = ACTIONS(76), }, - [1649] = { - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(2527), - [anon_sym_or] = ACTIONS(2529), + [1740] = { + [anon_sym_RPAREN] = ACTIONS(1423), + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(2653), [sym_comment] = ACTIONS(76), }, - [1650] = { - [sym__expression] = STATE(1782), - [sym__primary_expression] = STATE(1154), + [1741] = { + [sym__expression] = STATE(1874), + [sym__primary_expression] = STATE(1230), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -58311,186 +60752,186 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), - [anon_sym_lambda] = ACTIONS(1979), + [anon_sym_not] = ACTIONS(2076), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_lambda] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1983), + [anon_sym_await] = ACTIONS(2084), [sym_comment] = ACTIONS(76), }, - [1651] = { - [aux_sym_concatenated_string_repeat1] = STATE(1651), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [1742] = { + [aux_sym_concatenated_string_repeat1] = STATE(1742), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_COLON] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [1652] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(3113), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1743] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(3247), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1653] = { - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_COLON] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(2527), - [anon_sym_or] = ACTIONS(1550), + [1744] = { + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_COLON] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [1654] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(2543), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1745] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1655] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2531), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2539), - [anon_sym_SLASH] = ACTIONS(2531), - [anon_sym_PERCENT] = ACTIONS(2541), - [anon_sym_SLASH_SLASH] = ACTIONS(2541), - [anon_sym_STAR_STAR] = ACTIONS(2543), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1746] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_SLASH] = ACTIONS(2655), + [anon_sym_PERCENT] = ACTIONS(2665), + [anon_sym_SLASH_SLASH] = ACTIONS(2665), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1656] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(2531), - [anon_sym_GT_GT] = ACTIONS(2533), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_COLON] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2539), - [anon_sym_SLASH] = ACTIONS(2531), - [anon_sym_PERCENT] = ACTIONS(2541), - [anon_sym_SLASH_SLASH] = ACTIONS(2541), - [anon_sym_STAR_STAR] = ACTIONS(2543), - [anon_sym_PIPE] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2549), - [anon_sym_LT_LT] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), + [1747] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_GT_GT] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_SLASH] = ACTIONS(2655), + [anon_sym_PERCENT] = ACTIONS(2665), + [anon_sym_SLASH_SLASH] = ACTIONS(2665), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_CARET] = ACTIONS(2673), + [anon_sym_LT_LT] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1657] = { - [sym__primary_expression] = STATE(1784), + [1748] = { + [sym__primary_expression] = STATE(1876), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -58509,13 +60950,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -58524,173 +60965,173 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1658] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2531), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(2531), - [anon_sym_PERCENT] = ACTIONS(2541), - [anon_sym_SLASH_SLASH] = ACTIONS(2541), - [anon_sym_STAR_STAR] = ACTIONS(2543), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1749] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(2655), + [anon_sym_PERCENT] = ACTIONS(2665), + [anon_sym_SLASH_SLASH] = ACTIONS(2665), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1659] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2531), - [anon_sym_GT_GT] = ACTIONS(2533), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2539), - [anon_sym_SLASH] = ACTIONS(2531), - [anon_sym_PERCENT] = ACTIONS(2541), - [anon_sym_SLASH_SLASH] = ACTIONS(2541), - [anon_sym_STAR_STAR] = ACTIONS(2543), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2549), - [anon_sym_LT_LT] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1750] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_GT_GT] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_SLASH] = ACTIONS(2655), + [anon_sym_PERCENT] = ACTIONS(2665), + [anon_sym_SLASH_SLASH] = ACTIONS(2665), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_CARET] = ACTIONS(2673), + [anon_sym_LT_LT] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1660] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2531), - [anon_sym_GT_GT] = ACTIONS(2533), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2539), - [anon_sym_SLASH] = ACTIONS(2531), - [anon_sym_PERCENT] = ACTIONS(2541), - [anon_sym_SLASH_SLASH] = ACTIONS(2541), - [anon_sym_STAR_STAR] = ACTIONS(2543), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(2549), - [anon_sym_LT_LT] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1751] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_GT_GT] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_SLASH] = ACTIONS(2655), + [anon_sym_PERCENT] = ACTIONS(2665), + [anon_sym_SLASH_SLASH] = ACTIONS(2665), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(2673), + [anon_sym_LT_LT] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1661] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2531), - [anon_sym_GT_GT] = ACTIONS(2533), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2539), - [anon_sym_SLASH] = ACTIONS(2531), - [anon_sym_PERCENT] = ACTIONS(2541), - [anon_sym_SLASH_SLASH] = ACTIONS(2541), - [anon_sym_STAR_STAR] = ACTIONS(2543), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1752] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_GT_GT] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_COLON] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_SLASH] = ACTIONS(2655), + [anon_sym_PERCENT] = ACTIONS(2665), + [anon_sym_SLASH_SLASH] = ACTIONS(2665), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1662] = { - [aux_sym_comparison_operator_repeat1] = STATE(1662), - [anon_sym_RPAREN] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_COLON] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(3115), - [anon_sym_not] = ACTIONS(3118), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(3121), - [anon_sym_LT_EQ] = ACTIONS(3115), - [anon_sym_EQ_EQ] = ACTIONS(3115), - [anon_sym_BANG_EQ] = ACTIONS(3115), - [anon_sym_GT_EQ] = ACTIONS(3115), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_LT_GT] = ACTIONS(3115), - [anon_sym_is] = ACTIONS(3124), + [1753] = { + [aux_sym_comparison_operator_repeat1] = STATE(1753), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(3249), + [anon_sym_not] = ACTIONS(3252), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_LT_EQ] = ACTIONS(3249), + [anon_sym_EQ_EQ] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_GT_EQ] = ACTIONS(3249), + [anon_sym_GT] = ACTIONS(3255), + [anon_sym_LT_GT] = ACTIONS(3249), + [anon_sym_is] = ACTIONS(3258), [sym_comment] = ACTIONS(76), }, - [1663] = { - [sym__expression] = STATE(1785), - [sym__primary_expression] = STATE(221), + [1754] = { + [sym__expression] = STATE(1877), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -58715,50 +61156,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1664] = { - [sym_default_parameter] = STATE(823), - [sym_typed_default_parameter] = STATE(823), - [sym_list_splat] = STATE(1456), - [sym_dictionary_splat] = STATE(1456), - [sym_typed_parameter] = STATE(823), - [sym_tuple] = STATE(823), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_print] = ACTIONS(2555), - [anon_sym_exec] = ACTIONS(2555), - [sym_identifier] = ACTIONS(2557), + [1755] = { + [sym_default_parameter] = STATE(881), + [sym_typed_default_parameter] = STATE(881), + [sym_list_splat] = STATE(1543), + [sym_dictionary_splat] = STATE(1543), + [sym_typed_parameter] = STATE(881), + [sym_tuple] = STATE(881), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_print] = ACTIONS(2679), + [anon_sym_exec] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2681), [sym_comment] = ACTIONS(76), }, - [1665] = { - [anon_sym_RPAREN] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_and] = ACTIONS(2922), - [anon_sym_or] = ACTIONS(2924), + [1756] = { + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_if] = ACTIONS(726), + [anon_sym_EQ] = ACTIONS(726), + [anon_sym_and] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3056), [sym_comment] = ACTIONS(76), }, - [1666] = { - [sym__expression] = STATE(1786), - [sym__primary_expression] = STATE(1467), + [1757] = { + [sym__expression] = STATE(1878), + [sym__primary_expression] = STATE(1554), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -58783,67 +61224,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_lambda] = ACTIONS(2689), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2569), + [anon_sym_await] = ACTIONS(2693), [sym_comment] = ACTIONS(76), }, - [1667] = { - [anon_sym_COLON] = ACTIONS(3127), + [1758] = { + [anon_sym_COLON] = ACTIONS(3261), [sym_comment] = ACTIONS(76), }, - [1668] = { - [aux_sym_concatenated_string_repeat1] = STATE(1788), - [anon_sym_DOT] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(844), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(844), - [anon_sym_if] = ACTIONS(844), - [anon_sym_in] = ACTIONS(844), - [anon_sym_EQ] = ACTIONS(846), - [anon_sym_not] = ACTIONS(844), - [anon_sym_and] = ACTIONS(844), - [anon_sym_or] = ACTIONS(844), - [anon_sym_PLUS] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(844), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(844), - [anon_sym_SLASH_SLASH] = ACTIONS(844), - [anon_sym_STAR_STAR] = ACTIONS(844), - [anon_sym_PIPE] = ACTIONS(844), - [anon_sym_AMP] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(844), - [anon_sym_LT_LT] = ACTIONS(844), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(844), - [anon_sym_EQ_EQ] = ACTIONS(844), - [anon_sym_BANG_EQ] = ACTIONS(844), - [anon_sym_GT_EQ] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_LT_GT] = ACTIONS(844), - [anon_sym_is] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(844), - [sym_string] = ACTIONS(392), + [1759] = { + [aux_sym_concatenated_string_repeat1] = STATE(1880), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_not] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_GT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT_GT] = ACTIONS(880), + [anon_sym_is] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [sym_string] = ACTIONS(406), [sym_comment] = ACTIONS(76), }, - [1669] = { - [sym__expression] = STATE(1789), - [sym__primary_expression] = STATE(509), + [1760] = { + [sym__expression] = STATE(1881), + [sym__primary_expression] = STATE(537), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -58868,27 +61309,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_TILDE] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(860), + [anon_sym_not] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_lambda] = ACTIONS(896), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(862), + [sym_string] = ACTIONS(898), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(864), + [anon_sym_await] = ACTIONS(900), [sym_comment] = ACTIONS(76), }, - [1670] = { - [sym__expression] = STATE(600), - [sym__primary_expression] = STATE(1467), + [1761] = { + [sym__expression] = STATE(628), + [sym__primary_expression] = STATE(1554), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -58913,27 +61354,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_lambda] = ACTIONS(2689), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2569), + [anon_sym_await] = ACTIONS(2693), [sym_comment] = ACTIONS(76), }, - [1671] = { - [sym__expression] = STATE(1790), - [sym__primary_expression] = STATE(1467), + [1762] = { + [sym__expression] = STATE(1882), + [sym__primary_expression] = STATE(1554), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -58958,26 +61399,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_lambda] = ACTIONS(2689), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2569), + [anon_sym_await] = ACTIONS(2693), [sym_comment] = ACTIONS(76), }, - [1672] = { - [sym__primary_expression] = STATE(1791), + [1763] = { + [sym__primary_expression] = STATE(1883), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -58996,13 +61437,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -59011,8 +61452,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1673] = { - [sym__primary_expression] = STATE(1792), + [1764] = { + [sym__primary_expression] = STATE(1884), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -59031,13 +61472,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -59046,8 +61487,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1674] = { - [sym__primary_expression] = STATE(1793), + [1765] = { + [sym__primary_expression] = STATE(1885), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -59066,13 +61507,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -59081,12 +61522,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1675] = { - [anon_sym_in] = ACTIONS(3129), + [1766] = { + [anon_sym_in] = ACTIONS(3263), [sym_comment] = ACTIONS(76), }, - [1676] = { - [sym__primary_expression] = STATE(1795), + [1767] = { + [sym__primary_expression] = STATE(1887), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -59105,13 +61546,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -59120,8 +61561,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1677] = { - [sym__primary_expression] = STATE(618), + [1768] = { + [sym__primary_expression] = STATE(646), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -59140,13 +61581,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -59155,8 +61596,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1678] = { - [sym__primary_expression] = STATE(1796), + [1769] = { + [sym__primary_expression] = STATE(1888), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -59175,13 +61616,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -59190,8 +61631,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1679] = { - [sym__primary_expression] = STATE(1797), + [1770] = { + [sym__primary_expression] = STATE(1889), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -59210,13 +61651,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -59225,8 +61666,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1680] = { - [sym__primary_expression] = STATE(1798), + [1771] = { + [sym__primary_expression] = STATE(1890), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -59245,13 +61686,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -59260,8 +61701,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1681] = { - [sym__primary_expression] = STATE(1793), + [1772] = { + [sym__primary_expression] = STATE(1885), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -59280,14 +61721,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -59296,29 +61737,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1682] = { - [aux_sym_comparison_operator_repeat1] = STATE(1799), - [anon_sym_RPAREN] = ACTIONS(900), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_if] = ACTIONS(900), - [anon_sym_in] = ACTIONS(2930), - [anon_sym_EQ] = ACTIONS(902), - [anon_sym_not] = ACTIONS(2932), - [anon_sym_and] = ACTIONS(900), - [anon_sym_or] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(2946), - [anon_sym_LT_EQ] = ACTIONS(2930), - [anon_sym_EQ_EQ] = ACTIONS(2930), - [anon_sym_BANG_EQ] = ACTIONS(2930), - [anon_sym_GT_EQ] = ACTIONS(2930), - [anon_sym_GT] = ACTIONS(2946), - [anon_sym_LT_GT] = ACTIONS(2930), - [anon_sym_is] = ACTIONS(2948), + [1773] = { + [aux_sym_comparison_operator_repeat1] = STATE(1891), + [anon_sym_RPAREN] = ACTIONS(936), + [anon_sym_COMMA] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_in] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(938), + [anon_sym_not] = ACTIONS(3064), + [anon_sym_and] = ACTIONS(936), + [anon_sym_or] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(3078), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3078), + [anon_sym_LT_GT] = ACTIONS(3062), + [anon_sym_is] = ACTIONS(3080), [sym_comment] = ACTIONS(76), }, - [1683] = { - [sym__expression] = STATE(1800), - [sym__primary_expression] = STATE(221), + [1774] = { + [sym__expression] = STATE(1892), + [sym__primary_expression] = STATE(227), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -59343,86 +61784,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_lambda] = ACTIONS(378), + [anon_sym_not] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_lambda] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(380), + [sym_string] = ACTIONS(394), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(382), + [anon_sym_await] = ACTIONS(396), [sym_comment] = ACTIONS(76), }, - [1684] = { - [ts_builtin_sym_end] = ACTIONS(3133), - [anon_sym_import] = ACTIONS(3135), - [anon_sym_from] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_print] = ACTIONS(3135), - [anon_sym_assert] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_del] = ACTIONS(3135), - [anon_sym_raise] = ACTIONS(3135), - [sym_pass_statement] = ACTIONS(3135), - [sym_break_statement] = ACTIONS(3135), - [sym_continue_statement] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_with] = ACTIONS(3135), - [anon_sym_async] = ACTIONS(3135), - [anon_sym_def] = ACTIONS(3135), - [anon_sym_global] = ACTIONS(3135), - [anon_sym_nonlocal] = ACTIONS(3135), - [anon_sym_exec] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_not] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_lambda] = ACTIONS(3135), - [anon_sym_yield] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3133), - [sym_ellipsis] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [sym_string] = ACTIONS(3135), - [sym_integer] = ACTIONS(3135), - [sym_float] = ACTIONS(3135), - [sym_identifier] = ACTIONS(3137), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [sym_none] = ACTIONS(3135), - [anon_sym_await] = ACTIONS(3135), + [1775] = { + [ts_builtin_sym_end] = ACTIONS(3267), + [anon_sym_import] = ACTIONS(3269), + [anon_sym_from] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_print] = ACTIONS(3269), + [anon_sym_assert] = ACTIONS(3269), + [anon_sym_return] = ACTIONS(3269), + [anon_sym_del] = ACTIONS(3269), + [anon_sym_raise] = ACTIONS(3269), + [sym_pass_statement] = ACTIONS(3269), + [sym_break_statement] = ACTIONS(3269), + [sym_continue_statement] = ACTIONS(3269), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_for] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_try] = ACTIONS(3269), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_async] = ACTIONS(3269), + [anon_sym_def] = ACTIONS(3269), + [anon_sym_global] = ACTIONS(3269), + [anon_sym_nonlocal] = ACTIONS(3269), + [anon_sym_exec] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3269), + [anon_sym_AT] = ACTIONS(3267), + [anon_sym_not] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_lambda] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_LBRACK] = ACTIONS(3267), + [sym_ellipsis] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3267), + [sym_string] = ACTIONS(3269), + [sym_integer] = ACTIONS(3269), + [sym_float] = ACTIONS(3269), + [sym_identifier] = ACTIONS(3271), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_none] = ACTIONS(3269), + [anon_sym_await] = ACTIONS(3269), [sym_comment] = ACTIONS(76), }, - [1685] = { - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_COLON] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(1311), - [anon_sym_or] = ACTIONS(1313), + [1776] = { + [sym__newline] = ACTIONS(3152), [sym_comment] = ACTIONS(76), }, - [1686] = { - [anon_sym_if] = ACTIONS(2030), - [anon_sym_EQ] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(2034), - [anon_sym_or] = ACTIONS(2036), + [1777] = { + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(1377), + [anon_sym_or] = ACTIONS(1379), [sym_comment] = ACTIONS(76), }, - [1687] = { - [sym__expression] = STATE(1801), - [sym__primary_expression] = STATE(831), + [1778] = { + [anon_sym_if] = ACTIONS(2138), + [anon_sym_EQ] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(2142), + [anon_sym_or] = ACTIONS(2144), + [sym_comment] = ACTIONS(76), + }, + [1779] = { + [sym__expression] = STATE(1893), + [sym__primary_expression] = STATE(889), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -59447,70 +61892,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_lambda] = ACTIONS(1349), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_lambda] = ACTIONS(1415), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1351), + [sym_string] = ACTIONS(1417), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1353), + [anon_sym_await] = ACTIONS(1419), [sym_comment] = ACTIONS(76), }, - [1688] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_GT_GT] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_EQ] = ACTIONS(2274), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_SLASH] = ACTIONS(2038), - [anon_sym_PERCENT] = ACTIONS(2048), - [anon_sym_SLASH_SLASH] = ACTIONS(2048), - [anon_sym_STAR_STAR] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_CARET] = ACTIONS(2056), - [anon_sym_LT_LT] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), + [1780] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2146), + [anon_sym_GT_GT] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_EQ] = ACTIONS(2382), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2154), + [anon_sym_SLASH] = ACTIONS(2146), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_SLASH_SLASH] = ACTIONS(2156), + [anon_sym_STAR_STAR] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(2164), + [anon_sym_LT_LT] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1689] = { - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_COLON] = ACTIONS(2111), - [anon_sym_EQ] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(2075), - [anon_sym_or] = ACTIONS(2077), + [1781] = { + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_COLON] = ACTIONS(2219), + [anon_sym_EQ] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(2183), + [anon_sym_or] = ACTIONS(2185), [sym_comment] = ACTIONS(76), }, - [1690] = { - [sym__expression] = STATE(1802), - [sym__primary_expression] = STATE(842), + [1782] = { + [sym__expression] = STATE(1894), + [sym__primary_expression] = STATE(900), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -59535,79 +61980,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_lambda] = ACTIONS(1365), + [anon_sym_not] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), + [anon_sym_lambda] = ACTIONS(1431), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1367), + [sym_string] = ACTIONS(1433), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1369), + [anon_sym_await] = ACTIONS(1435), [sym_comment] = ACTIONS(76), }, - [1691] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_GT_GT] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_COLON] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_EQ] = ACTIONS(2274), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_SLASH] = ACTIONS(2079), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(2089), - [anon_sym_STAR_STAR] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), + [1783] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_COLON] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_EQ] = ACTIONS(2382), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2197), + [anon_sym_SLASH_SLASH] = ACTIONS(2197), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_CARET] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1692] = { - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_and] = ACTIONS(1383), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_RBRACK] = ACTIONS(2741), + [1784] = { + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_and] = ACTIONS(1449), + [anon_sym_or] = ACTIONS(1451), + [anon_sym_RBRACK] = ACTIONS(2869), [sym_comment] = ACTIONS(76), }, - [1693] = { - [sym__expression_within_for_in_clause] = STATE(1737), - [sym__expression] = STATE(1512), - [sym__primary_expression] = STATE(152), + [1785] = { + [sym__expression_within_for_in_clause] = STATE(1829), + [sym__expression] = STATE(1601), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -59626,39 +62071,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lambda] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(2763), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(234), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, - [1694] = { - [anon_sym_COLON] = ACTIONS(3139), + [1786] = { + [anon_sym_COLON] = ACTIONS(3273), [sym_comment] = ACTIONS(76), }, - [1695] = { - [sym__expression_within_for_in_clause] = STATE(1739), - [sym__expression] = STATE(1512), - [sym__primary_expression] = STATE(152), + [1787] = { + [sym__expression_within_for_in_clause] = STATE(1831), + [sym__expression] = STATE(1601), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -59676,47 +62121,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_for] = ACTIONS(3037), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lambda] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(2763), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(3035), + [anon_sym_RBRACK] = ACTIONS(3169), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(234), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, - [1696] = { - [aux_sym_for_in_clause_repeat1] = STATE(1805), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_RBRACK] = ACTIONS(3035), + [1788] = { + [aux_sym_for_in_clause_repeat1] = STATE(1897), + [anon_sym_COMMA] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_RBRACK] = ACTIONS(3169), [sym_comment] = ACTIONS(76), }, - [1697] = { - [anon_sym_if] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(2639), - [anon_sym_or] = ACTIONS(2641), - [anon_sym_RBRACK] = ACTIONS(1357), + [1789] = { + [anon_sym_if] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(2767), + [anon_sym_or] = ACTIONS(2769), + [anon_sym_RBRACK] = ACTIONS(1423), [sym_comment] = ACTIONS(76), }, - [1698] = { - [sym__expression] = STATE(1806), - [sym__primary_expression] = STATE(1248), + [1790] = { + [sym__expression] = STATE(1898), + [sym__primary_expression] = STATE(1327), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -59741,181 +62186,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_lambda] = ACTIONS(2142), + [anon_sym_not] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_lambda] = ACTIONS(2250), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2146), + [anon_sym_await] = ACTIONS(2254), [sym_comment] = ACTIONS(76), }, - [1699] = { - [aux_sym_concatenated_string_repeat1] = STATE(1699), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_RBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [1791] = { + [aux_sym_concatenated_string_repeat1] = STATE(1791), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_RBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [1700] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1792] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1701] = { - [anon_sym_if] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(2639), - [anon_sym_or] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(1550), + [1793] = { + [anon_sym_if] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(2767), + [anon_sym_or] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [1702] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1794] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1703] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1795] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2781), + [anon_sym_SLASH_SLASH] = ACTIONS(2781), + [anon_sym_STAR_STAR] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1704] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2645), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2661), - [anon_sym_LT_LT] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACK] = ACTIONS(1581), + [1796] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_GT_GT] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2781), + [anon_sym_SLASH_SLASH] = ACTIONS(2781), + [anon_sym_STAR_STAR] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(2785), + [anon_sym_AMP] = ACTIONS(2787), + [anon_sym_CARET] = ACTIONS(2789), + [anon_sym_LT_LT] = ACTIONS(2773), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACK] = ACTIONS(1647), [sym_comment] = ACTIONS(76), }, - [1705] = { - [sym__primary_expression] = STATE(1808), + [1797] = { + [sym__primary_expression] = STATE(1900), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -59934,13 +62379,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -59949,185 +62394,185 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1706] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1798] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2781), + [anon_sym_SLASH_SLASH] = ACTIONS(2781), + [anon_sym_STAR_STAR] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1707] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2645), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2661), - [anon_sym_LT_LT] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1799] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_GT_GT] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2781), + [anon_sym_SLASH_SLASH] = ACTIONS(2781), + [anon_sym_STAR_STAR] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(2787), + [anon_sym_CARET] = ACTIONS(2789), + [anon_sym_LT_LT] = ACTIONS(2773), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1708] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2645), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(2661), - [anon_sym_LT_LT] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1800] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_GT_GT] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2781), + [anon_sym_SLASH_SLASH] = ACTIONS(2781), + [anon_sym_STAR_STAR] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(2789), + [anon_sym_LT_LT] = ACTIONS(2773), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1709] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2645), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(1577), + [1801] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_GT_GT] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2781), + [anon_sym_SLASH_SLASH] = ACTIONS(2781), + [anon_sym_STAR_STAR] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(2773), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1710] = { - [aux_sym_comparison_operator_repeat1] = STATE(1710), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(3147), - [anon_sym_not] = ACTIONS(3150), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_LT_EQ] = ACTIONS(3147), - [anon_sym_EQ_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_GT_EQ] = ACTIONS(3147), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_LT_GT] = ACTIONS(3147), - [anon_sym_is] = ACTIONS(3156), - [anon_sym_RBRACK] = ACTIONS(1581), + [1802] = { + [aux_sym_comparison_operator_repeat1] = STATE(1802), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(3281), + [anon_sym_not] = ACTIONS(3284), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_LT_EQ] = ACTIONS(3281), + [anon_sym_EQ_EQ] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3281), + [anon_sym_GT] = ACTIONS(3287), + [anon_sym_LT_GT] = ACTIONS(3281), + [anon_sym_is] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(1647), [sym_comment] = ACTIONS(76), }, - [1711] = { - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_and] = ACTIONS(1433), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(2741), + [1803] = { + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1499), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(2869), [sym_comment] = ACTIONS(76), }, - [1712] = { - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(2196), - [anon_sym_or] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2111), + [1804] = { + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(2304), + [anon_sym_or] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(2219), [sym_comment] = ACTIONS(76), }, - [1713] = { - [sym__expression] = STATE(1809), - [sym__primary_expression] = STATE(930), + [1805] = { + [sym__expression] = STATE(1901), + [sym__primary_expression] = STATE(988), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -60152,71 +62597,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_lambda] = ACTIONS(1483), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_lambda] = ACTIONS(1549), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1553), [sym_comment] = ACTIONS(76), }, - [1714] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_GT_GT] = ACTIONS(2202), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_PERCENT] = ACTIONS(2210), - [anon_sym_SLASH_SLASH] = ACTIONS(2210), - [anon_sym_STAR_STAR] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_CARET] = ACTIONS(2218), - [anon_sym_LT_LT] = ACTIONS(2202), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(2272), + [1806] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(2308), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2316), + [anon_sym_DASH] = ACTIONS(2316), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_SLASH_SLASH] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2322), + [anon_sym_AMP] = ACTIONS(2324), + [anon_sym_CARET] = ACTIONS(2326), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(2380), [sym_comment] = ACTIONS(76), }, - [1715] = { - [sym__expression_within_for_in_clause] = STATE(1737), - [sym__expression] = STATE(1552), - [sym__primary_expression] = STATE(930), + [1807] = { + [sym__expression_within_for_in_clause] = STATE(1829), + [sym__expression] = STATE(1641), + [sym__primary_expression] = STATE(988), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -60235,39 +62680,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_lambda] = ACTIONS(2701), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_lambda] = ACTIONS(2829), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1553), [sym_comment] = ACTIONS(76), }, - [1716] = { - [anon_sym_COLON] = ACTIONS(3159), + [1808] = { + [anon_sym_COLON] = ACTIONS(3293), [sym_comment] = ACTIONS(76), }, - [1717] = { - [sym__expression_within_for_in_clause] = STATE(1739), - [sym__expression] = STATE(1552), - [sym__primary_expression] = STATE(930), + [1809] = { + [sym__expression_within_for_in_clause] = STATE(1831), + [sym__expression] = STATE(1641), + [sym__primary_expression] = STATE(988), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -60285,47 +62730,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_for] = ACTIONS(3037), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_lambda] = ACTIONS(2701), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_lambda] = ACTIONS(2829), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(3035), - [sym_string] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(3169), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1553), [sym_comment] = ACTIONS(76), }, - [1718] = { - [aux_sym_for_in_clause_repeat1] = STATE(1812), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_RBRACE] = ACTIONS(3035), + [1810] = { + [aux_sym_for_in_clause_repeat1] = STATE(1904), + [anon_sym_COMMA] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_RBRACE] = ACTIONS(3169), [sym_comment] = ACTIONS(76), }, - [1719] = { - [anon_sym_if] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(2705), - [anon_sym_or] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(1357), + [1811] = { + [anon_sym_if] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2835), + [anon_sym_RBRACE] = ACTIONS(1423), [sym_comment] = ACTIONS(76), }, - [1720] = { - [sym__expression] = STATE(1813), - [sym__primary_expression] = STATE(1297), + [1812] = { + [sym__expression] = STATE(1905), + [sym__primary_expression] = STATE(1376), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -60350,181 +62795,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_lambda] = ACTIONS(2234), + [anon_sym_not] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_lambda] = ACTIONS(2342), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2346), [sym_comment] = ACTIONS(76), }, - [1721] = { - [aux_sym_concatenated_string_repeat1] = STATE(1721), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [1813] = { + [aux_sym_concatenated_string_repeat1] = STATE(1813), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [1722] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1814] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(3299), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1723] = { - [anon_sym_if] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(2705), - [anon_sym_or] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), + [1815] = { + [anon_sym_if] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [1724] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(2721), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1816] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1725] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_SLASH] = ACTIONS(2709), - [anon_sym_PERCENT] = ACTIONS(2719), - [anon_sym_SLASH_SLASH] = ACTIONS(2719), - [anon_sym_STAR_STAR] = ACTIONS(2721), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1817] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2847), + [anon_sym_SLASH_SLASH] = ACTIONS(2847), + [anon_sym_STAR_STAR] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1726] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_SLASH] = ACTIONS(2709), - [anon_sym_PERCENT] = ACTIONS(2719), - [anon_sym_SLASH_SLASH] = ACTIONS(2719), - [anon_sym_STAR_STAR] = ACTIONS(2721), - [anon_sym_PIPE] = ACTIONS(2723), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_LT_LT] = ACTIONS(2711), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(1581), + [1818] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(2839), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2847), + [anon_sym_SLASH_SLASH] = ACTIONS(2847), + [anon_sym_STAR_STAR] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_CARET] = ACTIONS(2855), + [anon_sym_LT_LT] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(1647), [sym_comment] = ACTIONS(76), }, - [1727] = { - [sym__primary_expression] = STATE(1815), + [1819] = { + [sym__primary_expression] = STATE(1907), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -60543,13 +62988,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -60558,207 +63003,207 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1728] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(2709), - [anon_sym_PERCENT] = ACTIONS(2719), - [anon_sym_SLASH_SLASH] = ACTIONS(2719), - [anon_sym_STAR_STAR] = ACTIONS(2721), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1820] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2847), + [anon_sym_SLASH_SLASH] = ACTIONS(2847), + [anon_sym_STAR_STAR] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1729] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_SLASH] = ACTIONS(2709), - [anon_sym_PERCENT] = ACTIONS(2719), - [anon_sym_SLASH_SLASH] = ACTIONS(2719), - [anon_sym_STAR_STAR] = ACTIONS(2721), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_LT_LT] = ACTIONS(2711), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1821] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(2839), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2847), + [anon_sym_SLASH_SLASH] = ACTIONS(2847), + [anon_sym_STAR_STAR] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_CARET] = ACTIONS(2855), + [anon_sym_LT_LT] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1730] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_SLASH] = ACTIONS(2709), - [anon_sym_PERCENT] = ACTIONS(2719), - [anon_sym_SLASH_SLASH] = ACTIONS(2719), - [anon_sym_STAR_STAR] = ACTIONS(2721), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_LT_LT] = ACTIONS(2711), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1822] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(2839), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2847), + [anon_sym_SLASH_SLASH] = ACTIONS(2847), + [anon_sym_STAR_STAR] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(2855), + [anon_sym_LT_LT] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1731] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_SLASH] = ACTIONS(2709), - [anon_sym_PERCENT] = ACTIONS(2719), - [anon_sym_SLASH_SLASH] = ACTIONS(2719), - [anon_sym_STAR_STAR] = ACTIONS(2721), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(2711), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), + [1823] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(2839), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2847), + [anon_sym_SLASH_SLASH] = ACTIONS(2847), + [anon_sym_STAR_STAR] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1732] = { - [aux_sym_comparison_operator_repeat1] = STATE(1732), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(3167), - [anon_sym_not] = ACTIONS(3170), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_LT_EQ] = ACTIONS(3167), - [anon_sym_EQ_EQ] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_GT_EQ] = ACTIONS(3167), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_LT_GT] = ACTIONS(3167), - [anon_sym_is] = ACTIONS(3176), - [anon_sym_RBRACE] = ACTIONS(1581), + [1824] = { + [aux_sym_comparison_operator_repeat1] = STATE(1824), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(3301), + [anon_sym_not] = ACTIONS(3304), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(3307), + [anon_sym_LT_EQ] = ACTIONS(3301), + [anon_sym_EQ_EQ] = ACTIONS(3301), + [anon_sym_BANG_EQ] = ACTIONS(3301), + [anon_sym_GT_EQ] = ACTIONS(3301), + [anon_sym_GT] = ACTIONS(3307), + [anon_sym_LT_GT] = ACTIONS(3301), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_RBRACE] = ACTIONS(1647), [sym_comment] = ACTIONS(76), }, - [1733] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1825] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1734] = { - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_COLON] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1599), - [anon_sym_RBRACK] = ACTIONS(2741), + [1826] = { + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_COLON] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1665), + [anon_sym_RBRACK] = ACTIONS(2869), [sym_comment] = ACTIONS(76), }, - [1735] = { - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_and] = ACTIONS(1383), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_RBRACK] = ACTIONS(3179), + [1827] = { + [anon_sym_COMMA] = ACTIONS(3313), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_and] = ACTIONS(1449), + [anon_sym_or] = ACTIONS(1451), + [anon_sym_RBRACK] = ACTIONS(3313), [sym_comment] = ACTIONS(76), }, - [1736] = { - [sym_aliased_import] = STATE(1584), - [sym_dotted_name] = STATE(1585), - [sym_identifier] = ACTIONS(1656), + [1828] = { + [sym_aliased_import] = STATE(1673), + [sym_dotted_name] = STATE(1674), + [sym_identifier] = ACTIONS(1722), [sym_comment] = ACTIONS(76), }, - [1737] = { - [anon_sym_RPAREN] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_if] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3181), - [anon_sym_RBRACK] = ACTIONS(3181), - [anon_sym_RBRACE] = ACTIONS(3181), + [1829] = { + [anon_sym_RPAREN] = ACTIONS(3315), + [anon_sym_COMMA] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_RBRACK] = ACTIONS(3315), + [anon_sym_RBRACE] = ACTIONS(3315), [sym_comment] = ACTIONS(76), }, - [1738] = { - [sym__expression_within_for_in_clause] = STATE(1816), - [sym__expression] = STATE(1363), + [1830] = { + [sym__expression_within_for_in_clause] = STATE(1908), + [sym__expression] = STATE(1442), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -60766,7 +63211,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -60789,7 +63234,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(94), [anon_sym_DASH] = ACTIONS(94), [anon_sym_TILDE] = ACTIONS(94), - [anon_sym_lambda] = ACTIONS(2327), + [anon_sym_lambda] = ACTIONS(2435), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), @@ -60803,18 +63248,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(112), [sym_comment] = ACTIONS(76), }, - [1739] = { - [anon_sym_RPAREN] = ACTIONS(3183), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_RBRACK] = ACTIONS(3183), - [anon_sym_RBRACE] = ACTIONS(3183), + [1831] = { + [anon_sym_RPAREN] = ACTIONS(3317), + [anon_sym_COMMA] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_RBRACK] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), [sym_comment] = ACTIONS(76), }, - [1740] = { - [sym__expression_within_for_in_clause] = STATE(1739), - [sym__expression] = STATE(1363), + [1832] = { + [sym__expression_within_for_in_clause] = STATE(1831), + [sym__expression] = STATE(1442), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -60822,7 +63267,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -60839,16 +63284,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(61), [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(3185), + [anon_sym_RPAREN] = ACTIONS(3319), [anon_sym_print] = ACTIONS(90), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), [anon_sym_exec] = ACTIONS(90), [anon_sym_not] = ACTIONS(92), [anon_sym_PLUS] = ACTIONS(94), [anon_sym_DASH] = ACTIONS(94), [anon_sym_TILDE] = ACTIONS(94), - [anon_sym_lambda] = ACTIONS(2327), + [anon_sym_lambda] = ACTIONS(2435), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), @@ -60862,25 +63307,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(112), [sym_comment] = ACTIONS(76), }, - [1741] = { - [aux_sym_for_in_clause_repeat1] = STATE(1741), - [anon_sym_RPAREN] = ACTIONS(3183), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), + [1833] = { + [aux_sym_for_in_clause_repeat1] = STATE(1833), + [anon_sym_RPAREN] = ACTIONS(3317), + [anon_sym_COMMA] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), [sym_comment] = ACTIONS(76), }, - [1742] = { - [anon_sym_RPAREN] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(2333), - [anon_sym_or] = ACTIONS(2335), + [1834] = { + [anon_sym_RPAREN] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(2441), + [anon_sym_or] = ACTIONS(2443), [sym_comment] = ACTIONS(76), }, - [1743] = { - [sym__expression] = STATE(1818), - [sym__primary_expression] = STATE(1045), + [1835] = { + [sym__expression] = STATE(1910), + [sym__primary_expression] = STATE(1103), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -60905,175 +63350,175 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_lambda] = ACTIONS(1717), + [anon_sym_not] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), + [anon_sym_lambda] = ACTIONS(1783), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1719), + [sym_string] = ACTIONS(1785), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(1787), [sym_comment] = ACTIONS(76), }, - [1744] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_GT_GT] = ACTIONS(2339), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_SLASH_SLASH] = ACTIONS(2347), - [anon_sym_STAR_STAR] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_CARET] = ACTIONS(2355), - [anon_sym_LT_LT] = ACTIONS(2339), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), + [1836] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2455), + [anon_sym_SLASH_SLASH] = ACTIONS(2455), + [anon_sym_STAR_STAR] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2459), + [anon_sym_AMP] = ACTIONS(2461), + [anon_sym_CARET] = ACTIONS(2463), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1745] = { - [ts_builtin_sym_end] = ACTIONS(3192), - [anon_sym_import] = ACTIONS(3194), - [anon_sym_from] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_print] = ACTIONS(3194), - [anon_sym_assert] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_del] = ACTIONS(3194), - [anon_sym_raise] = ACTIONS(3194), - [sym_pass_statement] = ACTIONS(3194), - [sym_break_statement] = ACTIONS(3194), - [sym_continue_statement] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_elif] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_with] = ACTIONS(3194), - [anon_sym_async] = ACTIONS(3194), - [anon_sym_def] = ACTIONS(3194), - [anon_sym_global] = ACTIONS(3194), - [anon_sym_nonlocal] = ACTIONS(3194), - [anon_sym_exec] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3192), - [anon_sym_not] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_lambda] = ACTIONS(3194), - [anon_sym_yield] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3192), - [sym_ellipsis] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3192), - [sym_string] = ACTIONS(3194), - [sym_integer] = ACTIONS(3194), - [sym_float] = ACTIONS(3194), - [sym_identifier] = ACTIONS(3196), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [sym_none] = ACTIONS(3194), - [anon_sym_await] = ACTIONS(3194), + [1837] = { + [ts_builtin_sym_end] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3328), + [anon_sym_from] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_print] = ACTIONS(3328), + [anon_sym_assert] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_del] = ACTIONS(3328), + [anon_sym_raise] = ACTIONS(3328), + [sym_pass_statement] = ACTIONS(3328), + [sym_break_statement] = ACTIONS(3328), + [sym_continue_statement] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_elif] = ACTIONS(3328), + [anon_sym_else] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_with] = ACTIONS(3328), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_def] = ACTIONS(3328), + [anon_sym_global] = ACTIONS(3328), + [anon_sym_nonlocal] = ACTIONS(3328), + [anon_sym_exec] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_lambda] = ACTIONS(3328), + [anon_sym_yield] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3326), + [sym_ellipsis] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [sym_string] = ACTIONS(3328), + [sym_integer] = ACTIONS(3328), + [sym_float] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3330), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_none] = ACTIONS(3328), + [anon_sym_await] = ACTIONS(3328), [sym_comment] = ACTIONS(76), }, - [1746] = { - [sym__dedent] = ACTIONS(1892), - [anon_sym_import] = ACTIONS(1894), - [anon_sym_from] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_print] = ACTIONS(1894), - [anon_sym_assert] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_del] = ACTIONS(1894), - [anon_sym_raise] = ACTIONS(1894), - [sym_pass_statement] = ACTIONS(1894), - [sym_break_statement] = ACTIONS(1894), - [sym_continue_statement] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_elif] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_with] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1894), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_global] = ACTIONS(1894), - [anon_sym_nonlocal] = ACTIONS(1894), - [anon_sym_exec] = ACTIONS(1894), - [anon_sym_class] = ACTIONS(1894), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_lambda] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1892), - [sym_ellipsis] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1892), - [sym_string] = ACTIONS(1894), - [sym_integer] = ACTIONS(1894), - [sym_float] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [sym_true] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [sym_none] = ACTIONS(1894), - [anon_sym_await] = ACTIONS(1894), + [1838] = { + [sym__dedent] = ACTIONS(1993), + [anon_sym_import] = ACTIONS(1995), + [anon_sym_from] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_del] = ACTIONS(1995), + [anon_sym_raise] = ACTIONS(1995), + [sym_pass_statement] = ACTIONS(1995), + [sym_break_statement] = ACTIONS(1995), + [sym_continue_statement] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_elif] = ACTIONS(1995), + [anon_sym_else] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1995), + [anon_sym_with] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1995), + [anon_sym_global] = ACTIONS(1995), + [anon_sym_nonlocal] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_class] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(1993), + [anon_sym_not] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_lambda] = ACTIONS(1995), + [anon_sym_yield] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1993), + [sym_ellipsis] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [sym_string] = ACTIONS(1995), + [sym_integer] = ACTIONS(1995), + [sym_float] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1997), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_none] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(1995), [sym_comment] = ACTIONS(76), }, - [1747] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [1839] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -61102,9 +63547,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1130), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(3198), + [aux_sym_module_repeat1] = STATE(1206), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(3332), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -61113,20 +63558,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -61147,64 +63592,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1748] = { - [sym__dedent] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_from] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_print] = ACTIONS(552), - [anon_sym_assert] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_del] = ACTIONS(552), - [anon_sym_raise] = ACTIONS(552), - [sym_pass_statement] = ACTIONS(552), - [sym_break_statement] = ACTIONS(552), - [sym_continue_statement] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_elif] = ACTIONS(552), - [anon_sym_else] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_try] = ACTIONS(552), - [anon_sym_with] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_def] = ACTIONS(552), - [anon_sym_global] = ACTIONS(552), - [anon_sym_nonlocal] = ACTIONS(552), - [anon_sym_exec] = ACTIONS(552), - [anon_sym_class] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(550), - [anon_sym_not] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_TILDE] = ACTIONS(550), - [anon_sym_lambda] = ACTIONS(552), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_LBRACK] = ACTIONS(550), - [sym_ellipsis] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(550), - [sym_string] = ACTIONS(552), - [sym_integer] = ACTIONS(552), - [sym_float] = ACTIONS(552), - [sym_identifier] = ACTIONS(554), - [sym_true] = ACTIONS(552), - [sym_false] = ACTIONS(552), - [sym_none] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), + [1840] = { + [sym__dedent] = ACTIONS(584), + [anon_sym_import] = ACTIONS(586), + [anon_sym_from] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_print] = ACTIONS(586), + [anon_sym_assert] = ACTIONS(586), + [anon_sym_return] = ACTIONS(586), + [anon_sym_del] = ACTIONS(586), + [anon_sym_raise] = ACTIONS(586), + [sym_pass_statement] = ACTIONS(586), + [sym_break_statement] = ACTIONS(586), + [sym_continue_statement] = ACTIONS(586), + [anon_sym_if] = ACTIONS(586), + [anon_sym_elif] = ACTIONS(586), + [anon_sym_else] = ACTIONS(586), + [anon_sym_for] = ACTIONS(586), + [anon_sym_while] = ACTIONS(586), + [anon_sym_try] = ACTIONS(586), + [anon_sym_with] = ACTIONS(586), + [anon_sym_async] = ACTIONS(586), + [anon_sym_def] = ACTIONS(586), + [anon_sym_global] = ACTIONS(586), + [anon_sym_nonlocal] = ACTIONS(586), + [anon_sym_exec] = ACTIONS(586), + [anon_sym_class] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_not] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_TILDE] = ACTIONS(584), + [anon_sym_lambda] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(584), + [sym_ellipsis] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(584), + [sym_string] = ACTIONS(586), + [sym_integer] = ACTIONS(586), + [sym_float] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [sym_true] = ACTIONS(586), + [sym_false] = ACTIONS(586), + [sym_none] = ACTIONS(586), + [anon_sym_await] = ACTIONS(586), [sym_comment] = ACTIONS(76), }, - [1749] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [1841] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -61232,7 +63677,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(3200), + [sym__newline] = ACTIONS(3334), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -61241,9 +63686,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -61266,15 +63711,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1750] = { - [aux_sym__simple_statements_repeat1] = STATE(335), - [sym__newline] = ACTIONS(3200), + [1842] = { + [aux_sym__simple_statements_repeat1] = STATE(362), + [sym__newline] = ACTIONS(3334), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(3202), + [sym__semicolon] = ACTIONS(3336), }, - [1751] = { - [sym__expression] = STATE(1822), - [sym__primary_expression] = STATE(105), + [1843] = { + [sym__expression] = STATE(1914), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -61299,181 +63744,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [1752] = { - [anon_sym_COLON] = ACTIONS(3204), + [1844] = { + [anon_sym_COLON] = ACTIONS(3338), [sym_comment] = ACTIONS(76), }, - [1753] = { - [sym__dedent] = ACTIONS(2419), - [anon_sym_import] = ACTIONS(2421), - [anon_sym_from] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_print] = ACTIONS(2421), - [anon_sym_assert] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_del] = ACTIONS(2421), - [anon_sym_raise] = ACTIONS(2421), - [sym_pass_statement] = ACTIONS(2421), - [sym_break_statement] = ACTIONS(2421), - [sym_continue_statement] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_elif] = ACTIONS(2421), - [anon_sym_else] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_with] = ACTIONS(2421), - [anon_sym_async] = ACTIONS(2421), - [anon_sym_def] = ACTIONS(2421), - [anon_sym_global] = ACTIONS(2421), - [anon_sym_nonlocal] = ACTIONS(2421), - [anon_sym_exec] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_AT] = ACTIONS(2419), - [anon_sym_not] = ACTIONS(2421), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_lambda] = ACTIONS(2421), - [anon_sym_yield] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(2419), - [sym_ellipsis] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [sym_string] = ACTIONS(2421), - [sym_integer] = ACTIONS(2421), - [sym_float] = ACTIONS(2421), - [sym_identifier] = ACTIONS(2423), - [sym_true] = ACTIONS(2421), - [sym_false] = ACTIONS(2421), - [sym_none] = ACTIONS(2421), - [anon_sym_await] = ACTIONS(2421), + [1845] = { + [sym__dedent] = ACTIONS(2543), + [anon_sym_import] = ACTIONS(2545), + [anon_sym_from] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2543), + [anon_sym_print] = ACTIONS(2545), + [anon_sym_assert] = ACTIONS(2545), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_del] = ACTIONS(2545), + [anon_sym_raise] = ACTIONS(2545), + [sym_pass_statement] = ACTIONS(2545), + [sym_break_statement] = ACTIONS(2545), + [sym_continue_statement] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_elif] = ACTIONS(2545), + [anon_sym_else] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [anon_sym_with] = ACTIONS(2545), + [anon_sym_async] = ACTIONS(2545), + [anon_sym_def] = ACTIONS(2545), + [anon_sym_global] = ACTIONS(2545), + [anon_sym_nonlocal] = ACTIONS(2545), + [anon_sym_exec] = ACTIONS(2545), + [anon_sym_class] = ACTIONS(2545), + [anon_sym_AT] = ACTIONS(2543), + [anon_sym_not] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_lambda] = ACTIONS(2545), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_LBRACK] = ACTIONS(2543), + [sym_ellipsis] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2543), + [sym_string] = ACTIONS(2545), + [sym_integer] = ACTIONS(2545), + [sym_float] = ACTIONS(2545), + [sym_identifier] = ACTIONS(2547), + [sym_true] = ACTIONS(2545), + [sym_false] = ACTIONS(2545), + [sym_none] = ACTIONS(2545), + [anon_sym_await] = ACTIONS(2545), [sym_comment] = ACTIONS(76), }, - [1754] = { - [sym__dedent] = ACTIONS(2425), - [anon_sym_import] = ACTIONS(2427), - [anon_sym_from] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_print] = ACTIONS(2427), - [anon_sym_assert] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_del] = ACTIONS(2427), - [anon_sym_raise] = ACTIONS(2427), - [sym_pass_statement] = ACTIONS(2427), - [sym_break_statement] = ACTIONS(2427), - [sym_continue_statement] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [anon_sym_try] = ACTIONS(2427), - [anon_sym_with] = ACTIONS(2427), - [anon_sym_async] = ACTIONS(2427), - [anon_sym_def] = ACTIONS(2427), - [anon_sym_global] = ACTIONS(2427), - [anon_sym_nonlocal] = ACTIONS(2427), - [anon_sym_exec] = ACTIONS(2427), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_AT] = ACTIONS(2425), - [anon_sym_not] = ACTIONS(2427), - [anon_sym_PLUS] = ACTIONS(2425), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_TILDE] = ACTIONS(2425), - [anon_sym_lambda] = ACTIONS(2427), - [anon_sym_yield] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2425), - [sym_ellipsis] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2425), - [sym_string] = ACTIONS(2427), - [sym_integer] = ACTIONS(2427), - [sym_float] = ACTIONS(2427), - [sym_identifier] = ACTIONS(2429), - [sym_true] = ACTIONS(2427), - [sym_false] = ACTIONS(2427), - [sym_none] = ACTIONS(2427), - [anon_sym_await] = ACTIONS(2427), + [1846] = { + [sym__dedent] = ACTIONS(2549), + [anon_sym_import] = ACTIONS(2551), + [anon_sym_from] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_print] = ACTIONS(2551), + [anon_sym_assert] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_del] = ACTIONS(2551), + [anon_sym_raise] = ACTIONS(2551), + [sym_pass_statement] = ACTIONS(2551), + [sym_break_statement] = ACTIONS(2551), + [sym_continue_statement] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_with] = ACTIONS(2551), + [anon_sym_async] = ACTIONS(2551), + [anon_sym_def] = ACTIONS(2551), + [anon_sym_global] = ACTIONS(2551), + [anon_sym_nonlocal] = ACTIONS(2551), + [anon_sym_exec] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_TILDE] = ACTIONS(2549), + [anon_sym_lambda] = ACTIONS(2551), + [anon_sym_yield] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), + [sym_ellipsis] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2549), + [sym_string] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2553), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_none] = ACTIONS(2551), + [anon_sym_await] = ACTIONS(2551), [sym_comment] = ACTIONS(76), }, - [1755] = { - [sym_elif_clause] = STATE(1753), - [sym_else_clause] = STATE(1824), - [aux_sym_if_statement_repeat1] = STATE(1825), - [sym__dedent] = ACTIONS(2425), - [anon_sym_import] = ACTIONS(2427), - [anon_sym_from] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_print] = ACTIONS(2427), - [anon_sym_assert] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_del] = ACTIONS(2427), - [anon_sym_raise] = ACTIONS(2427), - [sym_pass_statement] = ACTIONS(2427), - [sym_break_statement] = ACTIONS(2427), - [sym_continue_statement] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_elif] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [anon_sym_try] = ACTIONS(2427), - [anon_sym_with] = ACTIONS(2427), - [anon_sym_async] = ACTIONS(2427), - [anon_sym_def] = ACTIONS(2427), - [anon_sym_global] = ACTIONS(2427), - [anon_sym_nonlocal] = ACTIONS(2427), - [anon_sym_exec] = ACTIONS(2427), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_AT] = ACTIONS(2425), - [anon_sym_not] = ACTIONS(2427), - [anon_sym_PLUS] = ACTIONS(2425), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_TILDE] = ACTIONS(2425), - [anon_sym_lambda] = ACTIONS(2427), - [anon_sym_yield] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2425), - [sym_ellipsis] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2425), - [sym_string] = ACTIONS(2427), - [sym_integer] = ACTIONS(2427), - [sym_float] = ACTIONS(2427), - [sym_identifier] = ACTIONS(2429), - [sym_true] = ACTIONS(2427), - [sym_false] = ACTIONS(2427), - [sym_none] = ACTIONS(2427), - [anon_sym_await] = ACTIONS(2427), + [1847] = { + [sym_elif_clause] = STATE(1845), + [sym_else_clause] = STATE(1916), + [aux_sym_if_statement_repeat1] = STATE(1917), + [sym__dedent] = ACTIONS(2549), + [anon_sym_import] = ACTIONS(2551), + [anon_sym_from] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_print] = ACTIONS(2551), + [anon_sym_assert] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_del] = ACTIONS(2551), + [anon_sym_raise] = ACTIONS(2551), + [sym_pass_statement] = ACTIONS(2551), + [sym_break_statement] = ACTIONS(2551), + [sym_continue_statement] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_elif] = ACTIONS(3209), + [anon_sym_else] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_with] = ACTIONS(2551), + [anon_sym_async] = ACTIONS(2551), + [anon_sym_def] = ACTIONS(2551), + [anon_sym_global] = ACTIONS(2551), + [anon_sym_nonlocal] = ACTIONS(2551), + [anon_sym_exec] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_TILDE] = ACTIONS(2549), + [anon_sym_lambda] = ACTIONS(2551), + [anon_sym_yield] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), + [sym_ellipsis] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2549), + [sym_string] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2553), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_none] = ACTIONS(2551), + [anon_sym_await] = ACTIONS(2551), [sym_comment] = ACTIONS(76), }, - [1756] = { - [sym__simple_statements] = STATE(1628), - [sym_import_statement] = STATE(1627), - [sym_import_from_statement] = STATE(1627), - [sym_print_statement] = STATE(1627), - [sym_assert_statement] = STATE(1627), - [sym_expression_statement] = STATE(1627), - [sym_return_statement] = STATE(1627), - [sym_delete_statement] = STATE(1627), - [sym_raise_statement] = STATE(1627), - [sym_global_statement] = STATE(1627), - [sym_nonlocal_statement] = STATE(1627), - [sym_exec_statement] = STATE(1627), - [sym__suite] = STATE(1826), + [1848] = { + [sym__simple_statements] = STATE(1719), + [sym_import_statement] = STATE(1718), + [sym_import_from_statement] = STATE(1718), + [sym_print_statement] = STATE(1718), + [sym_assert_statement] = STATE(1718), + [sym_expression_statement] = STATE(1718), + [sym_return_statement] = STATE(1718), + [sym_delete_statement] = STATE(1718), + [sym_raise_statement] = STATE(1718), + [sym_global_statement] = STATE(1718), + [sym_nonlocal_statement] = STATE(1718), + [sym_exec_statement] = STATE(1718), + [sym__suite] = STATE(1918), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -61501,7 +63946,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(2867), + [sym__indent] = ACTIONS(2999), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -61510,9 +63955,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(2869), - [sym_break_statement] = ACTIONS(2869), - [sym_continue_statement] = ACTIONS(2869), + [sym_pass_statement] = ACTIONS(3001), + [sym_break_statement] = ACTIONS(3001), + [sym_continue_statement] = ACTIONS(3001), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -61535,75 +63980,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1757] = { - [sym__dedent] = ACTIONS(1892), - [anon_sym_import] = ACTIONS(1894), - [anon_sym_from] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_print] = ACTIONS(1894), - [anon_sym_assert] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_del] = ACTIONS(1894), - [anon_sym_raise] = ACTIONS(1894), - [sym_pass_statement] = ACTIONS(1894), - [sym_break_statement] = ACTIONS(1894), - [sym_continue_statement] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_with] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1894), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_global] = ACTIONS(1894), - [anon_sym_nonlocal] = ACTIONS(1894), - [anon_sym_exec] = ACTIONS(1894), - [anon_sym_class] = ACTIONS(1894), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_lambda] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1892), - [sym_ellipsis] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1892), - [sym_string] = ACTIONS(1894), - [sym_integer] = ACTIONS(1894), - [sym_float] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [sym_true] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [sym_none] = ACTIONS(1894), - [anon_sym_await] = ACTIONS(1894), + [1849] = { + [sym__dedent] = ACTIONS(1993), + [anon_sym_import] = ACTIONS(1995), + [anon_sym_from] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_del] = ACTIONS(1995), + [anon_sym_raise] = ACTIONS(1995), + [sym_pass_statement] = ACTIONS(1995), + [sym_break_statement] = ACTIONS(1995), + [sym_continue_statement] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_else] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1995), + [anon_sym_with] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1995), + [anon_sym_global] = ACTIONS(1995), + [anon_sym_nonlocal] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_class] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(1993), + [anon_sym_not] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_lambda] = ACTIONS(1995), + [anon_sym_yield] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1993), + [sym_ellipsis] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [sym_string] = ACTIONS(1995), + [sym_integer] = ACTIONS(1995), + [sym_float] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1997), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_none] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(1995), [sym_comment] = ACTIONS(76), }, - [1758] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [1850] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -61632,9 +64077,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1130), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(3206), + [aux_sym_module_repeat1] = STATE(1206), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(3340), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -61643,20 +64088,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -61677,63 +64122,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1759] = { - [sym__dedent] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_from] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_print] = ACTIONS(552), - [anon_sym_assert] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_del] = ACTIONS(552), - [anon_sym_raise] = ACTIONS(552), - [sym_pass_statement] = ACTIONS(552), - [sym_break_statement] = ACTIONS(552), - [sym_continue_statement] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_else] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_try] = ACTIONS(552), - [anon_sym_with] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_def] = ACTIONS(552), - [anon_sym_global] = ACTIONS(552), - [anon_sym_nonlocal] = ACTIONS(552), - [anon_sym_exec] = ACTIONS(552), - [anon_sym_class] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(550), - [anon_sym_not] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_TILDE] = ACTIONS(550), - [anon_sym_lambda] = ACTIONS(552), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_LBRACK] = ACTIONS(550), - [sym_ellipsis] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(550), - [sym_string] = ACTIONS(552), - [sym_integer] = ACTIONS(552), - [sym_float] = ACTIONS(552), - [sym_identifier] = ACTIONS(554), - [sym_true] = ACTIONS(552), - [sym_false] = ACTIONS(552), - [sym_none] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), + [1851] = { + [sym__dedent] = ACTIONS(584), + [anon_sym_import] = ACTIONS(586), + [anon_sym_from] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_print] = ACTIONS(586), + [anon_sym_assert] = ACTIONS(586), + [anon_sym_return] = ACTIONS(586), + [anon_sym_del] = ACTIONS(586), + [anon_sym_raise] = ACTIONS(586), + [sym_pass_statement] = ACTIONS(586), + [sym_break_statement] = ACTIONS(586), + [sym_continue_statement] = ACTIONS(586), + [anon_sym_if] = ACTIONS(586), + [anon_sym_else] = ACTIONS(586), + [anon_sym_for] = ACTIONS(586), + [anon_sym_while] = ACTIONS(586), + [anon_sym_try] = ACTIONS(586), + [anon_sym_with] = ACTIONS(586), + [anon_sym_async] = ACTIONS(586), + [anon_sym_def] = ACTIONS(586), + [anon_sym_global] = ACTIONS(586), + [anon_sym_nonlocal] = ACTIONS(586), + [anon_sym_exec] = ACTIONS(586), + [anon_sym_class] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_not] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_TILDE] = ACTIONS(584), + [anon_sym_lambda] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(584), + [sym_ellipsis] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(584), + [sym_string] = ACTIONS(586), + [sym_integer] = ACTIONS(586), + [sym_float] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [sym_true] = ACTIONS(586), + [sym_false] = ACTIONS(586), + [sym_none] = ACTIONS(586), + [anon_sym_await] = ACTIONS(586), [sym_comment] = ACTIONS(76), }, - [1760] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [1852] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -61761,7 +64206,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(3208), + [sym__newline] = ACTIONS(3342), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -61770,9 +64215,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -61795,70 +64240,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1761] = { - [aux_sym__simple_statements_repeat1] = STATE(335), - [sym__newline] = ACTIONS(3208), + [1853] = { + [aux_sym__simple_statements_repeat1] = STATE(362), + [sym__newline] = ACTIONS(3342), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(3210), + [sym__semicolon] = ACTIONS(3344), }, - [1762] = { - [sym__dedent] = ACTIONS(2439), - [anon_sym_import] = ACTIONS(2441), - [anon_sym_from] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_print] = ACTIONS(2441), - [anon_sym_assert] = ACTIONS(2441), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_del] = ACTIONS(2441), - [anon_sym_raise] = ACTIONS(2441), - [sym_pass_statement] = ACTIONS(2441), - [sym_break_statement] = ACTIONS(2441), - [sym_continue_statement] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_with] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_def] = ACTIONS(2441), - [anon_sym_global] = ACTIONS(2441), - [anon_sym_nonlocal] = ACTIONS(2441), - [anon_sym_exec] = ACTIONS(2441), - [anon_sym_class] = ACTIONS(2441), - [anon_sym_AT] = ACTIONS(2439), - [anon_sym_not] = ACTIONS(2441), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_lambda] = ACTIONS(2441), - [anon_sym_yield] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(2439), - [sym_ellipsis] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [sym_string] = ACTIONS(2441), - [sym_integer] = ACTIONS(2441), - [sym_float] = ACTIONS(2441), - [sym_identifier] = ACTIONS(2443), - [sym_true] = ACTIONS(2441), - [sym_false] = ACTIONS(2441), - [sym_none] = ACTIONS(2441), - [anon_sym_await] = ACTIONS(2441), + [1854] = { + [sym__dedent] = ACTIONS(2563), + [anon_sym_import] = ACTIONS(2565), + [anon_sym_from] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2563), + [anon_sym_print] = ACTIONS(2565), + [anon_sym_assert] = ACTIONS(2565), + [anon_sym_return] = ACTIONS(2565), + [anon_sym_del] = ACTIONS(2565), + [anon_sym_raise] = ACTIONS(2565), + [sym_pass_statement] = ACTIONS(2565), + [sym_break_statement] = ACTIONS(2565), + [sym_continue_statement] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(2565), + [anon_sym_for] = ACTIONS(2565), + [anon_sym_while] = ACTIONS(2565), + [anon_sym_try] = ACTIONS(2565), + [anon_sym_with] = ACTIONS(2565), + [anon_sym_async] = ACTIONS(2565), + [anon_sym_def] = ACTIONS(2565), + [anon_sym_global] = ACTIONS(2565), + [anon_sym_nonlocal] = ACTIONS(2565), + [anon_sym_exec] = ACTIONS(2565), + [anon_sym_class] = ACTIONS(2565), + [anon_sym_AT] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2565), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(2563), + [sym_ellipsis] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [sym_string] = ACTIONS(2565), + [sym_integer] = ACTIONS(2565), + [sym_float] = ACTIONS(2565), + [sym_identifier] = ACTIONS(2567), + [sym_true] = ACTIONS(2565), + [sym_false] = ACTIONS(2565), + [sym_none] = ACTIONS(2565), + [anon_sym_await] = ACTIONS(2565), [sym_comment] = ACTIONS(76), }, - [1763] = { - [sym__simple_statements] = STATE(1832), - [sym_import_statement] = STATE(1831), - [sym_import_from_statement] = STATE(1831), - [sym_print_statement] = STATE(1831), - [sym_assert_statement] = STATE(1831), - [sym_expression_statement] = STATE(1831), - [sym_return_statement] = STATE(1831), - [sym_delete_statement] = STATE(1831), - [sym_raise_statement] = STATE(1831), - [sym_global_statement] = STATE(1831), - [sym_nonlocal_statement] = STATE(1831), - [sym_exec_statement] = STATE(1831), - [sym__suite] = STATE(1833), + [1855] = { + [sym__simple_statements] = STATE(1924), + [sym_import_statement] = STATE(1923), + [sym_import_from_statement] = STATE(1923), + [sym_print_statement] = STATE(1923), + [sym_assert_statement] = STATE(1923), + [sym_expression_statement] = STATE(1923), + [sym_return_statement] = STATE(1923), + [sym_delete_statement] = STATE(1923), + [sym_raise_statement] = STATE(1923), + [sym_global_statement] = STATE(1923), + [sym_nonlocal_statement] = STATE(1923), + [sym_exec_statement] = STATE(1923), + [sym__suite] = STATE(1925), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -61886,7 +64331,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(3212), + [sym__indent] = ACTIONS(3346), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -61895,9 +64340,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(3214), - [sym_break_statement] = ACTIONS(3214), - [sym_continue_statement] = ACTIONS(3214), + [sym_pass_statement] = ACTIONS(3348), + [sym_break_statement] = ACTIONS(3348), + [sym_continue_statement] = ACTIONS(3348), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -61920,29 +64365,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1764] = { - [anon_sym_COMMA] = ACTIONS(3216), - [anon_sym_as] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(634), - [anon_sym_COLON] = ACTIONS(3218), - [anon_sym_and] = ACTIONS(636), - [anon_sym_or] = ACTIONS(638), + [1856] = { + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_as] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(668), + [anon_sym_COLON] = ACTIONS(3352), + [anon_sym_and] = ACTIONS(670), + [anon_sym_or] = ACTIONS(672), [sym_comment] = ACTIONS(76), }, - [1765] = { - [sym__simple_statements] = STATE(1636), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym__suite] = STATE(1836), + [1857] = { + [sym__simple_statements] = STATE(1727), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym__suite] = STATE(1928), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -61970,7 +64415,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(2875), + [sym__indent] = ACTIONS(3007), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -61979,9 +64424,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -62004,217 +64449,217 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1766] = { - [anon_sym_COLON] = ACTIONS(3220), + [1858] = { + [anon_sym_COLON] = ACTIONS(3354), [sym_comment] = ACTIONS(76), }, - [1767] = { - [sym_finally_clause] = STATE(1838), - [sym__dedent] = ACTIONS(2500), - [anon_sym_import] = ACTIONS(2502), - [anon_sym_from] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_print] = ACTIONS(2502), - [anon_sym_assert] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_del] = ACTIONS(2502), - [anon_sym_raise] = ACTIONS(2502), - [sym_pass_statement] = ACTIONS(2502), - [sym_break_statement] = ACTIONS(2502), - [sym_continue_statement] = ACTIONS(2502), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2502), - [anon_sym_finally] = ACTIONS(3095), - [anon_sym_with] = ACTIONS(2502), - [anon_sym_async] = ACTIONS(2502), - [anon_sym_def] = ACTIONS(2502), - [anon_sym_global] = ACTIONS(2502), - [anon_sym_nonlocal] = ACTIONS(2502), - [anon_sym_exec] = ACTIONS(2502), - [anon_sym_class] = ACTIONS(2502), - [anon_sym_AT] = ACTIONS(2500), - [anon_sym_not] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_TILDE] = ACTIONS(2500), - [anon_sym_lambda] = ACTIONS(2502), - [anon_sym_yield] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [sym_ellipsis] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2500), - [sym_string] = ACTIONS(2502), - [sym_integer] = ACTIONS(2502), - [sym_float] = ACTIONS(2502), - [sym_identifier] = ACTIONS(2504), - [sym_true] = ACTIONS(2502), - [sym_false] = ACTIONS(2502), - [sym_none] = ACTIONS(2502), - [anon_sym_await] = ACTIONS(2502), + [1859] = { + [sym_finally_clause] = STATE(1930), + [sym__dedent] = ACTIONS(2624), + [anon_sym_import] = ACTIONS(2626), + [anon_sym_from] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_print] = ACTIONS(2626), + [anon_sym_assert] = ACTIONS(2626), + [anon_sym_return] = ACTIONS(2626), + [anon_sym_del] = ACTIONS(2626), + [anon_sym_raise] = ACTIONS(2626), + [sym_pass_statement] = ACTIONS(2626), + [sym_break_statement] = ACTIONS(2626), + [sym_continue_statement] = ACTIONS(2626), + [anon_sym_if] = ACTIONS(2626), + [anon_sym_for] = ACTIONS(2626), + [anon_sym_while] = ACTIONS(2626), + [anon_sym_try] = ACTIONS(2626), + [anon_sym_finally] = ACTIONS(3229), + [anon_sym_with] = ACTIONS(2626), + [anon_sym_async] = ACTIONS(2626), + [anon_sym_def] = ACTIONS(2626), + [anon_sym_global] = ACTIONS(2626), + [anon_sym_nonlocal] = ACTIONS(2626), + [anon_sym_exec] = ACTIONS(2626), + [anon_sym_class] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(2624), + [anon_sym_not] = ACTIONS(2626), + [anon_sym_PLUS] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_lambda] = ACTIONS(2626), + [anon_sym_yield] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2624), + [sym_ellipsis] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2624), + [sym_string] = ACTIONS(2626), + [sym_integer] = ACTIONS(2626), + [sym_float] = ACTIONS(2626), + [sym_identifier] = ACTIONS(2628), + [sym_true] = ACTIONS(2626), + [sym_false] = ACTIONS(2626), + [sym_none] = ACTIONS(2626), + [anon_sym_await] = ACTIONS(2626), [sym_comment] = ACTIONS(76), }, - [1768] = { - [sym__dedent] = ACTIONS(2500), - [anon_sym_import] = ACTIONS(2502), - [anon_sym_from] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_print] = ACTIONS(2502), - [anon_sym_assert] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_del] = ACTIONS(2502), - [anon_sym_raise] = ACTIONS(2502), - [sym_pass_statement] = ACTIONS(2502), - [sym_break_statement] = ACTIONS(2502), - [sym_continue_statement] = ACTIONS(2502), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2502), - [anon_sym_with] = ACTIONS(2502), - [anon_sym_async] = ACTIONS(2502), - [anon_sym_def] = ACTIONS(2502), - [anon_sym_global] = ACTIONS(2502), - [anon_sym_nonlocal] = ACTIONS(2502), - [anon_sym_exec] = ACTIONS(2502), - [anon_sym_class] = ACTIONS(2502), - [anon_sym_AT] = ACTIONS(2500), - [anon_sym_not] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_TILDE] = ACTIONS(2500), - [anon_sym_lambda] = ACTIONS(2502), - [anon_sym_yield] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [sym_ellipsis] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2500), - [sym_string] = ACTIONS(2502), - [sym_integer] = ACTIONS(2502), - [sym_float] = ACTIONS(2502), - [sym_identifier] = ACTIONS(2504), - [sym_true] = ACTIONS(2502), - [sym_false] = ACTIONS(2502), - [sym_none] = ACTIONS(2502), - [anon_sym_await] = ACTIONS(2502), + [1860] = { + [sym__dedent] = ACTIONS(2624), + [anon_sym_import] = ACTIONS(2626), + [anon_sym_from] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_print] = ACTIONS(2626), + [anon_sym_assert] = ACTIONS(2626), + [anon_sym_return] = ACTIONS(2626), + [anon_sym_del] = ACTIONS(2626), + [anon_sym_raise] = ACTIONS(2626), + [sym_pass_statement] = ACTIONS(2626), + [sym_break_statement] = ACTIONS(2626), + [sym_continue_statement] = ACTIONS(2626), + [anon_sym_if] = ACTIONS(2626), + [anon_sym_for] = ACTIONS(2626), + [anon_sym_while] = ACTIONS(2626), + [anon_sym_try] = ACTIONS(2626), + [anon_sym_with] = ACTIONS(2626), + [anon_sym_async] = ACTIONS(2626), + [anon_sym_def] = ACTIONS(2626), + [anon_sym_global] = ACTIONS(2626), + [anon_sym_nonlocal] = ACTIONS(2626), + [anon_sym_exec] = ACTIONS(2626), + [anon_sym_class] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(2624), + [anon_sym_not] = ACTIONS(2626), + [anon_sym_PLUS] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_lambda] = ACTIONS(2626), + [anon_sym_yield] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2624), + [sym_ellipsis] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2624), + [sym_string] = ACTIONS(2626), + [sym_integer] = ACTIONS(2626), + [sym_float] = ACTIONS(2626), + [sym_identifier] = ACTIONS(2628), + [sym_true] = ACTIONS(2626), + [sym_false] = ACTIONS(2626), + [sym_none] = ACTIONS(2626), + [anon_sym_await] = ACTIONS(2626), [sym_comment] = ACTIONS(76), }, - [1769] = { - [sym_except_clause] = STATE(1632), - [aux_sym_try_statement_repeat1] = STATE(1769), - [sym__dedent] = ACTIONS(2506), - [anon_sym_import] = ACTIONS(2508), - [anon_sym_from] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2506), - [anon_sym_print] = ACTIONS(2508), - [anon_sym_assert] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2508), - [anon_sym_del] = ACTIONS(2508), - [anon_sym_raise] = ACTIONS(2508), - [sym_pass_statement] = ACTIONS(2508), - [sym_break_statement] = ACTIONS(2508), - [sym_continue_statement] = ACTIONS(2508), - [anon_sym_if] = ACTIONS(2508), - [anon_sym_else] = ACTIONS(2508), - [anon_sym_for] = ACTIONS(2508), - [anon_sym_while] = ACTIONS(2508), - [anon_sym_try] = ACTIONS(2508), - [anon_sym_except] = ACTIONS(3222), - [anon_sym_finally] = ACTIONS(2508), - [anon_sym_with] = ACTIONS(2508), - [anon_sym_async] = ACTIONS(2508), - [anon_sym_def] = ACTIONS(2508), - [anon_sym_global] = ACTIONS(2508), - [anon_sym_nonlocal] = ACTIONS(2508), - [anon_sym_exec] = ACTIONS(2508), - [anon_sym_class] = ACTIONS(2508), - [anon_sym_AT] = ACTIONS(2506), - [anon_sym_not] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2506), - [anon_sym_lambda] = ACTIONS(2508), - [anon_sym_yield] = ACTIONS(2508), - [anon_sym_LBRACK] = ACTIONS(2506), - [sym_ellipsis] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [sym_string] = ACTIONS(2508), - [sym_integer] = ACTIONS(2508), - [sym_float] = ACTIONS(2508), - [sym_identifier] = ACTIONS(2513), - [sym_true] = ACTIONS(2508), - [sym_false] = ACTIONS(2508), - [sym_none] = ACTIONS(2508), - [anon_sym_await] = ACTIONS(2508), + [1861] = { + [sym_except_clause] = STATE(1723), + [aux_sym_try_statement_repeat1] = STATE(1861), + [sym__dedent] = ACTIONS(2630), + [anon_sym_import] = ACTIONS(2632), + [anon_sym_from] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2630), + [anon_sym_print] = ACTIONS(2632), + [anon_sym_assert] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_del] = ACTIONS(2632), + [anon_sym_raise] = ACTIONS(2632), + [sym_pass_statement] = ACTIONS(2632), + [sym_break_statement] = ACTIONS(2632), + [sym_continue_statement] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_else] = ACTIONS(2632), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_except] = ACTIONS(3356), + [anon_sym_finally] = ACTIONS(2632), + [anon_sym_with] = ACTIONS(2632), + [anon_sym_async] = ACTIONS(2632), + [anon_sym_def] = ACTIONS(2632), + [anon_sym_global] = ACTIONS(2632), + [anon_sym_nonlocal] = ACTIONS(2632), + [anon_sym_exec] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2632), + [anon_sym_AT] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_lambda] = ACTIONS(2632), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2630), + [sym_ellipsis] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2630), + [sym_string] = ACTIONS(2632), + [sym_integer] = ACTIONS(2632), + [sym_float] = ACTIONS(2632), + [sym_identifier] = ACTIONS(2637), + [sym_true] = ACTIONS(2632), + [sym_false] = ACTIONS(2632), + [sym_none] = ACTIONS(2632), + [anon_sym_await] = ACTIONS(2632), [sym_comment] = ACTIONS(76), }, - [1770] = { - [sym__dedent] = ACTIONS(1892), - [anon_sym_import] = ACTIONS(1894), - [anon_sym_from] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_print] = ACTIONS(1894), - [anon_sym_assert] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_del] = ACTIONS(1894), - [anon_sym_raise] = ACTIONS(1894), - [sym_pass_statement] = ACTIONS(1894), - [sym_break_statement] = ACTIONS(1894), - [sym_continue_statement] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_with] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1894), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_global] = ACTIONS(1894), - [anon_sym_nonlocal] = ACTIONS(1894), - [anon_sym_exec] = ACTIONS(1894), - [anon_sym_class] = ACTIONS(1894), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_lambda] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1892), - [sym_ellipsis] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1892), - [sym_string] = ACTIONS(1894), - [sym_integer] = ACTIONS(1894), - [sym_float] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [sym_true] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [sym_none] = ACTIONS(1894), - [anon_sym_await] = ACTIONS(1894), + [1862] = { + [sym__dedent] = ACTIONS(1993), + [anon_sym_import] = ACTIONS(1995), + [anon_sym_from] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_del] = ACTIONS(1995), + [anon_sym_raise] = ACTIONS(1995), + [sym_pass_statement] = ACTIONS(1995), + [sym_break_statement] = ACTIONS(1995), + [sym_continue_statement] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1995), + [anon_sym_with] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1995), + [anon_sym_global] = ACTIONS(1995), + [anon_sym_nonlocal] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_class] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(1993), + [anon_sym_not] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_lambda] = ACTIONS(1995), + [anon_sym_yield] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1993), + [sym_ellipsis] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [sym_string] = ACTIONS(1995), + [sym_integer] = ACTIONS(1995), + [sym_float] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1997), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_none] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(1995), [sym_comment] = ACTIONS(76), }, - [1771] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [1863] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -62243,9 +64688,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1130), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(3225), + [aux_sym_module_repeat1] = STATE(1206), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(3359), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -62254,20 +64699,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -62288,156 +64733,156 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1772] = { - [sym__dedent] = ACTIONS(2517), - [anon_sym_import] = ACTIONS(2519), - [anon_sym_from] = ACTIONS(2519), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_print] = ACTIONS(2519), - [anon_sym_assert] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_del] = ACTIONS(2519), - [anon_sym_raise] = ACTIONS(2519), - [sym_pass_statement] = ACTIONS(2519), - [sym_break_statement] = ACTIONS(2519), - [sym_continue_statement] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2519), - [anon_sym_async] = ACTIONS(2519), - [anon_sym_def] = ACTIONS(2519), - [anon_sym_global] = ACTIONS(2519), - [anon_sym_nonlocal] = ACTIONS(2519), - [anon_sym_exec] = ACTIONS(2519), - [anon_sym_class] = ACTIONS(2519), - [anon_sym_AT] = ACTIONS(2517), - [anon_sym_not] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2517), - [anon_sym_lambda] = ACTIONS(2519), - [anon_sym_yield] = ACTIONS(2519), - [anon_sym_LBRACK] = ACTIONS(2517), - [sym_ellipsis] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2517), - [sym_string] = ACTIONS(2519), - [sym_integer] = ACTIONS(2519), - [sym_float] = ACTIONS(2519), - [sym_identifier] = ACTIONS(2521), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [sym_none] = ACTIONS(2519), - [anon_sym_await] = ACTIONS(2519), + [1864] = { + [sym__dedent] = ACTIONS(2641), + [anon_sym_import] = ACTIONS(2643), + [anon_sym_from] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_print] = ACTIONS(2643), + [anon_sym_assert] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_del] = ACTIONS(2643), + [anon_sym_raise] = ACTIONS(2643), + [sym_pass_statement] = ACTIONS(2643), + [sym_break_statement] = ACTIONS(2643), + [sym_continue_statement] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_with] = ACTIONS(2643), + [anon_sym_async] = ACTIONS(2643), + [anon_sym_def] = ACTIONS(2643), + [anon_sym_global] = ACTIONS(2643), + [anon_sym_nonlocal] = ACTIONS(2643), + [anon_sym_exec] = ACTIONS(2643), + [anon_sym_class] = ACTIONS(2643), + [anon_sym_AT] = ACTIONS(2641), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_lambda] = ACTIONS(2643), + [anon_sym_yield] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2641), + [sym_ellipsis] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2641), + [sym_string] = ACTIONS(2643), + [sym_integer] = ACTIONS(2643), + [sym_float] = ACTIONS(2643), + [sym_identifier] = ACTIONS(2645), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_none] = ACTIONS(2643), + [anon_sym_await] = ACTIONS(2643), [sym_comment] = ACTIONS(76), }, - [1773] = { - [sym__dedent] = ACTIONS(2575), - [anon_sym_import] = ACTIONS(2577), - [anon_sym_from] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_print] = ACTIONS(2577), - [anon_sym_assert] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_del] = ACTIONS(2577), - [anon_sym_raise] = ACTIONS(2577), - [sym_pass_statement] = ACTIONS(2577), - [sym_break_statement] = ACTIONS(2577), - [sym_continue_statement] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_with] = ACTIONS(2577), - [anon_sym_async] = ACTIONS(2577), - [anon_sym_def] = ACTIONS(2577), - [anon_sym_global] = ACTIONS(2577), - [anon_sym_nonlocal] = ACTIONS(2577), - [anon_sym_exec] = ACTIONS(2577), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_AT] = ACTIONS(2575), - [anon_sym_not] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_lambda] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2577), - [anon_sym_LBRACK] = ACTIONS(2575), - [sym_ellipsis] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(2575), - [sym_string] = ACTIONS(2577), - [sym_integer] = ACTIONS(2577), - [sym_float] = ACTIONS(2577), - [sym_identifier] = ACTIONS(2579), - [sym_true] = ACTIONS(2577), - [sym_false] = ACTIONS(2577), - [sym_none] = ACTIONS(2577), - [anon_sym_await] = ACTIONS(2577), + [1865] = { + [sym__dedent] = ACTIONS(2699), + [anon_sym_import] = ACTIONS(2701), + [anon_sym_from] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_print] = ACTIONS(2701), + [anon_sym_assert] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_del] = ACTIONS(2701), + [anon_sym_raise] = ACTIONS(2701), + [sym_pass_statement] = ACTIONS(2701), + [sym_break_statement] = ACTIONS(2701), + [sym_continue_statement] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2701), + [anon_sym_async] = ACTIONS(2701), + [anon_sym_def] = ACTIONS(2701), + [anon_sym_global] = ACTIONS(2701), + [anon_sym_nonlocal] = ACTIONS(2701), + [anon_sym_exec] = ACTIONS(2701), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_AT] = ACTIONS(2699), + [anon_sym_not] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_lambda] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2699), + [sym_ellipsis] = ACTIONS(2699), + [anon_sym_LBRACE] = ACTIONS(2699), + [sym_string] = ACTIONS(2701), + [sym_integer] = ACTIONS(2701), + [sym_float] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2703), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_none] = ACTIONS(2701), + [anon_sym_await] = ACTIONS(2701), [sym_comment] = ACTIONS(76), }, - [1774] = { - [anon_sym_COLON] = ACTIONS(3227), + [1866] = { + [anon_sym_COLON] = ACTIONS(3361), [sym_comment] = ACTIONS(76), }, - [1775] = { - [sym__dedent] = ACTIONS(2585), - [anon_sym_import] = ACTIONS(2587), - [anon_sym_from] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2585), - [anon_sym_print] = ACTIONS(2587), - [anon_sym_assert] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_del] = ACTIONS(2587), - [anon_sym_raise] = ACTIONS(2587), - [sym_pass_statement] = ACTIONS(2587), - [sym_break_statement] = ACTIONS(2587), - [sym_continue_statement] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_with] = ACTIONS(2587), - [anon_sym_async] = ACTIONS(2587), - [anon_sym_def] = ACTIONS(2587), - [anon_sym_global] = ACTIONS(2587), - [anon_sym_nonlocal] = ACTIONS(2587), - [anon_sym_exec] = ACTIONS(2587), - [anon_sym_class] = ACTIONS(2587), - [anon_sym_AT] = ACTIONS(2585), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_lambda] = ACTIONS(2587), - [anon_sym_yield] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2585), - [sym_ellipsis] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [sym_string] = ACTIONS(2587), - [sym_integer] = ACTIONS(2587), - [sym_float] = ACTIONS(2587), - [sym_identifier] = ACTIONS(2589), - [sym_true] = ACTIONS(2587), - [sym_false] = ACTIONS(2587), - [sym_none] = ACTIONS(2587), - [anon_sym_await] = ACTIONS(2587), + [1867] = { + [sym__dedent] = ACTIONS(2709), + [anon_sym_import] = ACTIONS(2711), + [anon_sym_from] = ACTIONS(2711), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym_print] = ACTIONS(2711), + [anon_sym_assert] = ACTIONS(2711), + [anon_sym_return] = ACTIONS(2711), + [anon_sym_del] = ACTIONS(2711), + [anon_sym_raise] = ACTIONS(2711), + [sym_pass_statement] = ACTIONS(2711), + [sym_break_statement] = ACTIONS(2711), + [sym_continue_statement] = ACTIONS(2711), + [anon_sym_if] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2711), + [anon_sym_while] = ACTIONS(2711), + [anon_sym_try] = ACTIONS(2711), + [anon_sym_with] = ACTIONS(2711), + [anon_sym_async] = ACTIONS(2711), + [anon_sym_def] = ACTIONS(2711), + [anon_sym_global] = ACTIONS(2711), + [anon_sym_nonlocal] = ACTIONS(2711), + [anon_sym_exec] = ACTIONS(2711), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_AT] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2711), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2709), + [anon_sym_lambda] = ACTIONS(2711), + [anon_sym_yield] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [sym_ellipsis] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2709), + [sym_string] = ACTIONS(2711), + [sym_integer] = ACTIONS(2711), + [sym_float] = ACTIONS(2711), + [sym_identifier] = ACTIONS(2713), + [sym_true] = ACTIONS(2711), + [sym_false] = ACTIONS(2711), + [sym_none] = ACTIONS(2711), + [anon_sym_await] = ACTIONS(2711), [sym_comment] = ACTIONS(76), }, - [1776] = { - [sym__simple_statements] = STATE(369), - [sym_import_statement] = STATE(368), - [sym_import_from_statement] = STATE(368), - [sym_print_statement] = STATE(368), - [sym_assert_statement] = STATE(368), - [sym_expression_statement] = STATE(368), - [sym_return_statement] = STATE(368), - [sym_delete_statement] = STATE(368), - [sym_raise_statement] = STATE(368), - [sym_global_statement] = STATE(368), - [sym_nonlocal_statement] = STATE(368), - [sym_exec_statement] = STATE(368), - [sym__suite] = STATE(1841), + [1868] = { + [sym__simple_statements] = STATE(396), + [sym_import_statement] = STATE(395), + [sym_import_from_statement] = STATE(395), + [sym_print_statement] = STATE(395), + [sym_assert_statement] = STATE(395), + [sym_expression_statement] = STATE(395), + [sym_return_statement] = STATE(395), + [sym_delete_statement] = STATE(395), + [sym_raise_statement] = STATE(395), + [sym_global_statement] = STATE(395), + [sym_nonlocal_statement] = STATE(395), + [sym_exec_statement] = STATE(395), + [sym__suite] = STATE(1933), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -62465,7 +64910,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(620), + [sym__indent] = ACTIONS(654), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -62474,9 +64919,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(622), - [sym_break_statement] = ACTIONS(622), - [sym_continue_statement] = ACTIONS(622), + [sym_pass_statement] = ACTIONS(656), + [sym_break_statement] = ACTIONS(656), + [sym_continue_statement] = ACTIONS(656), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -62499,75 +64944,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1777] = { - [ts_builtin_sym_end] = ACTIONS(1892), - [anon_sym_import] = ACTIONS(1894), - [anon_sym_from] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_print] = ACTIONS(1894), - [anon_sym_assert] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_del] = ACTIONS(1894), - [anon_sym_raise] = ACTIONS(1894), - [sym_pass_statement] = ACTIONS(1894), - [sym_break_statement] = ACTIONS(1894), - [sym_continue_statement] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_finally] = ACTIONS(1894), - [anon_sym_with] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1894), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_global] = ACTIONS(1894), - [anon_sym_nonlocal] = ACTIONS(1894), - [anon_sym_exec] = ACTIONS(1894), - [anon_sym_class] = ACTIONS(1894), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_lambda] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1892), - [sym_ellipsis] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1892), - [sym_string] = ACTIONS(1894), - [sym_integer] = ACTIONS(1894), - [sym_float] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [sym_true] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [sym_none] = ACTIONS(1894), - [anon_sym_await] = ACTIONS(1894), + [1869] = { + [ts_builtin_sym_end] = ACTIONS(1993), + [anon_sym_import] = ACTIONS(1995), + [anon_sym_from] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_del] = ACTIONS(1995), + [anon_sym_raise] = ACTIONS(1995), + [sym_pass_statement] = ACTIONS(1995), + [sym_break_statement] = ACTIONS(1995), + [sym_continue_statement] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1995), + [anon_sym_finally] = ACTIONS(1995), + [anon_sym_with] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1995), + [anon_sym_global] = ACTIONS(1995), + [anon_sym_nonlocal] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_class] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(1993), + [anon_sym_not] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_lambda] = ACTIONS(1995), + [anon_sym_yield] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1993), + [sym_ellipsis] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [sym_string] = ACTIONS(1995), + [sym_integer] = ACTIONS(1995), + [sym_float] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1997), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_none] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(1995), [sym_comment] = ACTIONS(76), }, - [1778] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [1870] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -62596,9 +65041,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1130), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(3229), + [aux_sym_module_repeat1] = STATE(1206), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(3363), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -62607,20 +65052,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -62641,63 +65086,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1779] = { - [ts_builtin_sym_end] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_from] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_print] = ACTIONS(552), - [anon_sym_assert] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_del] = ACTIONS(552), - [anon_sym_raise] = ACTIONS(552), - [sym_pass_statement] = ACTIONS(552), - [sym_break_statement] = ACTIONS(552), - [sym_continue_statement] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_try] = ACTIONS(552), - [anon_sym_finally] = ACTIONS(552), - [anon_sym_with] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_def] = ACTIONS(552), - [anon_sym_global] = ACTIONS(552), - [anon_sym_nonlocal] = ACTIONS(552), - [anon_sym_exec] = ACTIONS(552), - [anon_sym_class] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(550), - [anon_sym_not] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_TILDE] = ACTIONS(550), - [anon_sym_lambda] = ACTIONS(552), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_LBRACK] = ACTIONS(550), - [sym_ellipsis] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(550), - [sym_string] = ACTIONS(552), - [sym_integer] = ACTIONS(552), - [sym_float] = ACTIONS(552), - [sym_identifier] = ACTIONS(554), - [sym_true] = ACTIONS(552), - [sym_false] = ACTIONS(552), - [sym_none] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), + [1871] = { + [ts_builtin_sym_end] = ACTIONS(584), + [anon_sym_import] = ACTIONS(586), + [anon_sym_from] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_print] = ACTIONS(586), + [anon_sym_assert] = ACTIONS(586), + [anon_sym_return] = ACTIONS(586), + [anon_sym_del] = ACTIONS(586), + [anon_sym_raise] = ACTIONS(586), + [sym_pass_statement] = ACTIONS(586), + [sym_break_statement] = ACTIONS(586), + [sym_continue_statement] = ACTIONS(586), + [anon_sym_if] = ACTIONS(586), + [anon_sym_for] = ACTIONS(586), + [anon_sym_while] = ACTIONS(586), + [anon_sym_try] = ACTIONS(586), + [anon_sym_finally] = ACTIONS(586), + [anon_sym_with] = ACTIONS(586), + [anon_sym_async] = ACTIONS(586), + [anon_sym_def] = ACTIONS(586), + [anon_sym_global] = ACTIONS(586), + [anon_sym_nonlocal] = ACTIONS(586), + [anon_sym_exec] = ACTIONS(586), + [anon_sym_class] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_not] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_TILDE] = ACTIONS(584), + [anon_sym_lambda] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(584), + [sym_ellipsis] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(584), + [sym_string] = ACTIONS(586), + [sym_integer] = ACTIONS(586), + [sym_float] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [sym_true] = ACTIONS(586), + [sym_false] = ACTIONS(586), + [sym_none] = ACTIONS(586), + [anon_sym_await] = ACTIONS(586), [sym_comment] = ACTIONS(76), }, - [1780] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [1872] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -62725,7 +65170,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(3231), + [sym__newline] = ACTIONS(3365), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -62734,9 +65179,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -62759,24 +65204,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1781] = { - [aux_sym__simple_statements_repeat1] = STATE(335), - [sym__newline] = ACTIONS(3231), + [1873] = { + [aux_sym__simple_statements_repeat1] = STATE(362), + [sym__newline] = ACTIONS(3365), [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(3233), + [sym__semicolon] = ACTIONS(3367), }, - [1782] = { - [anon_sym_RPAREN] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_COLON] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(2527), - [anon_sym_or] = ACTIONS(2529), + [1874] = { + [anon_sym_RPAREN] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_COLON] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(2653), [sym_comment] = ACTIONS(76), }, - [1783] = { - [sym__expression] = STATE(1845), - [sym__primary_expression] = STATE(1154), + [1875] = { + [sym__expression] = STATE(1937), + [sym__primary_expression] = STATE(1230), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -62801,80 +65246,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), - [anon_sym_lambda] = ACTIONS(1979), + [anon_sym_not] = ACTIONS(2076), + [anon_sym_PLUS] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_lambda] = ACTIONS(2080), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1981), + [sym_string] = ACTIONS(2082), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1983), + [anon_sym_await] = ACTIONS(2084), [sym_comment] = ACTIONS(76), }, - [1784] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2531), - [anon_sym_GT_GT] = ACTIONS(2533), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_COLON] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2539), - [anon_sym_SLASH] = ACTIONS(2531), - [anon_sym_PERCENT] = ACTIONS(2541), - [anon_sym_SLASH_SLASH] = ACTIONS(2541), - [anon_sym_STAR_STAR] = ACTIONS(2543), - [anon_sym_PIPE] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2549), - [anon_sym_LT_LT] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), + [1876] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(2380), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_GT_GT] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_COLON] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_SLASH] = ACTIONS(2655), + [anon_sym_PERCENT] = ACTIONS(2665), + [anon_sym_SLASH_SLASH] = ACTIONS(2665), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_CARET] = ACTIONS(2673), + [anon_sym_LT_LT] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1785] = { - [anon_sym_RPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), + [1877] = { + [anon_sym_RPAREN] = ACTIONS(3100), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), [sym_comment] = ACTIONS(76), }, - [1786] = { - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_and] = ACTIONS(2922), - [anon_sym_or] = ACTIONS(2924), + [1878] = { + [anon_sym_RPAREN] = ACTIONS(1423), + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3056), [sym_comment] = ACTIONS(76), }, - [1787] = { - [sym__expression] = STATE(1846), - [sym__primary_expression] = STATE(1467), + [1879] = { + [sym__expression] = STATE(1938), + [sym__primary_expression] = STATE(1554), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -62899,186 +65344,186 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_lambda] = ACTIONS(2689), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2569), + [anon_sym_await] = ACTIONS(2693), [sym_comment] = ACTIONS(76), }, - [1788] = { - [aux_sym_concatenated_string_repeat1] = STATE(1788), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_EQ] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1499), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT_GT] = ACTIONS(1499), - [anon_sym_is] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [sym_string] = ACTIONS(1696), + [1880] = { + [aux_sym_concatenated_string_repeat1] = STATE(1880), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(1567), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1565), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT_GT] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [sym_string] = ACTIONS(1762), [sym_comment] = ACTIONS(76), }, - [1789] = { - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_and] = ACTIONS(1522), - [anon_sym_or] = ACTIONS(1524), + [1881] = { + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(3369), + [anon_sym_and] = ACTIONS(1588), + [anon_sym_or] = ACTIONS(1590), [sym_comment] = ACTIONS(76), }, - [1790] = { - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_EQ] = ACTIONS(1550), - [anon_sym_and] = ACTIONS(2922), - [anon_sym_or] = ACTIONS(1550), + [1882] = { + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_and] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(1616), [sym_comment] = ACTIONS(76), }, - [1791] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_SLASH_SLASH] = ACTIONS(1577), - [anon_sym_STAR_STAR] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1883] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1645), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_SLASH_SLASH] = ACTIONS(1643), + [anon_sym_STAR_STAR] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1792] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2936), - [anon_sym_SLASH_SLASH] = ACTIONS(2936), - [anon_sym_STAR_STAR] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), + [1884] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_SLASH_SLASH] = ACTIONS(3068), + [anon_sym_STAR_STAR] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), [sym_comment] = ACTIONS(76), }, - [1793] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_GT_GT] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(1581), - [anon_sym_EQ] = ACTIONS(1583), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2936), - [anon_sym_SLASH_SLASH] = ACTIONS(2936), - [anon_sym_STAR_STAR] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(2940), - [anon_sym_AMP] = ACTIONS(2942), - [anon_sym_CARET] = ACTIONS(2944), - [anon_sym_LT_LT] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1581), - [anon_sym_BANG_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT_GT] = ACTIONS(1581), - [anon_sym_is] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(434), + [1885] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_EQ] = ACTIONS(1649), + [anon_sym_not] = ACTIONS(1647), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_SLASH_SLASH] = ACTIONS(3068), + [anon_sym_STAR_STAR] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3074), + [anon_sym_CARET] = ACTIONS(3076), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT_GT] = ACTIONS(1647), + [anon_sym_is] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(448), [sym_comment] = ACTIONS(76), }, - [1794] = { - [sym__primary_expression] = STATE(1848), + [1886] = { + [sym__primary_expression] = STATE(1940), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_attribute] = STATE(61), @@ -63097,13 +65542,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), @@ -63112,205 +65557,205 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(108), [sym_comment] = ACTIONS(76), }, - [1795] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_GT_GT] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2936), - [anon_sym_SLASH_SLASH] = ACTIONS(2936), - [anon_sym_STAR_STAR] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - }, - [1796] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_GT_GT] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2936), - [anon_sym_SLASH_SLASH] = ACTIONS(2936), - [anon_sym_STAR_STAR] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(2942), - [anon_sym_CARET] = ACTIONS(2944), - [anon_sym_LT_LT] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - }, - [1797] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_GT_GT] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2936), - [anon_sym_SLASH_SLASH] = ACTIONS(2936), - [anon_sym_STAR_STAR] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(2944), - [anon_sym_LT_LT] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - }, - [1798] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_GT_GT] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1577), - [anon_sym_and] = ACTIONS(1577), - [anon_sym_or] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2936), - [anon_sym_SLASH_SLASH] = ACTIONS(2936), - [anon_sym_STAR_STAR] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_LT_LT] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_BANG_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_LT_GT] = ACTIONS(1577), - [anon_sym_is] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [sym_comment] = ACTIONS(76), - }, - [1799] = { - [aux_sym_comparison_operator_repeat1] = STATE(1799), - [anon_sym_RPAREN] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_in] = ACTIONS(3237), - [anon_sym_EQ] = ACTIONS(1583), - [anon_sym_not] = ACTIONS(3240), - [anon_sym_and] = ACTIONS(1581), - [anon_sym_or] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_LT_EQ] = ACTIONS(3237), - [anon_sym_EQ_EQ] = ACTIONS(3237), - [anon_sym_BANG_EQ] = ACTIONS(3237), - [anon_sym_GT_EQ] = ACTIONS(3237), - [anon_sym_GT] = ACTIONS(3243), - [anon_sym_LT_GT] = ACTIONS(3237), - [anon_sym_is] = ACTIONS(3246), - [sym_comment] = ACTIONS(76), - }, - [1800] = { - [anon_sym_RPAREN] = ACTIONS(2982), - [anon_sym_COMMA] = ACTIONS(2982), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1058), - [sym_comment] = ACTIONS(76), - }, - [1801] = { - [anon_sym_if] = ACTIONS(2030), - [anon_sym_EQ] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(2034), - [anon_sym_or] = ACTIONS(2036), - [sym_comment] = ACTIONS(76), - }, - [1802] = { - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_COLON] = ACTIONS(2741), - [anon_sym_EQ] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(2075), - [anon_sym_or] = ACTIONS(2077), - [sym_comment] = ACTIONS(76), - }, - [1803] = { - [sym__expression_within_for_in_clause] = STATE(1816), - [sym__expression] = STATE(1512), - [sym__primary_expression] = STATE(152), + [1887] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_SLASH_SLASH] = ACTIONS(3068), + [anon_sym_STAR_STAR] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + }, + [1888] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_SLASH_SLASH] = ACTIONS(3068), + [anon_sym_STAR_STAR] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(3074), + [anon_sym_CARET] = ACTIONS(3076), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + }, + [1889] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_SLASH_SLASH] = ACTIONS(3068), + [anon_sym_STAR_STAR] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(3076), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + }, + [1890] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_COMMA] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(1645), + [anon_sym_not] = ACTIONS(1643), + [anon_sym_and] = ACTIONS(1643), + [anon_sym_or] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_SLASH_SLASH] = ACTIONS(3068), + [anon_sym_STAR_STAR] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT_GT] = ACTIONS(1643), + [anon_sym_is] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [sym_comment] = ACTIONS(76), + }, + [1891] = { + [aux_sym_comparison_operator_repeat1] = STATE(1891), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_COMMA] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(3371), + [anon_sym_EQ] = ACTIONS(1649), + [anon_sym_not] = ACTIONS(3374), + [anon_sym_and] = ACTIONS(1647), + [anon_sym_or] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_LT_EQ] = ACTIONS(3371), + [anon_sym_EQ_EQ] = ACTIONS(3371), + [anon_sym_BANG_EQ] = ACTIONS(3371), + [anon_sym_GT_EQ] = ACTIONS(3371), + [anon_sym_GT] = ACTIONS(3377), + [anon_sym_LT_GT] = ACTIONS(3371), + [anon_sym_is] = ACTIONS(3380), + [sym_comment] = ACTIONS(76), + }, + [1892] = { + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(1092), + [anon_sym_or] = ACTIONS(1094), + [sym_comment] = ACTIONS(76), + }, + [1893] = { + [anon_sym_if] = ACTIONS(2138), + [anon_sym_EQ] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(2142), + [anon_sym_or] = ACTIONS(2144), + [sym_comment] = ACTIONS(76), + }, + [1894] = { + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_COLON] = ACTIONS(2869), + [anon_sym_EQ] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(2183), + [anon_sym_or] = ACTIONS(2185), + [sym_comment] = ACTIONS(76), + }, + [1895] = { + [sym__expression_within_for_in_clause] = STATE(1908), + [sym__expression] = STATE(1601), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -63329,35 +65774,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lambda] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(2763), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(234), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, - [1804] = { - [sym__expression_within_for_in_clause] = STATE(1739), - [sym__expression] = STATE(1512), - [sym__primary_expression] = STATE(152), + [1896] = { + [sym__expression_within_for_in_clause] = STATE(1831), + [sym__expression] = STATE(1601), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -63375,47 +65820,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lambda] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(2763), [anon_sym_LBRACK] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(3185), + [anon_sym_RBRACK] = ACTIONS(3319), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(234), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, - [1805] = { - [aux_sym_for_in_clause_repeat1] = STATE(1805), - [anon_sym_COMMA] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_RBRACK] = ACTIONS(3183), + [1897] = { + [aux_sym_for_in_clause_repeat1] = STATE(1897), + [anon_sym_COMMA] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_RBRACK] = ACTIONS(3317), [sym_comment] = ACTIONS(76), }, - [1806] = { - [anon_sym_if] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(2639), - [anon_sym_or] = ACTIONS(2641), - [anon_sym_RBRACK] = ACTIONS(2111), + [1898] = { + [anon_sym_if] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(2767), + [anon_sym_or] = ACTIONS(2769), + [anon_sym_RBRACK] = ACTIONS(2219), [sym_comment] = ACTIONS(76), }, - [1807] = { - [sym__expression] = STATE(1850), - [sym__primary_expression] = STATE(1248), + [1899] = { + [sym__expression] = STATE(1942), + [sym__primary_expression] = STATE(1327), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -63440,79 +65885,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_lambda] = ACTIONS(2142), + [anon_sym_not] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_lambda] = ACTIONS(2250), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2144), + [sym_string] = ACTIONS(2252), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2146), - [sym_comment] = ACTIONS(76), - }, - [1808] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2645), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_SLASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_CARET] = ACTIONS(2661), - [anon_sym_LT_LT] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACK] = ACTIONS(2272), - [sym_comment] = ACTIONS(76), - }, - [1809] = { - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(2196), - [anon_sym_or] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2741), - [sym_comment] = ACTIONS(76), - }, - [1810] = { - [sym__expression_within_for_in_clause] = STATE(1816), - [sym__expression] = STATE(1552), - [sym__primary_expression] = STATE(930), + [anon_sym_await] = ACTIONS(2254), + [sym_comment] = ACTIONS(76), + }, + [1900] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_GT_GT] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2781), + [anon_sym_SLASH_SLASH] = ACTIONS(2781), + [anon_sym_STAR_STAR] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(2785), + [anon_sym_AMP] = ACTIONS(2787), + [anon_sym_CARET] = ACTIONS(2789), + [anon_sym_LT_LT] = ACTIONS(2773), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACK] = ACTIONS(2380), + [sym_comment] = ACTIONS(76), + }, + [1901] = { + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(2304), + [anon_sym_or] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(2869), + [sym_comment] = ACTIONS(76), + }, + [1902] = { + [sym__expression_within_for_in_clause] = STATE(1908), + [sym__expression] = STATE(1641), + [sym__primary_expression] = STATE(988), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -63531,35 +65976,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_lambda] = ACTIONS(2701), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_lambda] = ACTIONS(2829), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1553), [sym_comment] = ACTIONS(76), }, - [1811] = { - [sym__expression_within_for_in_clause] = STATE(1739), - [sym__expression] = STATE(1552), - [sym__primary_expression] = STATE(930), + [1903] = { + [sym__expression_within_for_in_clause] = STATE(1831), + [sym__expression] = STATE(1641), + [sym__primary_expression] = STATE(988), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -63577,47 +66022,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_await] = STATE(67), [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_lambda] = ACTIONS(2701), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_lambda] = ACTIONS(2829), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [anon_sym_RBRACE] = ACTIONS(3185), - [sym_string] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(3319), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1553), [sym_comment] = ACTIONS(76), }, - [1812] = { - [aux_sym_for_in_clause_repeat1] = STATE(1812), - [anon_sym_COMMA] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_RBRACE] = ACTIONS(3183), + [1904] = { + [aux_sym_for_in_clause_repeat1] = STATE(1904), + [anon_sym_COMMA] = ACTIONS(3386), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), [sym_comment] = ACTIONS(76), }, - [1813] = { - [anon_sym_if] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(2705), - [anon_sym_or] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2111), + [1905] = { + [anon_sym_if] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2835), + [anon_sym_RBRACE] = ACTIONS(2219), [sym_comment] = ACTIONS(76), }, - [1814] = { - [sym__expression] = STATE(1852), - [sym__primary_expression] = STATE(1297), + [1906] = { + [sym__expression] = STATE(1944), + [sym__primary_expression] = STATE(1376), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -63642,71 +66087,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_lambda] = ACTIONS(2234), + [anon_sym_not] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_lambda] = ACTIONS(2342), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2236), + [sym_string] = ACTIONS(2344), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2238), - [sym_comment] = ACTIONS(76), - }, - [1815] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_SLASH] = ACTIONS(2709), - [anon_sym_PERCENT] = ACTIONS(2719), - [anon_sym_SLASH_SLASH] = ACTIONS(2719), - [anon_sym_STAR_STAR] = ACTIONS(2721), - [anon_sym_PIPE] = ACTIONS(2723), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_LT_LT] = ACTIONS(2711), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(2272), - [sym_comment] = ACTIONS(76), - }, - [1816] = { - [anon_sym_RPAREN] = ACTIONS(3255), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_RBRACK] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [sym_comment] = ACTIONS(76), - }, - [1817] = { - [sym__expression_within_for_in_clause] = STATE(1739), - [sym__expression] = STATE(1363), + [anon_sym_await] = ACTIONS(2346), + [sym_comment] = ACTIONS(76), + }, + [1907] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(2839), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2847), + [anon_sym_SLASH_SLASH] = ACTIONS(2847), + [anon_sym_STAR_STAR] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_CARET] = ACTIONS(2855), + [anon_sym_LT_LT] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(2380), + [sym_comment] = ACTIONS(76), + }, + [1908] = { + [anon_sym_RPAREN] = ACTIONS(3389), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_RBRACK] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3389), + [sym_comment] = ACTIONS(76), + }, + [1909] = { + [sym__expression_within_for_in_clause] = STATE(1831), + [sym__expression] = STATE(1442), [sym__primary_expression] = STATE(66), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), @@ -63714,7 +66159,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -63737,7 +66182,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(94), [anon_sym_DASH] = ACTIONS(94), [anon_sym_TILDE] = ACTIONS(94), - [anon_sym_lambda] = ACTIONS(2327), + [anon_sym_lambda] = ACTIONS(2435), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), @@ -63751,118 +66196,118 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(112), [sym_comment] = ACTIONS(76), }, - [1818] = { - [anon_sym_RPAREN] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(2333), - [anon_sym_or] = ACTIONS(2335), - [sym_comment] = ACTIONS(76), - }, - [1819] = { - [sym__dedent] = ACTIONS(2459), - [anon_sym_import] = ACTIONS(2461), - [anon_sym_from] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_print] = ACTIONS(2461), - [anon_sym_assert] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_del] = ACTIONS(2461), - [anon_sym_raise] = ACTIONS(2461), - [sym_pass_statement] = ACTIONS(2461), - [sym_break_statement] = ACTIONS(2461), - [sym_continue_statement] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_elif] = ACTIONS(2461), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_with] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_def] = ACTIONS(2461), - [anon_sym_global] = ACTIONS(2461), - [anon_sym_nonlocal] = ACTIONS(2461), - [anon_sym_exec] = ACTIONS(2461), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_lambda] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [sym_ellipsis] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [sym_string] = ACTIONS(2461), - [sym_integer] = ACTIONS(2461), - [sym_float] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2463), - [sym_true] = ACTIONS(2461), - [sym_false] = ACTIONS(2461), - [sym_none] = ACTIONS(2461), - [anon_sym_await] = ACTIONS(2461), - [sym_comment] = ACTIONS(76), - }, - [1820] = { - [sym__dedent] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(1206), - [anon_sym_from] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_print] = ACTIONS(1206), - [anon_sym_assert] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_del] = ACTIONS(1206), - [anon_sym_raise] = ACTIONS(1206), - [sym_pass_statement] = ACTIONS(1206), - [sym_break_statement] = ACTIONS(1206), - [sym_continue_statement] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_elif] = ACTIONS(1206), - [anon_sym_else] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_try] = ACTIONS(1206), - [anon_sym_with] = ACTIONS(1206), - [anon_sym_async] = ACTIONS(1206), - [anon_sym_def] = ACTIONS(1206), - [anon_sym_global] = ACTIONS(1206), - [anon_sym_nonlocal] = ACTIONS(1206), - [anon_sym_exec] = ACTIONS(1206), - [anon_sym_class] = ACTIONS(1206), - [anon_sym_AT] = ACTIONS(1204), - [anon_sym_not] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_lambda] = ACTIONS(1206), - [anon_sym_yield] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1204), - [sym_ellipsis] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1204), - [sym_string] = ACTIONS(1206), - [sym_integer] = ACTIONS(1206), - [sym_float] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [sym_none] = ACTIONS(1206), - [anon_sym_await] = ACTIONS(1206), - [sym_comment] = ACTIONS(76), - }, - [1821] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [1910] = { + [anon_sym_RPAREN] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(2441), + [anon_sym_or] = ACTIONS(2443), + [sym_comment] = ACTIONS(76), + }, + [1911] = { + [sym__dedent] = ACTIONS(2583), + [anon_sym_import] = ACTIONS(2585), + [anon_sym_from] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_print] = ACTIONS(2585), + [anon_sym_assert] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_del] = ACTIONS(2585), + [anon_sym_raise] = ACTIONS(2585), + [sym_pass_statement] = ACTIONS(2585), + [sym_break_statement] = ACTIONS(2585), + [sym_continue_statement] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_elif] = ACTIONS(2585), + [anon_sym_else] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_with] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_def] = ACTIONS(2585), + [anon_sym_global] = ACTIONS(2585), + [anon_sym_nonlocal] = ACTIONS(2585), + [anon_sym_exec] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_lambda] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [sym_ellipsis] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [sym_string] = ACTIONS(2585), + [sym_integer] = ACTIONS(2585), + [sym_float] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2587), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_none] = ACTIONS(2585), + [anon_sym_await] = ACTIONS(2585), + [sym_comment] = ACTIONS(76), + }, + [1912] = { + [sym__dedent] = ACTIONS(1264), + [anon_sym_import] = ACTIONS(1266), + [anon_sym_from] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_print] = ACTIONS(1266), + [anon_sym_assert] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_del] = ACTIONS(1266), + [anon_sym_raise] = ACTIONS(1266), + [sym_pass_statement] = ACTIONS(1266), + [sym_break_statement] = ACTIONS(1266), + [sym_continue_statement] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_elif] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_with] = ACTIONS(1266), + [anon_sym_async] = ACTIONS(1266), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_global] = ACTIONS(1266), + [anon_sym_nonlocal] = ACTIONS(1266), + [anon_sym_exec] = ACTIONS(1266), + [anon_sym_class] = ACTIONS(1266), + [anon_sym_AT] = ACTIONS(1264), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_lambda] = ACTIONS(1266), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [sym_ellipsis] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [sym_string] = ACTIONS(1266), + [sym_integer] = ACTIONS(1266), + [sym_float] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [sym_none] = ACTIONS(1266), + [anon_sym_await] = ACTIONS(1266), + [sym_comment] = ACTIONS(76), + }, + [1913] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -63890,7 +66335,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(3257), + [sym__newline] = ACTIONS(3391), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -63899,9 +66344,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -63924,414 +66369,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1822] = { - [anon_sym_if] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(3259), - [anon_sym_and] = ACTIONS(568), - [anon_sym_or] = ACTIONS(570), - [sym_comment] = ACTIONS(76), - }, - [1823] = { - [sym__simple_statements] = STATE(1636), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym__suite] = STATE(1855), - [sym_expression_list] = STATE(37), - [sym__expression] = STATE(38), - [sym__primary_expression] = STATE(39), - [sym_not_operator] = STATE(40), - [sym_boolean_operator] = STATE(40), - [sym_binary_operator] = STATE(28), - [sym_unary_operator] = STATE(28), - [sym_comparison_operator] = STATE(40), - [sym_lambda] = STATE(40), - [sym_assignment] = STATE(41), - [sym_augmented_assignment] = STATE(41), - [sym_yield] = STATE(41), - [sym_attribute] = STATE(28), - [sym_subscript] = STATE(28), - [sym_call] = STATE(28), - [sym_list] = STATE(28), - [sym_list_comprehension] = STATE(28), - [sym_dictionary] = STATE(28), - [sym_dictionary_comprehension] = STATE(28), - [sym_set] = STATE(28), - [sym_set_comprehension] = STATE(28), - [sym_parenthesized_expression] = STATE(28), - [sym_tuple] = STATE(28), - [sym_generator_expression] = STATE(28), - [sym_conditional_expression] = STATE(40), - [sym_concatenated_string] = STATE(28), - [sym_await] = STATE(40), - [sym__indent] = ACTIONS(2875), - [anon_sym_import] = ACTIONS(12), - [anon_sym_from] = ACTIONS(14), - [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(18), - [anon_sym_assert] = ACTIONS(20), - [anon_sym_return] = ACTIONS(22), - [anon_sym_del] = ACTIONS(24), - [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_global] = ACTIONS(44), - [anon_sym_nonlocal] = ACTIONS(46), - [anon_sym_exec] = ACTIONS(48), - [anon_sym_not] = ACTIONS(54), - [anon_sym_PLUS] = ACTIONS(56), - [anon_sym_DASH] = ACTIONS(56), - [anon_sym_TILDE] = ACTIONS(56), - [anon_sym_lambda] = ACTIONS(58), - [anon_sym_yield] = ACTIONS(60), - [anon_sym_LBRACK] = ACTIONS(62), - [sym_ellipsis] = ACTIONS(64), - [anon_sym_LBRACE] = ACTIONS(66), - [sym_string] = ACTIONS(68), - [sym_integer] = ACTIONS(70), - [sym_float] = ACTIONS(70), - [sym_identifier] = ACTIONS(72), - [sym_true] = ACTIONS(70), - [sym_false] = ACTIONS(70), - [sym_none] = ACTIONS(70), - [anon_sym_await] = ACTIONS(74), - [sym_comment] = ACTIONS(76), - }, - [1824] = { - [sym__dedent] = ACTIONS(2835), - [anon_sym_import] = ACTIONS(2837), - [anon_sym_from] = ACTIONS(2837), - [anon_sym_LPAREN] = ACTIONS(2835), - [anon_sym_print] = ACTIONS(2837), - [anon_sym_assert] = ACTIONS(2837), - [anon_sym_return] = ACTIONS(2837), - [anon_sym_del] = ACTIONS(2837), - [anon_sym_raise] = ACTIONS(2837), - [sym_pass_statement] = ACTIONS(2837), - [sym_break_statement] = ACTIONS(2837), - [sym_continue_statement] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2837), - [anon_sym_while] = ACTIONS(2837), - [anon_sym_try] = ACTIONS(2837), - [anon_sym_with] = ACTIONS(2837), - [anon_sym_async] = ACTIONS(2837), - [anon_sym_def] = ACTIONS(2837), - [anon_sym_global] = ACTIONS(2837), - [anon_sym_nonlocal] = ACTIONS(2837), - [anon_sym_exec] = ACTIONS(2837), - [anon_sym_class] = ACTIONS(2837), - [anon_sym_AT] = ACTIONS(2835), - [anon_sym_not] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_lambda] = ACTIONS(2837), - [anon_sym_yield] = ACTIONS(2837), - [anon_sym_LBRACK] = ACTIONS(2835), - [sym_ellipsis] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2835), - [sym_string] = ACTIONS(2837), - [sym_integer] = ACTIONS(2837), - [sym_float] = ACTIONS(2837), - [sym_identifier] = ACTIONS(2839), - [sym_true] = ACTIONS(2837), - [sym_false] = ACTIONS(2837), - [sym_none] = ACTIONS(2837), - [anon_sym_await] = ACTIONS(2837), - [sym_comment] = ACTIONS(76), - }, - [1825] = { - [sym_elif_clause] = STATE(1753), - [aux_sym_if_statement_repeat1] = STATE(1825), - [sym__dedent] = ACTIONS(2841), - [anon_sym_import] = ACTIONS(2843), - [anon_sym_from] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_print] = ACTIONS(2843), - [anon_sym_assert] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_del] = ACTIONS(2843), - [anon_sym_raise] = ACTIONS(2843), - [sym_pass_statement] = ACTIONS(2843), - [sym_break_statement] = ACTIONS(2843), - [sym_continue_statement] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_elif] = ACTIONS(3261), - [anon_sym_else] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_with] = ACTIONS(2843), - [anon_sym_async] = ACTIONS(2843), - [anon_sym_def] = ACTIONS(2843), - [anon_sym_global] = ACTIONS(2843), - [anon_sym_nonlocal] = ACTIONS(2843), - [anon_sym_exec] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2843), - [anon_sym_AT] = ACTIONS(2841), - [anon_sym_not] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_TILDE] = ACTIONS(2841), - [anon_sym_lambda] = ACTIONS(2843), - [anon_sym_yield] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2841), - [sym_ellipsis] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2841), - [sym_string] = ACTIONS(2843), - [sym_integer] = ACTIONS(2843), - [sym_float] = ACTIONS(2843), - [sym_identifier] = ACTIONS(2848), - [sym_true] = ACTIONS(2843), - [sym_false] = ACTIONS(2843), - [sym_none] = ACTIONS(2843), - [anon_sym_await] = ACTIONS(2843), - [sym_comment] = ACTIONS(76), - }, - [1826] = { - [sym_else_clause] = STATE(1856), - [sym__dedent] = ACTIONS(2850), - [anon_sym_import] = ACTIONS(2852), - [anon_sym_from] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_print] = ACTIONS(2852), - [anon_sym_assert] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2852), - [anon_sym_del] = ACTIONS(2852), - [anon_sym_raise] = ACTIONS(2852), - [sym_pass_statement] = ACTIONS(2852), - [sym_break_statement] = ACTIONS(2852), - [sym_continue_statement] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_else] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_while] = ACTIONS(2852), - [anon_sym_try] = ACTIONS(2852), - [anon_sym_with] = ACTIONS(2852), - [anon_sym_async] = ACTIONS(2852), - [anon_sym_def] = ACTIONS(2852), - [anon_sym_global] = ACTIONS(2852), - [anon_sym_nonlocal] = ACTIONS(2852), - [anon_sym_exec] = ACTIONS(2852), - [anon_sym_class] = ACTIONS(2852), - [anon_sym_AT] = ACTIONS(2850), - [anon_sym_not] = ACTIONS(2852), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_lambda] = ACTIONS(2852), - [anon_sym_yield] = ACTIONS(2852), - [anon_sym_LBRACK] = ACTIONS(2850), - [sym_ellipsis] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2850), - [sym_string] = ACTIONS(2852), - [sym_integer] = ACTIONS(2852), - [sym_float] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2854), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_none] = ACTIONS(2852), - [anon_sym_await] = ACTIONS(2852), - [sym_comment] = ACTIONS(76), - }, - [1827] = { - [sym__dedent] = ACTIONS(2459), - [anon_sym_import] = ACTIONS(2461), - [anon_sym_from] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_print] = ACTIONS(2461), - [anon_sym_assert] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_del] = ACTIONS(2461), - [anon_sym_raise] = ACTIONS(2461), - [sym_pass_statement] = ACTIONS(2461), - [sym_break_statement] = ACTIONS(2461), - [sym_continue_statement] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_with] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_def] = ACTIONS(2461), - [anon_sym_global] = ACTIONS(2461), - [anon_sym_nonlocal] = ACTIONS(2461), - [anon_sym_exec] = ACTIONS(2461), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_lambda] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [sym_ellipsis] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [sym_string] = ACTIONS(2461), - [sym_integer] = ACTIONS(2461), - [sym_float] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2463), - [sym_true] = ACTIONS(2461), - [sym_false] = ACTIONS(2461), - [sym_none] = ACTIONS(2461), - [anon_sym_await] = ACTIONS(2461), - [sym_comment] = ACTIONS(76), - }, - [1828] = { - [sym__dedent] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(1206), - [anon_sym_from] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_print] = ACTIONS(1206), - [anon_sym_assert] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_del] = ACTIONS(1206), - [anon_sym_raise] = ACTIONS(1206), - [sym_pass_statement] = ACTIONS(1206), - [sym_break_statement] = ACTIONS(1206), - [sym_continue_statement] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_else] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_try] = ACTIONS(1206), - [anon_sym_with] = ACTIONS(1206), - [anon_sym_async] = ACTIONS(1206), - [anon_sym_def] = ACTIONS(1206), - [anon_sym_global] = ACTIONS(1206), - [anon_sym_nonlocal] = ACTIONS(1206), - [anon_sym_exec] = ACTIONS(1206), - [anon_sym_class] = ACTIONS(1206), - [anon_sym_AT] = ACTIONS(1204), - [anon_sym_not] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_lambda] = ACTIONS(1206), - [anon_sym_yield] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1204), - [sym_ellipsis] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1204), - [sym_string] = ACTIONS(1206), - [sym_integer] = ACTIONS(1206), - [sym_float] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [sym_none] = ACTIONS(1206), - [anon_sym_await] = ACTIONS(1206), - [sym_comment] = ACTIONS(76), - }, - [1829] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), - [sym_expression_list] = STATE(37), - [sym__expression] = STATE(38), - [sym__primary_expression] = STATE(39), - [sym_not_operator] = STATE(40), - [sym_boolean_operator] = STATE(40), - [sym_binary_operator] = STATE(28), - [sym_unary_operator] = STATE(28), - [sym_comparison_operator] = STATE(40), - [sym_lambda] = STATE(40), - [sym_assignment] = STATE(41), - [sym_augmented_assignment] = STATE(41), - [sym_yield] = STATE(41), - [sym_attribute] = STATE(28), - [sym_subscript] = STATE(28), - [sym_call] = STATE(28), - [sym_list] = STATE(28), - [sym_list_comprehension] = STATE(28), - [sym_dictionary] = STATE(28), - [sym_dictionary_comprehension] = STATE(28), - [sym_set] = STATE(28), - [sym_set_comprehension] = STATE(28), - [sym_parenthesized_expression] = STATE(28), - [sym_tuple] = STATE(28), - [sym_generator_expression] = STATE(28), - [sym_conditional_expression] = STATE(40), - [sym_concatenated_string] = STATE(28), - [sym_await] = STATE(40), - [sym__newline] = ACTIONS(3264), - [anon_sym_import] = ACTIONS(12), - [anon_sym_from] = ACTIONS(14), - [anon_sym_LPAREN] = ACTIONS(16), - [anon_sym_print] = ACTIONS(18), - [anon_sym_assert] = ACTIONS(20), - [anon_sym_return] = ACTIONS(22), - [anon_sym_del] = ACTIONS(24), - [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), - [anon_sym_global] = ACTIONS(44), - [anon_sym_nonlocal] = ACTIONS(46), - [anon_sym_exec] = ACTIONS(48), - [anon_sym_not] = ACTIONS(54), - [anon_sym_PLUS] = ACTIONS(56), - [anon_sym_DASH] = ACTIONS(56), - [anon_sym_TILDE] = ACTIONS(56), - [anon_sym_lambda] = ACTIONS(58), - [anon_sym_yield] = ACTIONS(60), - [anon_sym_LBRACK] = ACTIONS(62), - [sym_ellipsis] = ACTIONS(64), - [anon_sym_LBRACE] = ACTIONS(66), - [sym_string] = ACTIONS(68), - [sym_integer] = ACTIONS(70), - [sym_float] = ACTIONS(70), - [sym_identifier] = ACTIONS(72), - [sym_true] = ACTIONS(70), - [sym_false] = ACTIONS(70), - [sym_none] = ACTIONS(70), - [anon_sym_await] = ACTIONS(74), - [sym_comment] = ACTIONS(76), - }, - [1830] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), - [sym_decorator] = STATE(36), + [1914] = { + [anon_sym_if] = ACTIONS(598), + [anon_sym_COLON] = ACTIONS(3393), + [anon_sym_and] = ACTIONS(602), + [anon_sym_or] = ACTIONS(604), + [sym_comment] = ACTIONS(76), + }, + [1915] = { + [sym__simple_statements] = STATE(1727), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym__suite] = STATE(1947), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -64359,9 +66417,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1859), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(3266), + [sym__indent] = ACTIONS(3007), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -64370,21 +66426,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), - [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), [anon_sym_DASH] = ACTIONS(56), @@ -64404,109 +66451,507 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1831] = { - [aux_sym__simple_statements_repeat1] = STATE(1862), - [sym__newline] = ACTIONS(3268), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(3270), - }, - [1832] = { - [sym__dedent] = ACTIONS(1261), - [anon_sym_import] = ACTIONS(1263), - [anon_sym_from] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_print] = ACTIONS(1263), - [anon_sym_assert] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_del] = ACTIONS(1263), - [anon_sym_raise] = ACTIONS(1263), - [sym_pass_statement] = ACTIONS(1263), - [sym_break_statement] = ACTIONS(1263), - [sym_continue_statement] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_except] = ACTIONS(1263), - [anon_sym_finally] = ACTIONS(1263), - [anon_sym_with] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_global] = ACTIONS(1263), - [anon_sym_nonlocal] = ACTIONS(1263), - [anon_sym_exec] = ACTIONS(1263), - [anon_sym_class] = ACTIONS(1263), - [anon_sym_AT] = ACTIONS(1261), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_yield] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1261), - [sym_ellipsis] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [sym_string] = ACTIONS(1263), - [sym_integer] = ACTIONS(1263), - [sym_float] = ACTIONS(1263), - [sym_identifier] = ACTIONS(1265), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [sym_none] = ACTIONS(1263), - [anon_sym_await] = ACTIONS(1263), + [1916] = { + [sym__dedent] = ACTIONS(2967), + [anon_sym_import] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym_print] = ACTIONS(2969), + [anon_sym_assert] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_del] = ACTIONS(2969), + [anon_sym_raise] = ACTIONS(2969), + [sym_pass_statement] = ACTIONS(2969), + [sym_break_statement] = ACTIONS(2969), + [sym_continue_statement] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_try] = ACTIONS(2969), + [anon_sym_with] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(2969), + [anon_sym_def] = ACTIONS(2969), + [anon_sym_global] = ACTIONS(2969), + [anon_sym_nonlocal] = ACTIONS(2969), + [anon_sym_exec] = ACTIONS(2969), + [anon_sym_class] = ACTIONS(2969), + [anon_sym_AT] = ACTIONS(2967), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_lambda] = ACTIONS(2969), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2967), + [sym_ellipsis] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2967), + [sym_string] = ACTIONS(2969), + [sym_integer] = ACTIONS(2969), + [sym_float] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2971), + [sym_true] = ACTIONS(2969), + [sym_false] = ACTIONS(2969), + [sym_none] = ACTIONS(2969), + [anon_sym_await] = ACTIONS(2969), + [sym_comment] = ACTIONS(76), + }, + [1917] = { + [sym_elif_clause] = STATE(1845), + [aux_sym_if_statement_repeat1] = STATE(1917), + [sym__dedent] = ACTIONS(2973), + [anon_sym_import] = ACTIONS(2975), + [anon_sym_from] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_print] = ACTIONS(2975), + [anon_sym_assert] = ACTIONS(2975), + [anon_sym_return] = ACTIONS(2975), + [anon_sym_del] = ACTIONS(2975), + [anon_sym_raise] = ACTIONS(2975), + [sym_pass_statement] = ACTIONS(2975), + [sym_break_statement] = ACTIONS(2975), + [sym_continue_statement] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_elif] = ACTIONS(3395), + [anon_sym_else] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2975), + [anon_sym_while] = ACTIONS(2975), + [anon_sym_try] = ACTIONS(2975), + [anon_sym_with] = ACTIONS(2975), + [anon_sym_async] = ACTIONS(2975), + [anon_sym_def] = ACTIONS(2975), + [anon_sym_global] = ACTIONS(2975), + [anon_sym_nonlocal] = ACTIONS(2975), + [anon_sym_exec] = ACTIONS(2975), + [anon_sym_class] = ACTIONS(2975), + [anon_sym_AT] = ACTIONS(2973), + [anon_sym_not] = ACTIONS(2975), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_lambda] = ACTIONS(2975), + [anon_sym_yield] = ACTIONS(2975), + [anon_sym_LBRACK] = ACTIONS(2973), + [sym_ellipsis] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2973), + [sym_string] = ACTIONS(2975), + [sym_integer] = ACTIONS(2975), + [sym_float] = ACTIONS(2975), + [sym_identifier] = ACTIONS(2980), + [sym_true] = ACTIONS(2975), + [sym_false] = ACTIONS(2975), + [sym_none] = ACTIONS(2975), + [anon_sym_await] = ACTIONS(2975), + [sym_comment] = ACTIONS(76), + }, + [1918] = { + [sym_else_clause] = STATE(1948), + [sym__dedent] = ACTIONS(2982), + [anon_sym_import] = ACTIONS(2984), + [anon_sym_from] = ACTIONS(2984), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_print] = ACTIONS(2984), + [anon_sym_assert] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_del] = ACTIONS(2984), + [anon_sym_raise] = ACTIONS(2984), + [sym_pass_statement] = ACTIONS(2984), + [sym_break_statement] = ACTIONS(2984), + [sym_continue_statement] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_with] = ACTIONS(2984), + [anon_sym_async] = ACTIONS(2984), + [anon_sym_def] = ACTIONS(2984), + [anon_sym_global] = ACTIONS(2984), + [anon_sym_nonlocal] = ACTIONS(2984), + [anon_sym_exec] = ACTIONS(2984), + [anon_sym_class] = ACTIONS(2984), + [anon_sym_AT] = ACTIONS(2982), + [anon_sym_not] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2982), + [anon_sym_lambda] = ACTIONS(2984), + [anon_sym_yield] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2982), + [sym_ellipsis] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2982), + [sym_string] = ACTIONS(2984), + [sym_integer] = ACTIONS(2984), + [sym_float] = ACTIONS(2984), + [sym_identifier] = ACTIONS(2986), + [sym_true] = ACTIONS(2984), + [sym_false] = ACTIONS(2984), + [sym_none] = ACTIONS(2984), + [anon_sym_await] = ACTIONS(2984), + [sym_comment] = ACTIONS(76), + }, + [1919] = { + [sym__dedent] = ACTIONS(2583), + [anon_sym_import] = ACTIONS(2585), + [anon_sym_from] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_print] = ACTIONS(2585), + [anon_sym_assert] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_del] = ACTIONS(2585), + [anon_sym_raise] = ACTIONS(2585), + [sym_pass_statement] = ACTIONS(2585), + [sym_break_statement] = ACTIONS(2585), + [sym_continue_statement] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_else] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_with] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_def] = ACTIONS(2585), + [anon_sym_global] = ACTIONS(2585), + [anon_sym_nonlocal] = ACTIONS(2585), + [anon_sym_exec] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_lambda] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [sym_ellipsis] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [sym_string] = ACTIONS(2585), + [sym_integer] = ACTIONS(2585), + [sym_float] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2587), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_none] = ACTIONS(2585), + [anon_sym_await] = ACTIONS(2585), + [sym_comment] = ACTIONS(76), + }, + [1920] = { + [sym__dedent] = ACTIONS(1264), + [anon_sym_import] = ACTIONS(1266), + [anon_sym_from] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_print] = ACTIONS(1266), + [anon_sym_assert] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_del] = ACTIONS(1266), + [anon_sym_raise] = ACTIONS(1266), + [sym_pass_statement] = ACTIONS(1266), + [sym_break_statement] = ACTIONS(1266), + [sym_continue_statement] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_with] = ACTIONS(1266), + [anon_sym_async] = ACTIONS(1266), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_global] = ACTIONS(1266), + [anon_sym_nonlocal] = ACTIONS(1266), + [anon_sym_exec] = ACTIONS(1266), + [anon_sym_class] = ACTIONS(1266), + [anon_sym_AT] = ACTIONS(1264), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_lambda] = ACTIONS(1266), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [sym_ellipsis] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [sym_string] = ACTIONS(1266), + [sym_integer] = ACTIONS(1266), + [sym_float] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [sym_none] = ACTIONS(1266), + [anon_sym_await] = ACTIONS(1266), + [sym_comment] = ACTIONS(76), + }, + [1921] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), + [sym_expression_list] = STATE(37), + [sym__expression] = STATE(38), + [sym__primary_expression] = STATE(39), + [sym_not_operator] = STATE(40), + [sym_boolean_operator] = STATE(40), + [sym_binary_operator] = STATE(28), + [sym_unary_operator] = STATE(28), + [sym_comparison_operator] = STATE(40), + [sym_lambda] = STATE(40), + [sym_assignment] = STATE(41), + [sym_augmented_assignment] = STATE(41), + [sym_yield] = STATE(41), + [sym_attribute] = STATE(28), + [sym_subscript] = STATE(28), + [sym_call] = STATE(28), + [sym_list] = STATE(28), + [sym_list_comprehension] = STATE(28), + [sym_dictionary] = STATE(28), + [sym_dictionary_comprehension] = STATE(28), + [sym_set] = STATE(28), + [sym_set_comprehension] = STATE(28), + [sym_parenthesized_expression] = STATE(28), + [sym_tuple] = STATE(28), + [sym_generator_expression] = STATE(28), + [sym_conditional_expression] = STATE(40), + [sym_concatenated_string] = STATE(28), + [sym_await] = STATE(40), + [sym__newline] = ACTIONS(3398), + [anon_sym_import] = ACTIONS(12), + [anon_sym_from] = ACTIONS(14), + [anon_sym_LPAREN] = ACTIONS(16), + [anon_sym_print] = ACTIONS(18), + [anon_sym_assert] = ACTIONS(20), + [anon_sym_return] = ACTIONS(22), + [anon_sym_del] = ACTIONS(24), + [anon_sym_raise] = ACTIONS(26), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), + [anon_sym_global] = ACTIONS(44), + [anon_sym_nonlocal] = ACTIONS(46), + [anon_sym_exec] = ACTIONS(48), + [anon_sym_not] = ACTIONS(54), + [anon_sym_PLUS] = ACTIONS(56), + [anon_sym_DASH] = ACTIONS(56), + [anon_sym_TILDE] = ACTIONS(56), + [anon_sym_lambda] = ACTIONS(58), + [anon_sym_yield] = ACTIONS(60), + [anon_sym_LBRACK] = ACTIONS(62), + [sym_ellipsis] = ACTIONS(64), + [anon_sym_LBRACE] = ACTIONS(66), + [sym_string] = ACTIONS(68), + [sym_integer] = ACTIONS(70), + [sym_float] = ACTIONS(70), + [sym_identifier] = ACTIONS(72), + [sym_true] = ACTIONS(70), + [sym_false] = ACTIONS(70), + [sym_none] = ACTIONS(70), + [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1833] = { - [sym__dedent] = ACTIONS(2885), - [anon_sym_import] = ACTIONS(2887), - [anon_sym_from] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_print] = ACTIONS(2887), - [anon_sym_assert] = ACTIONS(2887), - [anon_sym_return] = ACTIONS(2887), - [anon_sym_del] = ACTIONS(2887), - [anon_sym_raise] = ACTIONS(2887), - [sym_pass_statement] = ACTIONS(2887), - [sym_break_statement] = ACTIONS(2887), - [sym_continue_statement] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_else] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2887), - [anon_sym_while] = ACTIONS(2887), - [anon_sym_try] = ACTIONS(2887), - [anon_sym_except] = ACTIONS(2887), - [anon_sym_finally] = ACTIONS(2887), - [anon_sym_with] = ACTIONS(2887), - [anon_sym_async] = ACTIONS(2887), - [anon_sym_def] = ACTIONS(2887), - [anon_sym_global] = ACTIONS(2887), - [anon_sym_nonlocal] = ACTIONS(2887), - [anon_sym_exec] = ACTIONS(2887), - [anon_sym_class] = ACTIONS(2887), - [anon_sym_AT] = ACTIONS(2885), - [anon_sym_not] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_lambda] = ACTIONS(2887), - [anon_sym_yield] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2885), - [sym_ellipsis] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2885), - [sym_string] = ACTIONS(2887), - [sym_integer] = ACTIONS(2887), - [sym_float] = ACTIONS(2887), - [sym_identifier] = ACTIONS(2889), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [anon_sym_await] = ACTIONS(2887), + [1922] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), + [sym_decorator] = STATE(36), + [sym_expression_list] = STATE(37), + [sym__expression] = STATE(38), + [sym__primary_expression] = STATE(39), + [sym_not_operator] = STATE(40), + [sym_boolean_operator] = STATE(40), + [sym_binary_operator] = STATE(28), + [sym_unary_operator] = STATE(28), + [sym_comparison_operator] = STATE(40), + [sym_lambda] = STATE(40), + [sym_assignment] = STATE(41), + [sym_augmented_assignment] = STATE(41), + [sym_yield] = STATE(41), + [sym_attribute] = STATE(28), + [sym_subscript] = STATE(28), + [sym_call] = STATE(28), + [sym_list] = STATE(28), + [sym_list_comprehension] = STATE(28), + [sym_dictionary] = STATE(28), + [sym_dictionary_comprehension] = STATE(28), + [sym_set] = STATE(28), + [sym_set_comprehension] = STATE(28), + [sym_parenthesized_expression] = STATE(28), + [sym_tuple] = STATE(28), + [sym_generator_expression] = STATE(28), + [sym_conditional_expression] = STATE(40), + [sym_concatenated_string] = STATE(28), + [sym_await] = STATE(40), + [aux_sym_module_repeat1] = STATE(1951), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(3400), + [anon_sym_import] = ACTIONS(12), + [anon_sym_from] = ACTIONS(14), + [anon_sym_LPAREN] = ACTIONS(16), + [anon_sym_print] = ACTIONS(18), + [anon_sym_assert] = ACTIONS(20), + [anon_sym_return] = ACTIONS(22), + [anon_sym_del] = ACTIONS(24), + [anon_sym_raise] = ACTIONS(26), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), + [anon_sym_global] = ACTIONS(44), + [anon_sym_nonlocal] = ACTIONS(46), + [anon_sym_exec] = ACTIONS(48), + [anon_sym_class] = ACTIONS(1315), + [anon_sym_AT] = ACTIONS(52), + [anon_sym_not] = ACTIONS(54), + [anon_sym_PLUS] = ACTIONS(56), + [anon_sym_DASH] = ACTIONS(56), + [anon_sym_TILDE] = ACTIONS(56), + [anon_sym_lambda] = ACTIONS(58), + [anon_sym_yield] = ACTIONS(60), + [anon_sym_LBRACK] = ACTIONS(62), + [sym_ellipsis] = ACTIONS(64), + [anon_sym_LBRACE] = ACTIONS(66), + [sym_string] = ACTIONS(68), + [sym_integer] = ACTIONS(70), + [sym_float] = ACTIONS(70), + [sym_identifier] = ACTIONS(72), + [sym_true] = ACTIONS(70), + [sym_false] = ACTIONS(70), + [sym_none] = ACTIONS(70), + [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1834] = { - [sym__expression] = STATE(1863), - [sym__primary_expression] = STATE(105), + [1923] = { + [aux_sym__simple_statements_repeat1] = STATE(1954), + [sym__newline] = ACTIONS(3402), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(3404), + }, + [1924] = { + [sym__dedent] = ACTIONS(1321), + [anon_sym_import] = ACTIONS(1323), + [anon_sym_from] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_print] = ACTIONS(1323), + [anon_sym_assert] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_del] = ACTIONS(1323), + [anon_sym_raise] = ACTIONS(1323), + [sym_pass_statement] = ACTIONS(1323), + [sym_break_statement] = ACTIONS(1323), + [sym_continue_statement] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_else] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_try] = ACTIONS(1323), + [anon_sym_except] = ACTIONS(1323), + [anon_sym_finally] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1323), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(1323), + [anon_sym_global] = ACTIONS(1323), + [anon_sym_nonlocal] = ACTIONS(1323), + [anon_sym_exec] = ACTIONS(1323), + [anon_sym_class] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(1321), + [anon_sym_not] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_lambda] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1321), + [sym_ellipsis] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [sym_string] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [sym_identifier] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [sym_none] = ACTIONS(1323), + [anon_sym_await] = ACTIONS(1323), + [sym_comment] = ACTIONS(76), + }, + [1925] = { + [sym__dedent] = ACTIONS(3017), + [anon_sym_import] = ACTIONS(3019), + [anon_sym_from] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_print] = ACTIONS(3019), + [anon_sym_assert] = ACTIONS(3019), + [anon_sym_return] = ACTIONS(3019), + [anon_sym_del] = ACTIONS(3019), + [anon_sym_raise] = ACTIONS(3019), + [sym_pass_statement] = ACTIONS(3019), + [sym_break_statement] = ACTIONS(3019), + [sym_continue_statement] = ACTIONS(3019), + [anon_sym_if] = ACTIONS(3019), + [anon_sym_else] = ACTIONS(3019), + [anon_sym_for] = ACTIONS(3019), + [anon_sym_while] = ACTIONS(3019), + [anon_sym_try] = ACTIONS(3019), + [anon_sym_except] = ACTIONS(3019), + [anon_sym_finally] = ACTIONS(3019), + [anon_sym_with] = ACTIONS(3019), + [anon_sym_async] = ACTIONS(3019), + [anon_sym_def] = ACTIONS(3019), + [anon_sym_global] = ACTIONS(3019), + [anon_sym_nonlocal] = ACTIONS(3019), + [anon_sym_exec] = ACTIONS(3019), + [anon_sym_class] = ACTIONS(3019), + [anon_sym_AT] = ACTIONS(3017), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_lambda] = ACTIONS(3019), + [anon_sym_yield] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3017), + [sym_ellipsis] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [sym_string] = ACTIONS(3019), + [sym_integer] = ACTIONS(3019), + [sym_float] = ACTIONS(3019), + [sym_identifier] = ACTIONS(3021), + [sym_true] = ACTIONS(3019), + [sym_false] = ACTIONS(3019), + [sym_none] = ACTIONS(3019), + [anon_sym_await] = ACTIONS(3019), + [sym_comment] = ACTIONS(76), + }, + [1926] = { + [sym__expression] = STATE(1955), + [sym__primary_expression] = STATE(111), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -64531,38 +66976,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_TILDE] = ACTIONS(166), - [anon_sym_lambda] = ACTIONS(168), + [anon_sym_not] = ACTIONS(178), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(182), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(170), + [sym_string] = ACTIONS(184), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(172), + [anon_sym_await] = ACTIONS(186), [sym_comment] = ACTIONS(76), }, - [1835] = { - [sym__simple_statements] = STATE(1832), - [sym_import_statement] = STATE(1831), - [sym_import_from_statement] = STATE(1831), - [sym_print_statement] = STATE(1831), - [sym_assert_statement] = STATE(1831), - [sym_expression_statement] = STATE(1831), - [sym_return_statement] = STATE(1831), - [sym_delete_statement] = STATE(1831), - [sym_raise_statement] = STATE(1831), - [sym_global_statement] = STATE(1831), - [sym_nonlocal_statement] = STATE(1831), - [sym_exec_statement] = STATE(1831), - [sym__suite] = STATE(1864), + [1927] = { + [sym__simple_statements] = STATE(1924), + [sym_import_statement] = STATE(1923), + [sym_import_from_statement] = STATE(1923), + [sym_print_statement] = STATE(1923), + [sym_assert_statement] = STATE(1923), + [sym_expression_statement] = STATE(1923), + [sym_return_statement] = STATE(1923), + [sym_delete_statement] = STATE(1923), + [sym_raise_statement] = STATE(1923), + [sym_global_statement] = STATE(1923), + [sym_nonlocal_statement] = STATE(1923), + [sym_exec_statement] = STATE(1923), + [sym__suite] = STATE(1956), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -64590,7 +67035,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(3212), + [sym__indent] = ACTIONS(3346), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -64599,9 +67044,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(3214), - [sym_break_statement] = ACTIONS(3214), - [sym_continue_statement] = ACTIONS(3214), + [sym_pass_statement] = ACTIONS(3348), + [sym_break_statement] = ACTIONS(3348), + [sym_continue_statement] = ACTIONS(3348), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -64624,64 +67069,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1836] = { - [sym__dedent] = ACTIONS(2891), - [anon_sym_import] = ACTIONS(2893), - [anon_sym_from] = ACTIONS(2893), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_print] = ACTIONS(2893), - [anon_sym_assert] = ACTIONS(2893), - [anon_sym_return] = ACTIONS(2893), - [anon_sym_del] = ACTIONS(2893), - [anon_sym_raise] = ACTIONS(2893), - [sym_pass_statement] = ACTIONS(2893), - [sym_break_statement] = ACTIONS(2893), - [sym_continue_statement] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2893), - [anon_sym_for] = ACTIONS(2893), - [anon_sym_while] = ACTIONS(2893), - [anon_sym_try] = ACTIONS(2893), - [anon_sym_with] = ACTIONS(2893), - [anon_sym_async] = ACTIONS(2893), - [anon_sym_def] = ACTIONS(2893), - [anon_sym_global] = ACTIONS(2893), - [anon_sym_nonlocal] = ACTIONS(2893), - [anon_sym_exec] = ACTIONS(2893), - [anon_sym_class] = ACTIONS(2893), - [anon_sym_AT] = ACTIONS(2891), - [anon_sym_not] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_lambda] = ACTIONS(2893), - [anon_sym_yield] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2891), - [sym_ellipsis] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [sym_string] = ACTIONS(2893), - [sym_integer] = ACTIONS(2893), - [sym_float] = ACTIONS(2893), - [sym_identifier] = ACTIONS(2895), - [sym_true] = ACTIONS(2893), - [sym_false] = ACTIONS(2893), - [sym_none] = ACTIONS(2893), - [anon_sym_await] = ACTIONS(2893), - [sym_comment] = ACTIONS(76), - }, - [1837] = { - [sym__simple_statements] = STATE(1867), - [sym_import_statement] = STATE(1866), - [sym_import_from_statement] = STATE(1866), - [sym_print_statement] = STATE(1866), - [sym_assert_statement] = STATE(1866), - [sym_expression_statement] = STATE(1866), - [sym_return_statement] = STATE(1866), - [sym_delete_statement] = STATE(1866), - [sym_raise_statement] = STATE(1866), - [sym_global_statement] = STATE(1866), - [sym_nonlocal_statement] = STATE(1866), - [sym_exec_statement] = STATE(1866), - [sym__suite] = STATE(1868), + [1928] = { + [sym__dedent] = ACTIONS(3023), + [anon_sym_import] = ACTIONS(3025), + [anon_sym_from] = ACTIONS(3025), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_print] = ACTIONS(3025), + [anon_sym_assert] = ACTIONS(3025), + [anon_sym_return] = ACTIONS(3025), + [anon_sym_del] = ACTIONS(3025), + [anon_sym_raise] = ACTIONS(3025), + [sym_pass_statement] = ACTIONS(3025), + [sym_break_statement] = ACTIONS(3025), + [sym_continue_statement] = ACTIONS(3025), + [anon_sym_if] = ACTIONS(3025), + [anon_sym_for] = ACTIONS(3025), + [anon_sym_while] = ACTIONS(3025), + [anon_sym_try] = ACTIONS(3025), + [anon_sym_with] = ACTIONS(3025), + [anon_sym_async] = ACTIONS(3025), + [anon_sym_def] = ACTIONS(3025), + [anon_sym_global] = ACTIONS(3025), + [anon_sym_nonlocal] = ACTIONS(3025), + [anon_sym_exec] = ACTIONS(3025), + [anon_sym_class] = ACTIONS(3025), + [anon_sym_AT] = ACTIONS(3023), + [anon_sym_not] = ACTIONS(3025), + [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_lambda] = ACTIONS(3025), + [anon_sym_yield] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(3023), + [sym_ellipsis] = ACTIONS(3023), + [anon_sym_LBRACE] = ACTIONS(3023), + [sym_string] = ACTIONS(3025), + [sym_integer] = ACTIONS(3025), + [sym_float] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3027), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [sym_none] = ACTIONS(3025), + [anon_sym_await] = ACTIONS(3025), + [sym_comment] = ACTIONS(76), + }, + [1929] = { + [sym__simple_statements] = STATE(1959), + [sym_import_statement] = STATE(1958), + [sym_import_from_statement] = STATE(1958), + [sym_print_statement] = STATE(1958), + [sym_assert_statement] = STATE(1958), + [sym_expression_statement] = STATE(1958), + [sym_return_statement] = STATE(1958), + [sym_delete_statement] = STATE(1958), + [sym_raise_statement] = STATE(1958), + [sym_global_statement] = STATE(1958), + [sym_nonlocal_statement] = STATE(1958), + [sym_exec_statement] = STATE(1958), + [sym__suite] = STATE(1960), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -64709,7 +67154,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(3272), + [sym__indent] = ACTIONS(3406), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -64718,9 +67163,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(3274), - [sym_break_statement] = ACTIONS(3274), - [sym_continue_statement] = ACTIONS(3274), + [sym_pass_statement] = ACTIONS(3408), + [sym_break_statement] = ACTIONS(3408), + [sym_continue_statement] = ACTIONS(3408), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -64743,108 +67188,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1838] = { - [sym__dedent] = ACTIONS(2901), - [anon_sym_import] = ACTIONS(2903), - [anon_sym_from] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_print] = ACTIONS(2903), - [anon_sym_assert] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2903), - [anon_sym_del] = ACTIONS(2903), - [anon_sym_raise] = ACTIONS(2903), - [sym_pass_statement] = ACTIONS(2903), - [sym_break_statement] = ACTIONS(2903), - [sym_continue_statement] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_for] = ACTIONS(2903), - [anon_sym_while] = ACTIONS(2903), - [anon_sym_try] = ACTIONS(2903), - [anon_sym_with] = ACTIONS(2903), - [anon_sym_async] = ACTIONS(2903), - [anon_sym_def] = ACTIONS(2903), - [anon_sym_global] = ACTIONS(2903), - [anon_sym_nonlocal] = ACTIONS(2903), - [anon_sym_exec] = ACTIONS(2903), - [anon_sym_class] = ACTIONS(2903), - [anon_sym_AT] = ACTIONS(2901), - [anon_sym_not] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_TILDE] = ACTIONS(2901), - [anon_sym_lambda] = ACTIONS(2903), - [anon_sym_yield] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2901), - [sym_ellipsis] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2901), - [sym_string] = ACTIONS(2903), - [sym_integer] = ACTIONS(2903), - [sym_float] = ACTIONS(2903), - [sym_identifier] = ACTIONS(2905), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_none] = ACTIONS(2903), - [anon_sym_await] = ACTIONS(2903), - [sym_comment] = ACTIONS(76), - }, - [1839] = { - [sym__dedent] = ACTIONS(2459), - [anon_sym_import] = ACTIONS(2461), - [anon_sym_from] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_print] = ACTIONS(2461), - [anon_sym_assert] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_del] = ACTIONS(2461), - [anon_sym_raise] = ACTIONS(2461), - [sym_pass_statement] = ACTIONS(2461), - [sym_break_statement] = ACTIONS(2461), - [sym_continue_statement] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_with] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_def] = ACTIONS(2461), - [anon_sym_global] = ACTIONS(2461), - [anon_sym_nonlocal] = ACTIONS(2461), - [anon_sym_exec] = ACTIONS(2461), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_lambda] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [sym_ellipsis] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [sym_string] = ACTIONS(2461), - [sym_integer] = ACTIONS(2461), - [sym_float] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2463), - [sym_true] = ACTIONS(2461), - [sym_false] = ACTIONS(2461), - [sym_none] = ACTIONS(2461), - [anon_sym_await] = ACTIONS(2461), - [sym_comment] = ACTIONS(76), - }, - [1840] = { - [sym__simple_statements] = STATE(1636), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym__suite] = STATE(1869), + [1930] = { + [sym__dedent] = ACTIONS(3033), + [anon_sym_import] = ACTIONS(3035), + [anon_sym_from] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3033), + [anon_sym_print] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_del] = ACTIONS(3035), + [anon_sym_raise] = ACTIONS(3035), + [sym_pass_statement] = ACTIONS(3035), + [sym_break_statement] = ACTIONS(3035), + [sym_continue_statement] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [anon_sym_with] = ACTIONS(3035), + [anon_sym_async] = ACTIONS(3035), + [anon_sym_def] = ACTIONS(3035), + [anon_sym_global] = ACTIONS(3035), + [anon_sym_nonlocal] = ACTIONS(3035), + [anon_sym_exec] = ACTIONS(3035), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_AT] = ACTIONS(3033), + [anon_sym_not] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_TILDE] = ACTIONS(3033), + [anon_sym_lambda] = ACTIONS(3035), + [anon_sym_yield] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3033), + [sym_ellipsis] = ACTIONS(3033), + [anon_sym_LBRACE] = ACTIONS(3033), + [sym_string] = ACTIONS(3035), + [sym_integer] = ACTIONS(3035), + [sym_float] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3037), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [sym_none] = ACTIONS(3035), + [anon_sym_await] = ACTIONS(3035), + [sym_comment] = ACTIONS(76), + }, + [1931] = { + [sym__dedent] = ACTIONS(2583), + [anon_sym_import] = ACTIONS(2585), + [anon_sym_from] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_print] = ACTIONS(2585), + [anon_sym_assert] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_del] = ACTIONS(2585), + [anon_sym_raise] = ACTIONS(2585), + [sym_pass_statement] = ACTIONS(2585), + [sym_break_statement] = ACTIONS(2585), + [sym_continue_statement] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_with] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_def] = ACTIONS(2585), + [anon_sym_global] = ACTIONS(2585), + [anon_sym_nonlocal] = ACTIONS(2585), + [anon_sym_exec] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_lambda] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [sym_ellipsis] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [sym_string] = ACTIONS(2585), + [sym_integer] = ACTIONS(2585), + [sym_float] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2587), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_none] = ACTIONS(2585), + [anon_sym_await] = ACTIONS(2585), + [sym_comment] = ACTIONS(76), + }, + [1932] = { + [sym__simple_statements] = STATE(1727), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym__suite] = STATE(1961), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -64872,7 +67317,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(2875), + [sym__indent] = ACTIONS(3007), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -64881,9 +67326,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -64906,155 +67351,155 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1841] = { - [ts_builtin_sym_end] = ACTIONS(3276), - [anon_sym_import] = ACTIONS(3278), - [anon_sym_from] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_print] = ACTIONS(3278), - [anon_sym_assert] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_del] = ACTIONS(3278), - [anon_sym_raise] = ACTIONS(3278), - [sym_pass_statement] = ACTIONS(3278), - [sym_break_statement] = ACTIONS(3278), - [sym_continue_statement] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_except] = ACTIONS(3278), - [anon_sym_finally] = ACTIONS(3278), - [anon_sym_with] = ACTIONS(3278), - [anon_sym_async] = ACTIONS(3278), - [anon_sym_def] = ACTIONS(3278), - [anon_sym_global] = ACTIONS(3278), - [anon_sym_nonlocal] = ACTIONS(3278), - [anon_sym_exec] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3276), - [anon_sym_not] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_lambda] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3276), - [sym_ellipsis] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3276), - [sym_string] = ACTIONS(3278), - [sym_integer] = ACTIONS(3278), - [sym_float] = ACTIONS(3278), - [sym_identifier] = ACTIONS(3280), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [sym_none] = ACTIONS(3278), - [anon_sym_await] = ACTIONS(3278), - [sym_comment] = ACTIONS(76), - }, - [1842] = { - [ts_builtin_sym_end] = ACTIONS(2459), - [anon_sym_import] = ACTIONS(2461), - [anon_sym_from] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_print] = ACTIONS(2461), - [anon_sym_assert] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_del] = ACTIONS(2461), - [anon_sym_raise] = ACTIONS(2461), - [sym_pass_statement] = ACTIONS(2461), - [sym_break_statement] = ACTIONS(2461), - [sym_continue_statement] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_finally] = ACTIONS(2461), - [anon_sym_with] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_def] = ACTIONS(2461), - [anon_sym_global] = ACTIONS(2461), - [anon_sym_nonlocal] = ACTIONS(2461), - [anon_sym_exec] = ACTIONS(2461), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_lambda] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [sym_ellipsis] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [sym_string] = ACTIONS(2461), - [sym_integer] = ACTIONS(2461), - [sym_float] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2463), - [sym_true] = ACTIONS(2461), - [sym_false] = ACTIONS(2461), - [sym_none] = ACTIONS(2461), - [anon_sym_await] = ACTIONS(2461), - [sym_comment] = ACTIONS(76), - }, - [1843] = { - [ts_builtin_sym_end] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(1206), - [anon_sym_from] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_print] = ACTIONS(1206), - [anon_sym_assert] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_del] = ACTIONS(1206), - [anon_sym_raise] = ACTIONS(1206), - [sym_pass_statement] = ACTIONS(1206), - [sym_break_statement] = ACTIONS(1206), - [sym_continue_statement] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_try] = ACTIONS(1206), - [anon_sym_finally] = ACTIONS(1206), - [anon_sym_with] = ACTIONS(1206), - [anon_sym_async] = ACTIONS(1206), - [anon_sym_def] = ACTIONS(1206), - [anon_sym_global] = ACTIONS(1206), - [anon_sym_nonlocal] = ACTIONS(1206), - [anon_sym_exec] = ACTIONS(1206), - [anon_sym_class] = ACTIONS(1206), - [anon_sym_AT] = ACTIONS(1204), - [anon_sym_not] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_lambda] = ACTIONS(1206), - [anon_sym_yield] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1204), - [sym_ellipsis] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1204), - [sym_string] = ACTIONS(1206), - [sym_integer] = ACTIONS(1206), - [sym_float] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [sym_none] = ACTIONS(1206), - [anon_sym_await] = ACTIONS(1206), - [sym_comment] = ACTIONS(76), - }, - [1844] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [1933] = { + [ts_builtin_sym_end] = ACTIONS(3410), + [anon_sym_import] = ACTIONS(3412), + [anon_sym_from] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_print] = ACTIONS(3412), + [anon_sym_assert] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_del] = ACTIONS(3412), + [anon_sym_raise] = ACTIONS(3412), + [sym_pass_statement] = ACTIONS(3412), + [sym_break_statement] = ACTIONS(3412), + [sym_continue_statement] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_else] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_while] = ACTIONS(3412), + [anon_sym_try] = ACTIONS(3412), + [anon_sym_except] = ACTIONS(3412), + [anon_sym_finally] = ACTIONS(3412), + [anon_sym_with] = ACTIONS(3412), + [anon_sym_async] = ACTIONS(3412), + [anon_sym_def] = ACTIONS(3412), + [anon_sym_global] = ACTIONS(3412), + [anon_sym_nonlocal] = ACTIONS(3412), + [anon_sym_exec] = ACTIONS(3412), + [anon_sym_class] = ACTIONS(3412), + [anon_sym_AT] = ACTIONS(3410), + [anon_sym_not] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_lambda] = ACTIONS(3412), + [anon_sym_yield] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3410), + [sym_ellipsis] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3410), + [sym_string] = ACTIONS(3412), + [sym_integer] = ACTIONS(3412), + [sym_float] = ACTIONS(3412), + [sym_identifier] = ACTIONS(3414), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_none] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3412), + [sym_comment] = ACTIONS(76), + }, + [1934] = { + [ts_builtin_sym_end] = ACTIONS(2583), + [anon_sym_import] = ACTIONS(2585), + [anon_sym_from] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_print] = ACTIONS(2585), + [anon_sym_assert] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_del] = ACTIONS(2585), + [anon_sym_raise] = ACTIONS(2585), + [sym_pass_statement] = ACTIONS(2585), + [sym_break_statement] = ACTIONS(2585), + [sym_continue_statement] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_finally] = ACTIONS(2585), + [anon_sym_with] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_def] = ACTIONS(2585), + [anon_sym_global] = ACTIONS(2585), + [anon_sym_nonlocal] = ACTIONS(2585), + [anon_sym_exec] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_lambda] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [sym_ellipsis] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [sym_string] = ACTIONS(2585), + [sym_integer] = ACTIONS(2585), + [sym_float] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2587), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_none] = ACTIONS(2585), + [anon_sym_await] = ACTIONS(2585), + [sym_comment] = ACTIONS(76), + }, + [1935] = { + [ts_builtin_sym_end] = ACTIONS(1264), + [anon_sym_import] = ACTIONS(1266), + [anon_sym_from] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_print] = ACTIONS(1266), + [anon_sym_assert] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_del] = ACTIONS(1266), + [anon_sym_raise] = ACTIONS(1266), + [sym_pass_statement] = ACTIONS(1266), + [sym_break_statement] = ACTIONS(1266), + [sym_continue_statement] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_finally] = ACTIONS(1266), + [anon_sym_with] = ACTIONS(1266), + [anon_sym_async] = ACTIONS(1266), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_global] = ACTIONS(1266), + [anon_sym_nonlocal] = ACTIONS(1266), + [anon_sym_exec] = ACTIONS(1266), + [anon_sym_class] = ACTIONS(1266), + [anon_sym_AT] = ACTIONS(1264), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_lambda] = ACTIONS(1266), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [sym_ellipsis] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [sym_string] = ACTIONS(1266), + [sym_integer] = ACTIONS(1266), + [sym_float] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [sym_none] = ACTIONS(1266), + [anon_sym_await] = ACTIONS(1266), + [sym_comment] = ACTIONS(76), + }, + [1936] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -65082,7 +67527,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(3282), + [sym__newline] = ACTIONS(3416), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -65091,9 +67536,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -65116,27 +67561,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1845] = { - [anon_sym_RPAREN] = ACTIONS(2741), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_COLON] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(2527), - [anon_sym_or] = ACTIONS(2529), + [1937] = { + [anon_sym_RPAREN] = ACTIONS(2869), + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_COLON] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(2653), [sym_comment] = ACTIONS(76), }, - [1846] = { - [anon_sym_RPAREN] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_EQ] = ACTIONS(2111), - [anon_sym_and] = ACTIONS(2922), - [anon_sym_or] = ACTIONS(2924), + [1938] = { + [anon_sym_RPAREN] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(2219), + [anon_sym_and] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3056), [sym_comment] = ACTIONS(76), }, - [1847] = { - [sym__expression] = STATE(1871), - [sym__primary_expression] = STATE(1467), + [1939] = { + [sym__expression] = STATE(1963), + [sym__primary_expression] = STATE(1554), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), @@ -65161,71 +67606,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_lambda] = ACTIONS(2689), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(2567), + [sym_string] = ACTIONS(2691), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(2569), - [sym_comment] = ACTIONS(76), - }, - [1848] = { - [sym_argument_list] = STATE(257), - [sym_generator_expression] = STATE(257), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_GT_GT] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_in] = ACTIONS(2272), - [anon_sym_EQ] = ACTIONS(2274), - [anon_sym_not] = ACTIONS(2272), - [anon_sym_and] = ACTIONS(2272), - [anon_sym_or] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2936), - [anon_sym_SLASH_SLASH] = ACTIONS(2936), - [anon_sym_STAR_STAR] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(2940), - [anon_sym_AMP] = ACTIONS(2942), - [anon_sym_CARET] = ACTIONS(2944), - [anon_sym_LT_LT] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_is] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(434), - [sym_comment] = ACTIONS(76), - }, - [1849] = { - [sym__expression_within_for_in_clause] = STATE(1739), - [sym__expression] = STATE(1512), - [sym__primary_expression] = STATE(152), + [anon_sym_await] = ACTIONS(2693), + [sym_comment] = ACTIONS(76), + }, + [1940] = { + [sym_argument_list] = STATE(263), + [sym_generator_expression] = STATE(263), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(2380), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_EQ] = ACTIONS(2382), + [anon_sym_not] = ACTIONS(2380), + [anon_sym_and] = ACTIONS(2380), + [anon_sym_or] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_SLASH_SLASH] = ACTIONS(3068), + [anon_sym_STAR_STAR] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3074), + [anon_sym_CARET] = ACTIONS(3076), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_LT_GT] = ACTIONS(2380), + [anon_sym_is] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(448), + [sym_comment] = ACTIONS(76), + }, + [1941] = { + [sym__expression_within_for_in_clause] = STATE(1831), + [sym__expression] = STATE(1601), + [sym__primary_expression] = STATE(158), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -65244,43 +67689,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(226), - [anon_sym_lambda] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_lambda] = ACTIONS(2763), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(232), + [sym_string] = ACTIONS(246), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(234), + [anon_sym_await] = ACTIONS(248), [sym_comment] = ACTIONS(76), }, - [1850] = { - [anon_sym_if] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(2639), - [anon_sym_or] = ACTIONS(2641), - [anon_sym_RBRACK] = ACTIONS(2741), + [1942] = { + [anon_sym_if] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(2767), + [anon_sym_or] = ACTIONS(2769), + [anon_sym_RBRACK] = ACTIONS(2869), [sym_comment] = ACTIONS(76), }, - [1851] = { - [sym__expression_within_for_in_clause] = STATE(1739), - [sym__expression] = STATE(1552), - [sym__primary_expression] = STATE(930), + [1943] = { + [sym__expression_within_for_in_clause] = STATE(1831), + [sym__expression] = STATE(1641), + [sym__primary_expression] = STATE(988), [sym_not_operator] = STATE(67), [sym_boolean_operator] = STATE(67), [sym_binary_operator] = STATE(61), [sym_unary_operator] = STATE(61), [sym_comparison_operator] = STATE(67), [sym_lambda] = STATE(67), - [sym_lambda_within_for_in_clause] = STATE(1364), + [sym_lambda_within_for_in_clause] = STATE(1443), [sym_attribute] = STATE(61), [sym_subscript] = STATE(61), [sym_call] = STATE(61), @@ -65299,92 +67744,92 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(84), [anon_sym_print] = ACTIONS(90), [anon_sym_exec] = ACTIONS(90), - [anon_sym_not] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_lambda] = ACTIONS(2701), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_lambda] = ACTIONS(2829), [anon_sym_LBRACK] = ACTIONS(100), [sym_ellipsis] = ACTIONS(102), [anon_sym_LBRACE] = ACTIONS(104), - [sym_string] = ACTIONS(1485), + [sym_string] = ACTIONS(1551), [sym_integer] = ACTIONS(108), [sym_float] = ACTIONS(108), [sym_identifier] = ACTIONS(110), [sym_true] = ACTIONS(108), [sym_false] = ACTIONS(108), [sym_none] = ACTIONS(108), - [anon_sym_await] = ACTIONS(1487), - [sym_comment] = ACTIONS(76), - }, - [1852] = { - [anon_sym_if] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(2705), - [anon_sym_or] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2741), + [anon_sym_await] = ACTIONS(1553), [sym_comment] = ACTIONS(76), }, - [1853] = { - [sym__dedent] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_from] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_print] = ACTIONS(1835), - [anon_sym_assert] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_del] = ACTIONS(1835), - [anon_sym_raise] = ACTIONS(1835), - [sym_pass_statement] = ACTIONS(1835), - [sym_break_statement] = ACTIONS(1835), - [sym_continue_statement] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_elif] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_global] = ACTIONS(1835), - [anon_sym_nonlocal] = ACTIONS(1835), - [anon_sym_exec] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_lambda] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), - [sym_ellipsis] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1833), - [sym_string] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_none] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1835), + [1944] = { + [anon_sym_if] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2835), + [anon_sym_RBRACE] = ACTIONS(2869), [sym_comment] = ACTIONS(76), }, - [1854] = { - [sym__simple_statements] = STATE(1623), - [sym_import_statement] = STATE(1622), - [sym_import_from_statement] = STATE(1622), - [sym_print_statement] = STATE(1622), - [sym_assert_statement] = STATE(1622), - [sym_expression_statement] = STATE(1622), - [sym_return_statement] = STATE(1622), - [sym_delete_statement] = STATE(1622), - [sym_raise_statement] = STATE(1622), - [sym_global_statement] = STATE(1622), - [sym_nonlocal_statement] = STATE(1622), - [sym_exec_statement] = STATE(1622), - [sym__suite] = STATE(1872), + [1945] = { + [sym__dedent] = ACTIONS(1934), + [anon_sym_import] = ACTIONS(1936), + [anon_sym_from] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_print] = ACTIONS(1936), + [anon_sym_assert] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_del] = ACTIONS(1936), + [anon_sym_raise] = ACTIONS(1936), + [sym_pass_statement] = ACTIONS(1936), + [sym_break_statement] = ACTIONS(1936), + [sym_continue_statement] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_elif] = ACTIONS(1936), + [anon_sym_else] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_try] = ACTIONS(1936), + [anon_sym_with] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_def] = ACTIONS(1936), + [anon_sym_global] = ACTIONS(1936), + [anon_sym_nonlocal] = ACTIONS(1936), + [anon_sym_exec] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_lambda] = ACTIONS(1936), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1934), + [sym_ellipsis] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_string] = ACTIONS(1936), + [sym_integer] = ACTIONS(1936), + [sym_float] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_none] = ACTIONS(1936), + [anon_sym_await] = ACTIONS(1936), + [sym_comment] = ACTIONS(76), + }, + [1946] = { + [sym__simple_statements] = STATE(1714), + [sym_import_statement] = STATE(1713), + [sym_import_from_statement] = STATE(1713), + [sym_print_statement] = STATE(1713), + [sym_assert_statement] = STATE(1713), + [sym_expression_statement] = STATE(1713), + [sym_return_statement] = STATE(1713), + [sym_delete_statement] = STATE(1713), + [sym_raise_statement] = STATE(1713), + [sym_global_statement] = STATE(1713), + [sym_nonlocal_statement] = STATE(1713), + [sym_exec_statement] = STATE(1713), + [sym__suite] = STATE(1964), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -65412,7 +67857,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(2863), + [sym__indent] = ACTIONS(2995), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -65421,9 +67866,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(2865), - [sym_break_statement] = ACTIONS(2865), - [sym_continue_statement] = ACTIONS(2865), + [sym_pass_statement] = ACTIONS(2997), + [sym_break_statement] = ACTIONS(2997), + [sym_continue_statement] = ACTIONS(2997), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -65446,210 +67891,210 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1855] = { - [sym__dedent] = ACTIONS(3057), - [anon_sym_import] = ACTIONS(3059), - [anon_sym_from] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym_print] = ACTIONS(3059), - [anon_sym_assert] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_del] = ACTIONS(3059), - [anon_sym_raise] = ACTIONS(3059), - [sym_pass_statement] = ACTIONS(3059), - [sym_break_statement] = ACTIONS(3059), - [sym_continue_statement] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_for] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3059), - [anon_sym_try] = ACTIONS(3059), - [anon_sym_with] = ACTIONS(3059), - [anon_sym_async] = ACTIONS(3059), - [anon_sym_def] = ACTIONS(3059), - [anon_sym_global] = ACTIONS(3059), - [anon_sym_nonlocal] = ACTIONS(3059), - [anon_sym_exec] = ACTIONS(3059), - [anon_sym_class] = ACTIONS(3059), - [anon_sym_AT] = ACTIONS(3057), - [anon_sym_not] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_lambda] = ACTIONS(3059), - [anon_sym_yield] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3057), - [sym_ellipsis] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [sym_string] = ACTIONS(3059), - [sym_integer] = ACTIONS(3059), - [sym_float] = ACTIONS(3059), - [sym_identifier] = ACTIONS(3061), - [sym_true] = ACTIONS(3059), - [sym_false] = ACTIONS(3059), - [sym_none] = ACTIONS(3059), - [anon_sym_await] = ACTIONS(3059), - [sym_comment] = ACTIONS(76), - }, - [1856] = { - [sym__dedent] = ACTIONS(3063), - [anon_sym_import] = ACTIONS(3065), - [anon_sym_from] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3063), - [anon_sym_print] = ACTIONS(3065), - [anon_sym_assert] = ACTIONS(3065), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_del] = ACTIONS(3065), - [anon_sym_raise] = ACTIONS(3065), - [sym_pass_statement] = ACTIONS(3065), - [sym_break_statement] = ACTIONS(3065), - [sym_continue_statement] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_for] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3065), - [anon_sym_try] = ACTIONS(3065), - [anon_sym_with] = ACTIONS(3065), - [anon_sym_async] = ACTIONS(3065), - [anon_sym_def] = ACTIONS(3065), - [anon_sym_global] = ACTIONS(3065), - [anon_sym_nonlocal] = ACTIONS(3065), - [anon_sym_exec] = ACTIONS(3065), - [anon_sym_class] = ACTIONS(3065), - [anon_sym_AT] = ACTIONS(3063), - [anon_sym_not] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_lambda] = ACTIONS(3065), - [anon_sym_yield] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3063), - [sym_ellipsis] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3063), - [sym_string] = ACTIONS(3065), - [sym_integer] = ACTIONS(3065), - [sym_float] = ACTIONS(3065), - [sym_identifier] = ACTIONS(3067), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [sym_none] = ACTIONS(3065), - [anon_sym_await] = ACTIONS(3065), - [sym_comment] = ACTIONS(76), - }, - [1857] = { - [sym__dedent] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_from] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_print] = ACTIONS(1835), - [anon_sym_assert] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_del] = ACTIONS(1835), - [anon_sym_raise] = ACTIONS(1835), - [sym_pass_statement] = ACTIONS(1835), - [sym_break_statement] = ACTIONS(1835), - [sym_continue_statement] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_global] = ACTIONS(1835), - [anon_sym_nonlocal] = ACTIONS(1835), - [anon_sym_exec] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_lambda] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), - [sym_ellipsis] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1833), - [sym_string] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_none] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1835), - [sym_comment] = ACTIONS(76), - }, - [1858] = { - [sym__dedent] = ACTIONS(1892), - [anon_sym_import] = ACTIONS(1894), - [anon_sym_from] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_print] = ACTIONS(1894), - [anon_sym_assert] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_del] = ACTIONS(1894), - [anon_sym_raise] = ACTIONS(1894), - [sym_pass_statement] = ACTIONS(1894), - [sym_break_statement] = ACTIONS(1894), - [sym_continue_statement] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_except] = ACTIONS(1894), - [anon_sym_finally] = ACTIONS(1894), - [anon_sym_with] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1894), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_global] = ACTIONS(1894), - [anon_sym_nonlocal] = ACTIONS(1894), - [anon_sym_exec] = ACTIONS(1894), - [anon_sym_class] = ACTIONS(1894), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_lambda] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1892), - [sym_ellipsis] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1892), - [sym_string] = ACTIONS(1894), - [sym_integer] = ACTIONS(1894), - [sym_float] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [sym_true] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [sym_none] = ACTIONS(1894), - [anon_sym_await] = ACTIONS(1894), - [sym_comment] = ACTIONS(76), - }, - [1859] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [1947] = { + [sym__dedent] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_from] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_print] = ACTIONS(3193), + [anon_sym_assert] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_del] = ACTIONS(3193), + [anon_sym_raise] = ACTIONS(3193), + [sym_pass_statement] = ACTIONS(3193), + [sym_break_statement] = ACTIONS(3193), + [sym_continue_statement] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_with] = ACTIONS(3193), + [anon_sym_async] = ACTIONS(3193), + [anon_sym_def] = ACTIONS(3193), + [anon_sym_global] = ACTIONS(3193), + [anon_sym_nonlocal] = ACTIONS(3193), + [anon_sym_exec] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3191), + [anon_sym_not] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_lambda] = ACTIONS(3193), + [anon_sym_yield] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3191), + [sym_ellipsis] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [sym_string] = ACTIONS(3193), + [sym_integer] = ACTIONS(3193), + [sym_float] = ACTIONS(3193), + [sym_identifier] = ACTIONS(3195), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_none] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3193), + [sym_comment] = ACTIONS(76), + }, + [1948] = { + [sym__dedent] = ACTIONS(3197), + [anon_sym_import] = ACTIONS(3199), + [anon_sym_from] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_print] = ACTIONS(3199), + [anon_sym_assert] = ACTIONS(3199), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_del] = ACTIONS(3199), + [anon_sym_raise] = ACTIONS(3199), + [sym_pass_statement] = ACTIONS(3199), + [sym_break_statement] = ACTIONS(3199), + [sym_continue_statement] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_while] = ACTIONS(3199), + [anon_sym_try] = ACTIONS(3199), + [anon_sym_with] = ACTIONS(3199), + [anon_sym_async] = ACTIONS(3199), + [anon_sym_def] = ACTIONS(3199), + [anon_sym_global] = ACTIONS(3199), + [anon_sym_nonlocal] = ACTIONS(3199), + [anon_sym_exec] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3199), + [anon_sym_AT] = ACTIONS(3197), + [anon_sym_not] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_lambda] = ACTIONS(3199), + [anon_sym_yield] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3197), + [sym_ellipsis] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3197), + [sym_string] = ACTIONS(3199), + [sym_integer] = ACTIONS(3199), + [sym_float] = ACTIONS(3199), + [sym_identifier] = ACTIONS(3201), + [sym_true] = ACTIONS(3199), + [sym_false] = ACTIONS(3199), + [sym_none] = ACTIONS(3199), + [anon_sym_await] = ACTIONS(3199), + [sym_comment] = ACTIONS(76), + }, + [1949] = { + [sym__dedent] = ACTIONS(1934), + [anon_sym_import] = ACTIONS(1936), + [anon_sym_from] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_print] = ACTIONS(1936), + [anon_sym_assert] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_del] = ACTIONS(1936), + [anon_sym_raise] = ACTIONS(1936), + [sym_pass_statement] = ACTIONS(1936), + [sym_break_statement] = ACTIONS(1936), + [sym_continue_statement] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_else] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_try] = ACTIONS(1936), + [anon_sym_with] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_def] = ACTIONS(1936), + [anon_sym_global] = ACTIONS(1936), + [anon_sym_nonlocal] = ACTIONS(1936), + [anon_sym_exec] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_lambda] = ACTIONS(1936), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1934), + [sym_ellipsis] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_string] = ACTIONS(1936), + [sym_integer] = ACTIONS(1936), + [sym_float] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_none] = ACTIONS(1936), + [anon_sym_await] = ACTIONS(1936), + [sym_comment] = ACTIONS(76), + }, + [1950] = { + [sym__dedent] = ACTIONS(1993), + [anon_sym_import] = ACTIONS(1995), + [anon_sym_from] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_del] = ACTIONS(1995), + [anon_sym_raise] = ACTIONS(1995), + [sym_pass_statement] = ACTIONS(1995), + [sym_break_statement] = ACTIONS(1995), + [sym_continue_statement] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_else] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1995), + [anon_sym_except] = ACTIONS(1995), + [anon_sym_finally] = ACTIONS(1995), + [anon_sym_with] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1995), + [anon_sym_global] = ACTIONS(1995), + [anon_sym_nonlocal] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_class] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(1993), + [anon_sym_not] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_lambda] = ACTIONS(1995), + [anon_sym_yield] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1993), + [sym_ellipsis] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [sym_string] = ACTIONS(1995), + [sym_integer] = ACTIONS(1995), + [sym_float] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1997), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_none] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(1995), + [sym_comment] = ACTIONS(76), + }, + [1951] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -65678,9 +68123,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1130), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(3284), + [aux_sym_module_repeat1] = STATE(1206), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(3418), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -65689,20 +68134,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -65723,65 +68168,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1860] = { - [sym__dedent] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_from] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_print] = ACTIONS(552), - [anon_sym_assert] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_del] = ACTIONS(552), - [anon_sym_raise] = ACTIONS(552), - [sym_pass_statement] = ACTIONS(552), - [sym_break_statement] = ACTIONS(552), - [sym_continue_statement] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_else] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_try] = ACTIONS(552), - [anon_sym_except] = ACTIONS(552), - [anon_sym_finally] = ACTIONS(552), - [anon_sym_with] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_def] = ACTIONS(552), - [anon_sym_global] = ACTIONS(552), - [anon_sym_nonlocal] = ACTIONS(552), - [anon_sym_exec] = ACTIONS(552), - [anon_sym_class] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(550), - [anon_sym_not] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_TILDE] = ACTIONS(550), - [anon_sym_lambda] = ACTIONS(552), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_LBRACK] = ACTIONS(550), - [sym_ellipsis] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(550), - [sym_string] = ACTIONS(552), - [sym_integer] = ACTIONS(552), - [sym_float] = ACTIONS(552), - [sym_identifier] = ACTIONS(554), - [sym_true] = ACTIONS(552), - [sym_false] = ACTIONS(552), - [sym_none] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [sym_comment] = ACTIONS(76), - }, - [1861] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [1952] = { + [sym__dedent] = ACTIONS(584), + [anon_sym_import] = ACTIONS(586), + [anon_sym_from] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_print] = ACTIONS(586), + [anon_sym_assert] = ACTIONS(586), + [anon_sym_return] = ACTIONS(586), + [anon_sym_del] = ACTIONS(586), + [anon_sym_raise] = ACTIONS(586), + [sym_pass_statement] = ACTIONS(586), + [sym_break_statement] = ACTIONS(586), + [sym_continue_statement] = ACTIONS(586), + [anon_sym_if] = ACTIONS(586), + [anon_sym_else] = ACTIONS(586), + [anon_sym_for] = ACTIONS(586), + [anon_sym_while] = ACTIONS(586), + [anon_sym_try] = ACTIONS(586), + [anon_sym_except] = ACTIONS(586), + [anon_sym_finally] = ACTIONS(586), + [anon_sym_with] = ACTIONS(586), + [anon_sym_async] = ACTIONS(586), + [anon_sym_def] = ACTIONS(586), + [anon_sym_global] = ACTIONS(586), + [anon_sym_nonlocal] = ACTIONS(586), + [anon_sym_exec] = ACTIONS(586), + [anon_sym_class] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_not] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_TILDE] = ACTIONS(584), + [anon_sym_lambda] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(584), + [sym_ellipsis] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(584), + [sym_string] = ACTIONS(586), + [sym_integer] = ACTIONS(586), + [sym_float] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [sym_true] = ACTIONS(586), + [sym_false] = ACTIONS(586), + [sym_none] = ACTIONS(586), + [anon_sym_await] = ACTIONS(586), + [sym_comment] = ACTIONS(76), + }, + [1953] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -65809,7 +68254,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(3286), + [sym__newline] = ACTIONS(3420), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -65818,9 +68263,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -65843,90 +68288,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1862] = { - [aux_sym__simple_statements_repeat1] = STATE(335), - [sym__newline] = ACTIONS(3286), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(3288), - }, - [1863] = { - [anon_sym_if] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(3290), - [anon_sym_and] = ACTIONS(568), - [anon_sym_or] = ACTIONS(570), - [sym_comment] = ACTIONS(76), - }, - [1864] = { - [sym__dedent] = ACTIONS(3101), - [anon_sym_import] = ACTIONS(3103), - [anon_sym_from] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_print] = ACTIONS(3103), - [anon_sym_assert] = ACTIONS(3103), - [anon_sym_return] = ACTIONS(3103), - [anon_sym_del] = ACTIONS(3103), - [anon_sym_raise] = ACTIONS(3103), - [sym_pass_statement] = ACTIONS(3103), - [sym_break_statement] = ACTIONS(3103), - [sym_continue_statement] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_else] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3103), - [anon_sym_while] = ACTIONS(3103), - [anon_sym_try] = ACTIONS(3103), - [anon_sym_except] = ACTIONS(3103), - [anon_sym_finally] = ACTIONS(3103), - [anon_sym_with] = ACTIONS(3103), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_def] = ACTIONS(3103), - [anon_sym_global] = ACTIONS(3103), - [anon_sym_nonlocal] = ACTIONS(3103), - [anon_sym_exec] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_not] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_lambda] = ACTIONS(3103), - [anon_sym_yield] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3101), - [sym_ellipsis] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3101), - [sym_string] = ACTIONS(3103), - [sym_integer] = ACTIONS(3103), - [sym_float] = ACTIONS(3103), - [sym_identifier] = ACTIONS(3105), - [sym_true] = ACTIONS(3103), - [sym_false] = ACTIONS(3103), - [sym_none] = ACTIONS(3103), - [anon_sym_await] = ACTIONS(3103), - [sym_comment] = ACTIONS(76), - }, - [1865] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [1954] = { + [aux_sym__simple_statements_repeat1] = STATE(362), + [sym__newline] = ACTIONS(3420), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(3422), + }, + [1955] = { + [anon_sym_if] = ACTIONS(598), + [anon_sym_COLON] = ACTIONS(3424), + [anon_sym_and] = ACTIONS(602), + [anon_sym_or] = ACTIONS(604), + [sym_comment] = ACTIONS(76), + }, + [1956] = { + [sym__dedent] = ACTIONS(3235), + [anon_sym_import] = ACTIONS(3237), + [anon_sym_from] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_print] = ACTIONS(3237), + [anon_sym_assert] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_del] = ACTIONS(3237), + [anon_sym_raise] = ACTIONS(3237), + [sym_pass_statement] = ACTIONS(3237), + [sym_break_statement] = ACTIONS(3237), + [sym_continue_statement] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_else] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_while] = ACTIONS(3237), + [anon_sym_try] = ACTIONS(3237), + [anon_sym_except] = ACTIONS(3237), + [anon_sym_finally] = ACTIONS(3237), + [anon_sym_with] = ACTIONS(3237), + [anon_sym_async] = ACTIONS(3237), + [anon_sym_def] = ACTIONS(3237), + [anon_sym_global] = ACTIONS(3237), + [anon_sym_nonlocal] = ACTIONS(3237), + [anon_sym_exec] = ACTIONS(3237), + [anon_sym_class] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3235), + [anon_sym_not] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_lambda] = ACTIONS(3237), + [anon_sym_yield] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3235), + [sym_ellipsis] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3235), + [sym_string] = ACTIONS(3237), + [sym_integer] = ACTIONS(3237), + [sym_float] = ACTIONS(3237), + [sym_identifier] = ACTIONS(3239), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_none] = ACTIONS(3237), + [anon_sym_await] = ACTIONS(3237), + [sym_comment] = ACTIONS(76), + }, + [1957] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -65955,9 +68400,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1878), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(3292), + [aux_sym_module_repeat1] = STATE(1970), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(3426), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -65966,20 +68411,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -66000,352 +68445,352 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1866] = { - [aux_sym__simple_statements_repeat1] = STATE(1881), - [sym__newline] = ACTIONS(3294), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(3296), - }, - [1867] = { - [sym__dedent] = ACTIONS(1261), - [anon_sym_import] = ACTIONS(1263), - [anon_sym_from] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_print] = ACTIONS(1263), - [anon_sym_assert] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_del] = ACTIONS(1263), - [anon_sym_raise] = ACTIONS(1263), - [sym_pass_statement] = ACTIONS(1263), - [sym_break_statement] = ACTIONS(1263), - [sym_continue_statement] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_finally] = ACTIONS(1263), - [anon_sym_with] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1263), - [anon_sym_def] = ACTIONS(1263), - [anon_sym_global] = ACTIONS(1263), - [anon_sym_nonlocal] = ACTIONS(1263), - [anon_sym_exec] = ACTIONS(1263), - [anon_sym_class] = ACTIONS(1263), - [anon_sym_AT] = ACTIONS(1261), - [anon_sym_not] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_yield] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1261), - [sym_ellipsis] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [sym_string] = ACTIONS(1263), - [sym_integer] = ACTIONS(1263), - [sym_float] = ACTIONS(1263), - [sym_identifier] = ACTIONS(1265), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [sym_none] = ACTIONS(1263), - [anon_sym_await] = ACTIONS(1263), - [sym_comment] = ACTIONS(76), - }, - [1868] = { - [sym__dedent] = ACTIONS(3057), - [anon_sym_import] = ACTIONS(3059), - [anon_sym_from] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym_print] = ACTIONS(3059), - [anon_sym_assert] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_del] = ACTIONS(3059), - [anon_sym_raise] = ACTIONS(3059), - [sym_pass_statement] = ACTIONS(3059), - [sym_break_statement] = ACTIONS(3059), - [sym_continue_statement] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_for] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3059), - [anon_sym_try] = ACTIONS(3059), - [anon_sym_finally] = ACTIONS(3059), - [anon_sym_with] = ACTIONS(3059), - [anon_sym_async] = ACTIONS(3059), - [anon_sym_def] = ACTIONS(3059), - [anon_sym_global] = ACTIONS(3059), - [anon_sym_nonlocal] = ACTIONS(3059), - [anon_sym_exec] = ACTIONS(3059), - [anon_sym_class] = ACTIONS(3059), - [anon_sym_AT] = ACTIONS(3057), - [anon_sym_not] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_lambda] = ACTIONS(3059), - [anon_sym_yield] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3057), - [sym_ellipsis] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [sym_string] = ACTIONS(3059), - [sym_integer] = ACTIONS(3059), - [sym_float] = ACTIONS(3059), - [sym_identifier] = ACTIONS(3061), - [sym_true] = ACTIONS(3059), - [sym_false] = ACTIONS(3059), - [sym_none] = ACTIONS(3059), - [anon_sym_await] = ACTIONS(3059), - [sym_comment] = ACTIONS(76), - }, - [1869] = { - [sym__dedent] = ACTIONS(3133), - [anon_sym_import] = ACTIONS(3135), - [anon_sym_from] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_print] = ACTIONS(3135), - [anon_sym_assert] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_del] = ACTIONS(3135), - [anon_sym_raise] = ACTIONS(3135), - [sym_pass_statement] = ACTIONS(3135), - [sym_break_statement] = ACTIONS(3135), - [sym_continue_statement] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_with] = ACTIONS(3135), - [anon_sym_async] = ACTIONS(3135), - [anon_sym_def] = ACTIONS(3135), - [anon_sym_global] = ACTIONS(3135), - [anon_sym_nonlocal] = ACTIONS(3135), - [anon_sym_exec] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_not] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_lambda] = ACTIONS(3135), - [anon_sym_yield] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3133), - [sym_ellipsis] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [sym_string] = ACTIONS(3135), - [sym_integer] = ACTIONS(3135), - [sym_float] = ACTIONS(3135), - [sym_identifier] = ACTIONS(3137), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [sym_none] = ACTIONS(3135), - [anon_sym_await] = ACTIONS(3135), - [sym_comment] = ACTIONS(76), - }, - [1870] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_from] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_print] = ACTIONS(1835), - [anon_sym_assert] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_del] = ACTIONS(1835), - [anon_sym_raise] = ACTIONS(1835), - [sym_pass_statement] = ACTIONS(1835), - [sym_break_statement] = ACTIONS(1835), - [sym_continue_statement] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_finally] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_global] = ACTIONS(1835), - [anon_sym_nonlocal] = ACTIONS(1835), - [anon_sym_exec] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_lambda] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), - [sym_ellipsis] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1833), - [sym_string] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_none] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1835), - [sym_comment] = ACTIONS(76), - }, - [1871] = { - [anon_sym_RPAREN] = ACTIONS(2741), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_EQ] = ACTIONS(2741), - [anon_sym_and] = ACTIONS(2922), - [anon_sym_or] = ACTIONS(2924), - [sym_comment] = ACTIONS(76), - }, - [1872] = { - [sym__dedent] = ACTIONS(3192), - [anon_sym_import] = ACTIONS(3194), - [anon_sym_from] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_print] = ACTIONS(3194), - [anon_sym_assert] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_del] = ACTIONS(3194), - [anon_sym_raise] = ACTIONS(3194), - [sym_pass_statement] = ACTIONS(3194), - [sym_break_statement] = ACTIONS(3194), - [sym_continue_statement] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_elif] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_with] = ACTIONS(3194), - [anon_sym_async] = ACTIONS(3194), - [anon_sym_def] = ACTIONS(3194), - [anon_sym_global] = ACTIONS(3194), - [anon_sym_nonlocal] = ACTIONS(3194), - [anon_sym_exec] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3192), - [anon_sym_not] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_lambda] = ACTIONS(3194), - [anon_sym_yield] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3192), - [sym_ellipsis] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3192), - [sym_string] = ACTIONS(3194), - [sym_integer] = ACTIONS(3194), - [sym_float] = ACTIONS(3194), - [sym_identifier] = ACTIONS(3196), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [sym_none] = ACTIONS(3194), - [anon_sym_await] = ACTIONS(3194), - [sym_comment] = ACTIONS(76), - }, - [1873] = { - [sym__dedent] = ACTIONS(2459), - [anon_sym_import] = ACTIONS(2461), - [anon_sym_from] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_print] = ACTIONS(2461), - [anon_sym_assert] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_del] = ACTIONS(2461), - [anon_sym_raise] = ACTIONS(2461), - [sym_pass_statement] = ACTIONS(2461), - [sym_break_statement] = ACTIONS(2461), - [sym_continue_statement] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_except] = ACTIONS(2461), - [anon_sym_finally] = ACTIONS(2461), - [anon_sym_with] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_def] = ACTIONS(2461), - [anon_sym_global] = ACTIONS(2461), - [anon_sym_nonlocal] = ACTIONS(2461), - [anon_sym_exec] = ACTIONS(2461), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_lambda] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [sym_ellipsis] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [sym_string] = ACTIONS(2461), - [sym_integer] = ACTIONS(2461), - [sym_float] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2463), - [sym_true] = ACTIONS(2461), - [sym_false] = ACTIONS(2461), - [sym_none] = ACTIONS(2461), - [anon_sym_await] = ACTIONS(2461), - [sym_comment] = ACTIONS(76), - }, - [1874] = { - [sym__dedent] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(1206), - [anon_sym_from] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_print] = ACTIONS(1206), - [anon_sym_assert] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_del] = ACTIONS(1206), - [anon_sym_raise] = ACTIONS(1206), - [sym_pass_statement] = ACTIONS(1206), - [sym_break_statement] = ACTIONS(1206), - [sym_continue_statement] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_else] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_try] = ACTIONS(1206), - [anon_sym_except] = ACTIONS(1206), - [anon_sym_finally] = ACTIONS(1206), - [anon_sym_with] = ACTIONS(1206), - [anon_sym_async] = ACTIONS(1206), - [anon_sym_def] = ACTIONS(1206), - [anon_sym_global] = ACTIONS(1206), - [anon_sym_nonlocal] = ACTIONS(1206), - [anon_sym_exec] = ACTIONS(1206), - [anon_sym_class] = ACTIONS(1206), - [anon_sym_AT] = ACTIONS(1204), - [anon_sym_not] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_lambda] = ACTIONS(1206), - [anon_sym_yield] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1204), - [sym_ellipsis] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1204), - [sym_string] = ACTIONS(1206), - [sym_integer] = ACTIONS(1206), - [sym_float] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [sym_none] = ACTIONS(1206), - [anon_sym_await] = ACTIONS(1206), - [sym_comment] = ACTIONS(76), - }, - [1875] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [1958] = { + [aux_sym__simple_statements_repeat1] = STATE(1973), + [sym__newline] = ACTIONS(3428), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(3430), + }, + [1959] = { + [sym__dedent] = ACTIONS(1321), + [anon_sym_import] = ACTIONS(1323), + [anon_sym_from] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_print] = ACTIONS(1323), + [anon_sym_assert] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_del] = ACTIONS(1323), + [anon_sym_raise] = ACTIONS(1323), + [sym_pass_statement] = ACTIONS(1323), + [sym_break_statement] = ACTIONS(1323), + [sym_continue_statement] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_try] = ACTIONS(1323), + [anon_sym_finally] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1323), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(1323), + [anon_sym_global] = ACTIONS(1323), + [anon_sym_nonlocal] = ACTIONS(1323), + [anon_sym_exec] = ACTIONS(1323), + [anon_sym_class] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(1321), + [anon_sym_not] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_lambda] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1321), + [sym_ellipsis] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [sym_string] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [sym_identifier] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [sym_none] = ACTIONS(1323), + [anon_sym_await] = ACTIONS(1323), + [sym_comment] = ACTIONS(76), + }, + [1960] = { + [sym__dedent] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_from] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_print] = ACTIONS(3193), + [anon_sym_assert] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_del] = ACTIONS(3193), + [anon_sym_raise] = ACTIONS(3193), + [sym_pass_statement] = ACTIONS(3193), + [sym_break_statement] = ACTIONS(3193), + [sym_continue_statement] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_finally] = ACTIONS(3193), + [anon_sym_with] = ACTIONS(3193), + [anon_sym_async] = ACTIONS(3193), + [anon_sym_def] = ACTIONS(3193), + [anon_sym_global] = ACTIONS(3193), + [anon_sym_nonlocal] = ACTIONS(3193), + [anon_sym_exec] = ACTIONS(3193), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3191), + [anon_sym_not] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_lambda] = ACTIONS(3193), + [anon_sym_yield] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3191), + [sym_ellipsis] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [sym_string] = ACTIONS(3193), + [sym_integer] = ACTIONS(3193), + [sym_float] = ACTIONS(3193), + [sym_identifier] = ACTIONS(3195), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_none] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3193), + [sym_comment] = ACTIONS(76), + }, + [1961] = { + [sym__dedent] = ACTIONS(3267), + [anon_sym_import] = ACTIONS(3269), + [anon_sym_from] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_print] = ACTIONS(3269), + [anon_sym_assert] = ACTIONS(3269), + [anon_sym_return] = ACTIONS(3269), + [anon_sym_del] = ACTIONS(3269), + [anon_sym_raise] = ACTIONS(3269), + [sym_pass_statement] = ACTIONS(3269), + [sym_break_statement] = ACTIONS(3269), + [sym_continue_statement] = ACTIONS(3269), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_for] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_try] = ACTIONS(3269), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_async] = ACTIONS(3269), + [anon_sym_def] = ACTIONS(3269), + [anon_sym_global] = ACTIONS(3269), + [anon_sym_nonlocal] = ACTIONS(3269), + [anon_sym_exec] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3269), + [anon_sym_AT] = ACTIONS(3267), + [anon_sym_not] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_lambda] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_LBRACK] = ACTIONS(3267), + [sym_ellipsis] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3267), + [sym_string] = ACTIONS(3269), + [sym_integer] = ACTIONS(3269), + [sym_float] = ACTIONS(3269), + [sym_identifier] = ACTIONS(3271), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_none] = ACTIONS(3269), + [anon_sym_await] = ACTIONS(3269), + [sym_comment] = ACTIONS(76), + }, + [1962] = { + [ts_builtin_sym_end] = ACTIONS(1934), + [anon_sym_import] = ACTIONS(1936), + [anon_sym_from] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_print] = ACTIONS(1936), + [anon_sym_assert] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_del] = ACTIONS(1936), + [anon_sym_raise] = ACTIONS(1936), + [sym_pass_statement] = ACTIONS(1936), + [sym_break_statement] = ACTIONS(1936), + [sym_continue_statement] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_try] = ACTIONS(1936), + [anon_sym_finally] = ACTIONS(1936), + [anon_sym_with] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_def] = ACTIONS(1936), + [anon_sym_global] = ACTIONS(1936), + [anon_sym_nonlocal] = ACTIONS(1936), + [anon_sym_exec] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_lambda] = ACTIONS(1936), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1934), + [sym_ellipsis] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_string] = ACTIONS(1936), + [sym_integer] = ACTIONS(1936), + [sym_float] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_none] = ACTIONS(1936), + [anon_sym_await] = ACTIONS(1936), + [sym_comment] = ACTIONS(76), + }, + [1963] = { + [anon_sym_RPAREN] = ACTIONS(2869), + [anon_sym_COMMA] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3056), + [sym_comment] = ACTIONS(76), + }, + [1964] = { + [sym__dedent] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3328), + [anon_sym_from] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_print] = ACTIONS(3328), + [anon_sym_assert] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_del] = ACTIONS(3328), + [anon_sym_raise] = ACTIONS(3328), + [sym_pass_statement] = ACTIONS(3328), + [sym_break_statement] = ACTIONS(3328), + [sym_continue_statement] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_elif] = ACTIONS(3328), + [anon_sym_else] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_with] = ACTIONS(3328), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_def] = ACTIONS(3328), + [anon_sym_global] = ACTIONS(3328), + [anon_sym_nonlocal] = ACTIONS(3328), + [anon_sym_exec] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_lambda] = ACTIONS(3328), + [anon_sym_yield] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3326), + [sym_ellipsis] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [sym_string] = ACTIONS(3328), + [sym_integer] = ACTIONS(3328), + [sym_float] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3330), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_none] = ACTIONS(3328), + [anon_sym_await] = ACTIONS(3328), + [sym_comment] = ACTIONS(76), + }, + [1965] = { + [sym__dedent] = ACTIONS(2583), + [anon_sym_import] = ACTIONS(2585), + [anon_sym_from] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_print] = ACTIONS(2585), + [anon_sym_assert] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_del] = ACTIONS(2585), + [anon_sym_raise] = ACTIONS(2585), + [sym_pass_statement] = ACTIONS(2585), + [sym_break_statement] = ACTIONS(2585), + [sym_continue_statement] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_else] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_except] = ACTIONS(2585), + [anon_sym_finally] = ACTIONS(2585), + [anon_sym_with] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_def] = ACTIONS(2585), + [anon_sym_global] = ACTIONS(2585), + [anon_sym_nonlocal] = ACTIONS(2585), + [anon_sym_exec] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_lambda] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [sym_ellipsis] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [sym_string] = ACTIONS(2585), + [sym_integer] = ACTIONS(2585), + [sym_float] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2587), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_none] = ACTIONS(2585), + [anon_sym_await] = ACTIONS(2585), + [sym_comment] = ACTIONS(76), + }, + [1966] = { + [sym__dedent] = ACTIONS(1264), + [anon_sym_import] = ACTIONS(1266), + [anon_sym_from] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_print] = ACTIONS(1266), + [anon_sym_assert] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_del] = ACTIONS(1266), + [anon_sym_raise] = ACTIONS(1266), + [sym_pass_statement] = ACTIONS(1266), + [sym_break_statement] = ACTIONS(1266), + [sym_continue_statement] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_except] = ACTIONS(1266), + [anon_sym_finally] = ACTIONS(1266), + [anon_sym_with] = ACTIONS(1266), + [anon_sym_async] = ACTIONS(1266), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_global] = ACTIONS(1266), + [anon_sym_nonlocal] = ACTIONS(1266), + [anon_sym_exec] = ACTIONS(1266), + [anon_sym_class] = ACTIONS(1266), + [anon_sym_AT] = ACTIONS(1264), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_lambda] = ACTIONS(1266), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [sym_ellipsis] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [sym_string] = ACTIONS(1266), + [sym_integer] = ACTIONS(1266), + [sym_float] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [sym_none] = ACTIONS(1266), + [anon_sym_await] = ACTIONS(1266), + [sym_comment] = ACTIONS(76), + }, + [1967] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -66373,7 +68818,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(3298), + [sym__newline] = ACTIONS(3432), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -66382,9 +68827,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -66407,20 +68852,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1876] = { - [sym__simple_statements] = STATE(1832), - [sym_import_statement] = STATE(1831), - [sym_import_from_statement] = STATE(1831), - [sym_print_statement] = STATE(1831), - [sym_assert_statement] = STATE(1831), - [sym_expression_statement] = STATE(1831), - [sym_return_statement] = STATE(1831), - [sym_delete_statement] = STATE(1831), - [sym_raise_statement] = STATE(1831), - [sym_global_statement] = STATE(1831), - [sym_nonlocal_statement] = STATE(1831), - [sym_exec_statement] = STATE(1831), - [sym__suite] = STATE(1883), + [1968] = { + [sym__simple_statements] = STATE(1924), + [sym_import_statement] = STATE(1923), + [sym_import_from_statement] = STATE(1923), + [sym_print_statement] = STATE(1923), + [sym_assert_statement] = STATE(1923), + [sym_expression_statement] = STATE(1923), + [sym_return_statement] = STATE(1923), + [sym_delete_statement] = STATE(1923), + [sym_raise_statement] = STATE(1923), + [sym_global_statement] = STATE(1923), + [sym_nonlocal_statement] = STATE(1923), + [sym_exec_statement] = STATE(1923), + [sym__suite] = STATE(1975), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -66448,7 +68893,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__indent] = ACTIONS(3212), + [sym__indent] = ACTIONS(3346), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -66457,9 +68902,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(3214), - [sym_break_statement] = ACTIONS(3214), - [sym_continue_statement] = ACTIONS(3214), + [sym_pass_statement] = ACTIONS(3348), + [sym_break_statement] = ACTIONS(3348), + [sym_continue_statement] = ACTIONS(3348), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -66482,75 +68927,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1877] = { - [sym__dedent] = ACTIONS(1892), - [anon_sym_import] = ACTIONS(1894), - [anon_sym_from] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_print] = ACTIONS(1894), - [anon_sym_assert] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_del] = ACTIONS(1894), - [anon_sym_raise] = ACTIONS(1894), - [sym_pass_statement] = ACTIONS(1894), - [sym_break_statement] = ACTIONS(1894), - [sym_continue_statement] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_finally] = ACTIONS(1894), - [anon_sym_with] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1894), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_global] = ACTIONS(1894), - [anon_sym_nonlocal] = ACTIONS(1894), - [anon_sym_exec] = ACTIONS(1894), - [anon_sym_class] = ACTIONS(1894), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_lambda] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1892), - [sym_ellipsis] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1892), - [sym_string] = ACTIONS(1894), - [sym_integer] = ACTIONS(1894), - [sym_float] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [sym_true] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [sym_none] = ACTIONS(1894), - [anon_sym_await] = ACTIONS(1894), - [sym_comment] = ACTIONS(76), - }, - [1878] = { - [sym__statement] = STATE(750), - [sym__simple_statements] = STATE(751), - [sym_import_statement] = STATE(741), - [sym_import_from_statement] = STATE(741), - [sym_print_statement] = STATE(741), - [sym_assert_statement] = STATE(741), - [sym_expression_statement] = STATE(741), - [sym_return_statement] = STATE(741), - [sym_delete_statement] = STATE(741), - [sym_raise_statement] = STATE(741), - [sym_if_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_with_statement] = STATE(751), - [sym_async_function_definition] = STATE(751), - [sym_function_definition] = STATE(751), - [sym__function_definition] = STATE(752), - [sym_global_statement] = STATE(741), - [sym_nonlocal_statement] = STATE(741), - [sym_exec_statement] = STATE(741), - [sym_class_definition] = STATE(751), - [sym_decorated_definition] = STATE(751), + [1969] = { + [sym__dedent] = ACTIONS(1993), + [anon_sym_import] = ACTIONS(1995), + [anon_sym_from] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_del] = ACTIONS(1995), + [anon_sym_raise] = ACTIONS(1995), + [sym_pass_statement] = ACTIONS(1995), + [sym_break_statement] = ACTIONS(1995), + [sym_continue_statement] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1995), + [anon_sym_finally] = ACTIONS(1995), + [anon_sym_with] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1995), + [anon_sym_global] = ACTIONS(1995), + [anon_sym_nonlocal] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_class] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(1993), + [anon_sym_not] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_lambda] = ACTIONS(1995), + [anon_sym_yield] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1993), + [sym_ellipsis] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [sym_string] = ACTIONS(1995), + [sym_integer] = ACTIONS(1995), + [sym_float] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1997), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_none] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(1995), + [sym_comment] = ACTIONS(76), + }, + [1970] = { + [sym__statement] = STATE(804), + [sym__simple_statements] = STATE(805), + [sym_import_statement] = STATE(795), + [sym_import_from_statement] = STATE(795), + [sym_print_statement] = STATE(795), + [sym_assert_statement] = STATE(795), + [sym_expression_statement] = STATE(795), + [sym_return_statement] = STATE(795), + [sym_delete_statement] = STATE(795), + [sym_raise_statement] = STATE(795), + [sym_if_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_async_function_definition] = STATE(805), + [sym_function_definition] = STATE(805), + [sym__function_definition] = STATE(806), + [sym_global_statement] = STATE(795), + [sym_nonlocal_statement] = STATE(795), + [sym_exec_statement] = STATE(795), + [sym_class_definition] = STATE(805), + [sym_decorated_definition] = STATE(805), [sym_decorator] = STATE(36), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), @@ -66579,9 +69024,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [aux_sym_module_repeat1] = STATE(1130), - [aux_sym_decorated_definition_repeat1] = STATE(754), - [sym__dedent] = ACTIONS(3300), + [aux_sym_module_repeat1] = STATE(1206), + [aux_sym_decorated_definition_repeat1] = STATE(808), + [sym__dedent] = ACTIONS(3434), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -66590,20 +69035,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(1239), - [sym_break_statement] = ACTIONS(1239), - [sym_continue_statement] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1247), - [anon_sym_with] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_def] = ACTIONS(1253), + [sym_pass_statement] = ACTIONS(1299), + [sym_break_statement] = ACTIONS(1299), + [sym_continue_statement] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1313), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), - [anon_sym_class] = ACTIONS(1255), + [anon_sym_class] = ACTIONS(1315), [anon_sym_AT] = ACTIONS(52), [anon_sym_not] = ACTIONS(54), [anon_sym_PLUS] = ACTIONS(56), @@ -66624,63 +69069,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1879] = { - [sym__dedent] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_from] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_print] = ACTIONS(552), - [anon_sym_assert] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_del] = ACTIONS(552), - [anon_sym_raise] = ACTIONS(552), - [sym_pass_statement] = ACTIONS(552), - [sym_break_statement] = ACTIONS(552), - [sym_continue_statement] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_try] = ACTIONS(552), - [anon_sym_finally] = ACTIONS(552), - [anon_sym_with] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_def] = ACTIONS(552), - [anon_sym_global] = ACTIONS(552), - [anon_sym_nonlocal] = ACTIONS(552), - [anon_sym_exec] = ACTIONS(552), - [anon_sym_class] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(550), - [anon_sym_not] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_TILDE] = ACTIONS(550), - [anon_sym_lambda] = ACTIONS(552), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_LBRACK] = ACTIONS(550), - [sym_ellipsis] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(550), - [sym_string] = ACTIONS(552), - [sym_integer] = ACTIONS(552), - [sym_float] = ACTIONS(552), - [sym_identifier] = ACTIONS(554), - [sym_true] = ACTIONS(552), - [sym_false] = ACTIONS(552), - [sym_none] = ACTIONS(552), - [anon_sym_await] = ACTIONS(552), - [sym_comment] = ACTIONS(76), - }, - [1880] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [1971] = { + [sym__dedent] = ACTIONS(584), + [anon_sym_import] = ACTIONS(586), + [anon_sym_from] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_print] = ACTIONS(586), + [anon_sym_assert] = ACTIONS(586), + [anon_sym_return] = ACTIONS(586), + [anon_sym_del] = ACTIONS(586), + [anon_sym_raise] = ACTIONS(586), + [sym_pass_statement] = ACTIONS(586), + [sym_break_statement] = ACTIONS(586), + [sym_continue_statement] = ACTIONS(586), + [anon_sym_if] = ACTIONS(586), + [anon_sym_for] = ACTIONS(586), + [anon_sym_while] = ACTIONS(586), + [anon_sym_try] = ACTIONS(586), + [anon_sym_finally] = ACTIONS(586), + [anon_sym_with] = ACTIONS(586), + [anon_sym_async] = ACTIONS(586), + [anon_sym_def] = ACTIONS(586), + [anon_sym_global] = ACTIONS(586), + [anon_sym_nonlocal] = ACTIONS(586), + [anon_sym_exec] = ACTIONS(586), + [anon_sym_class] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_not] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_TILDE] = ACTIONS(584), + [anon_sym_lambda] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(584), + [sym_ellipsis] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(584), + [sym_string] = ACTIONS(586), + [sym_integer] = ACTIONS(586), + [sym_float] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [sym_true] = ACTIONS(586), + [sym_false] = ACTIONS(586), + [sym_none] = ACTIONS(586), + [anon_sym_await] = ACTIONS(586), + [sym_comment] = ACTIONS(76), + }, + [1972] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -66708,7 +69153,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(3302), + [sym__newline] = ACTIONS(3436), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -66717,9 +69162,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -66742,208 +69187,208 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1881] = { - [aux_sym__simple_statements_repeat1] = STATE(335), - [sym__newline] = ACTIONS(3302), - [sym_comment] = ACTIONS(76), - [sym__semicolon] = ACTIONS(3304), - }, - [1882] = { - [sym__dedent] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_from] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_print] = ACTIONS(1835), - [anon_sym_assert] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_del] = ACTIONS(1835), - [anon_sym_raise] = ACTIONS(1835), - [sym_pass_statement] = ACTIONS(1835), - [sym_break_statement] = ACTIONS(1835), - [sym_continue_statement] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_except] = ACTIONS(1835), - [anon_sym_finally] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_global] = ACTIONS(1835), - [anon_sym_nonlocal] = ACTIONS(1835), - [anon_sym_exec] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_lambda] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), - [sym_ellipsis] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1833), - [sym_string] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_none] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1835), - [sym_comment] = ACTIONS(76), - }, - [1883] = { - [sym__dedent] = ACTIONS(3276), - [anon_sym_import] = ACTIONS(3278), - [anon_sym_from] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_print] = ACTIONS(3278), - [anon_sym_assert] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_del] = ACTIONS(3278), - [anon_sym_raise] = ACTIONS(3278), - [sym_pass_statement] = ACTIONS(3278), - [sym_break_statement] = ACTIONS(3278), - [sym_continue_statement] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_except] = ACTIONS(3278), - [anon_sym_finally] = ACTIONS(3278), - [anon_sym_with] = ACTIONS(3278), - [anon_sym_async] = ACTIONS(3278), - [anon_sym_def] = ACTIONS(3278), - [anon_sym_global] = ACTIONS(3278), - [anon_sym_nonlocal] = ACTIONS(3278), - [anon_sym_exec] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3276), - [anon_sym_not] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_lambda] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3276), - [sym_ellipsis] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3276), - [sym_string] = ACTIONS(3278), - [sym_integer] = ACTIONS(3278), - [sym_float] = ACTIONS(3278), - [sym_identifier] = ACTIONS(3280), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [sym_none] = ACTIONS(3278), - [anon_sym_await] = ACTIONS(3278), - [sym_comment] = ACTIONS(76), - }, - [1884] = { - [sym__dedent] = ACTIONS(2459), - [anon_sym_import] = ACTIONS(2461), - [anon_sym_from] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_print] = ACTIONS(2461), - [anon_sym_assert] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_del] = ACTIONS(2461), - [anon_sym_raise] = ACTIONS(2461), - [sym_pass_statement] = ACTIONS(2461), - [sym_break_statement] = ACTIONS(2461), - [sym_continue_statement] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_finally] = ACTIONS(2461), - [anon_sym_with] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_def] = ACTIONS(2461), - [anon_sym_global] = ACTIONS(2461), - [anon_sym_nonlocal] = ACTIONS(2461), - [anon_sym_exec] = ACTIONS(2461), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_lambda] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [sym_ellipsis] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [sym_string] = ACTIONS(2461), - [sym_integer] = ACTIONS(2461), - [sym_float] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2463), - [sym_true] = ACTIONS(2461), - [sym_false] = ACTIONS(2461), - [sym_none] = ACTIONS(2461), - [anon_sym_await] = ACTIONS(2461), - [sym_comment] = ACTIONS(76), - }, - [1885] = { - [sym__dedent] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(1206), - [anon_sym_from] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_print] = ACTIONS(1206), - [anon_sym_assert] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_del] = ACTIONS(1206), - [anon_sym_raise] = ACTIONS(1206), - [sym_pass_statement] = ACTIONS(1206), - [sym_break_statement] = ACTIONS(1206), - [sym_continue_statement] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_try] = ACTIONS(1206), - [anon_sym_finally] = ACTIONS(1206), - [anon_sym_with] = ACTIONS(1206), - [anon_sym_async] = ACTIONS(1206), - [anon_sym_def] = ACTIONS(1206), - [anon_sym_global] = ACTIONS(1206), - [anon_sym_nonlocal] = ACTIONS(1206), - [anon_sym_exec] = ACTIONS(1206), - [anon_sym_class] = ACTIONS(1206), - [anon_sym_AT] = ACTIONS(1204), - [anon_sym_not] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_lambda] = ACTIONS(1206), - [anon_sym_yield] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1204), - [sym_ellipsis] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1204), - [sym_string] = ACTIONS(1206), - [sym_integer] = ACTIONS(1206), - [sym_float] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [sym_true] = ACTIONS(1206), - [sym_false] = ACTIONS(1206), - [sym_none] = ACTIONS(1206), - [anon_sym_await] = ACTIONS(1206), - [sym_comment] = ACTIONS(76), - }, - [1886] = { - [sym_import_statement] = STATE(333), - [sym_import_from_statement] = STATE(333), - [sym_print_statement] = STATE(333), - [sym_assert_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_delete_statement] = STATE(333), - [sym_raise_statement] = STATE(333), - [sym_global_statement] = STATE(333), - [sym_nonlocal_statement] = STATE(333), - [sym_exec_statement] = STATE(333), + [1973] = { + [aux_sym__simple_statements_repeat1] = STATE(362), + [sym__newline] = ACTIONS(3436), + [sym_comment] = ACTIONS(76), + [sym__semicolon] = ACTIONS(3438), + }, + [1974] = { + [sym__dedent] = ACTIONS(1934), + [anon_sym_import] = ACTIONS(1936), + [anon_sym_from] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_print] = ACTIONS(1936), + [anon_sym_assert] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_del] = ACTIONS(1936), + [anon_sym_raise] = ACTIONS(1936), + [sym_pass_statement] = ACTIONS(1936), + [sym_break_statement] = ACTIONS(1936), + [sym_continue_statement] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_else] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_try] = ACTIONS(1936), + [anon_sym_except] = ACTIONS(1936), + [anon_sym_finally] = ACTIONS(1936), + [anon_sym_with] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_def] = ACTIONS(1936), + [anon_sym_global] = ACTIONS(1936), + [anon_sym_nonlocal] = ACTIONS(1936), + [anon_sym_exec] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_lambda] = ACTIONS(1936), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1934), + [sym_ellipsis] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_string] = ACTIONS(1936), + [sym_integer] = ACTIONS(1936), + [sym_float] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_none] = ACTIONS(1936), + [anon_sym_await] = ACTIONS(1936), + [sym_comment] = ACTIONS(76), + }, + [1975] = { + [sym__dedent] = ACTIONS(3410), + [anon_sym_import] = ACTIONS(3412), + [anon_sym_from] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_print] = ACTIONS(3412), + [anon_sym_assert] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_del] = ACTIONS(3412), + [anon_sym_raise] = ACTIONS(3412), + [sym_pass_statement] = ACTIONS(3412), + [sym_break_statement] = ACTIONS(3412), + [sym_continue_statement] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_else] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_while] = ACTIONS(3412), + [anon_sym_try] = ACTIONS(3412), + [anon_sym_except] = ACTIONS(3412), + [anon_sym_finally] = ACTIONS(3412), + [anon_sym_with] = ACTIONS(3412), + [anon_sym_async] = ACTIONS(3412), + [anon_sym_def] = ACTIONS(3412), + [anon_sym_global] = ACTIONS(3412), + [anon_sym_nonlocal] = ACTIONS(3412), + [anon_sym_exec] = ACTIONS(3412), + [anon_sym_class] = ACTIONS(3412), + [anon_sym_AT] = ACTIONS(3410), + [anon_sym_not] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_lambda] = ACTIONS(3412), + [anon_sym_yield] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3410), + [sym_ellipsis] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3410), + [sym_string] = ACTIONS(3412), + [sym_integer] = ACTIONS(3412), + [sym_float] = ACTIONS(3412), + [sym_identifier] = ACTIONS(3414), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_none] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3412), + [sym_comment] = ACTIONS(76), + }, + [1976] = { + [sym__dedent] = ACTIONS(2583), + [anon_sym_import] = ACTIONS(2585), + [anon_sym_from] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_print] = ACTIONS(2585), + [anon_sym_assert] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_del] = ACTIONS(2585), + [anon_sym_raise] = ACTIONS(2585), + [sym_pass_statement] = ACTIONS(2585), + [sym_break_statement] = ACTIONS(2585), + [sym_continue_statement] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_finally] = ACTIONS(2585), + [anon_sym_with] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_def] = ACTIONS(2585), + [anon_sym_global] = ACTIONS(2585), + [anon_sym_nonlocal] = ACTIONS(2585), + [anon_sym_exec] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_lambda] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [sym_ellipsis] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [sym_string] = ACTIONS(2585), + [sym_integer] = ACTIONS(2585), + [sym_float] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2587), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_none] = ACTIONS(2585), + [anon_sym_await] = ACTIONS(2585), + [sym_comment] = ACTIONS(76), + }, + [1977] = { + [sym__dedent] = ACTIONS(1264), + [anon_sym_import] = ACTIONS(1266), + [anon_sym_from] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_print] = ACTIONS(1266), + [anon_sym_assert] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_del] = ACTIONS(1266), + [anon_sym_raise] = ACTIONS(1266), + [sym_pass_statement] = ACTIONS(1266), + [sym_break_statement] = ACTIONS(1266), + [sym_continue_statement] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_finally] = ACTIONS(1266), + [anon_sym_with] = ACTIONS(1266), + [anon_sym_async] = ACTIONS(1266), + [anon_sym_def] = ACTIONS(1266), + [anon_sym_global] = ACTIONS(1266), + [anon_sym_nonlocal] = ACTIONS(1266), + [anon_sym_exec] = ACTIONS(1266), + [anon_sym_class] = ACTIONS(1266), + [anon_sym_AT] = ACTIONS(1264), + [anon_sym_not] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_lambda] = ACTIONS(1266), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [sym_ellipsis] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [sym_string] = ACTIONS(1266), + [sym_integer] = ACTIONS(1266), + [sym_float] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [sym_none] = ACTIONS(1266), + [anon_sym_await] = ACTIONS(1266), + [sym_comment] = ACTIONS(76), + }, + [1978] = { + [sym_import_statement] = STATE(360), + [sym_import_from_statement] = STATE(360), + [sym_print_statement] = STATE(360), + [sym_assert_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_delete_statement] = STATE(360), + [sym_raise_statement] = STATE(360), + [sym_global_statement] = STATE(360), + [sym_nonlocal_statement] = STATE(360), + [sym_exec_statement] = STATE(360), [sym_expression_list] = STATE(37), [sym__expression] = STATE(38), [sym__primary_expression] = STATE(39), @@ -66971,7 +69416,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_conditional_expression] = STATE(40), [sym_concatenated_string] = STATE(28), [sym_await] = STATE(40), - [sym__newline] = ACTIONS(3306), + [sym__newline] = ACTIONS(3440), [anon_sym_import] = ACTIONS(12), [anon_sym_from] = ACTIONS(14), [anon_sym_LPAREN] = ACTIONS(16), @@ -66980,9 +69425,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(22), [anon_sym_del] = ACTIONS(24), [anon_sym_raise] = ACTIONS(26), - [sym_pass_statement] = ACTIONS(558), - [sym_break_statement] = ACTIONS(558), - [sym_continue_statement] = ACTIONS(558), + [sym_pass_statement] = ACTIONS(592), + [sym_break_statement] = ACTIONS(592), + [sym_continue_statement] = ACTIONS(592), [anon_sym_global] = ACTIONS(44), [anon_sym_nonlocal] = ACTIONS(46), [anon_sym_exec] = ACTIONS(48), @@ -67005,49 +69450,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(74), [sym_comment] = ACTIONS(76), }, - [1887] = { - [sym__dedent] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_from] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_print] = ACTIONS(1835), - [anon_sym_assert] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_del] = ACTIONS(1835), - [anon_sym_raise] = ACTIONS(1835), - [sym_pass_statement] = ACTIONS(1835), - [sym_break_statement] = ACTIONS(1835), - [sym_continue_statement] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_finally] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_global] = ACTIONS(1835), - [anon_sym_nonlocal] = ACTIONS(1835), - [anon_sym_exec] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_lambda] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), - [sym_ellipsis] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1833), - [sym_string] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_none] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1835), + [1979] = { + [sym__dedent] = ACTIONS(1934), + [anon_sym_import] = ACTIONS(1936), + [anon_sym_from] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_print] = ACTIONS(1936), + [anon_sym_assert] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_del] = ACTIONS(1936), + [anon_sym_raise] = ACTIONS(1936), + [sym_pass_statement] = ACTIONS(1936), + [sym_break_statement] = ACTIONS(1936), + [sym_continue_statement] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_try] = ACTIONS(1936), + [anon_sym_finally] = ACTIONS(1936), + [anon_sym_with] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_def] = ACTIONS(1936), + [anon_sym_global] = ACTIONS(1936), + [anon_sym_nonlocal] = ACTIONS(1936), + [anon_sym_exec] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_lambda] = ACTIONS(1936), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1934), + [sym_ellipsis] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [sym_string] = ACTIONS(1936), + [sym_integer] = ACTIONS(1936), + [sym_float] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_none] = ACTIONS(1936), + [anon_sym_await] = ACTIONS(1936), [sym_comment] = ACTIONS(76), }, }; @@ -67128,1499 +69573,1565 @@ static TSParseActionEntry ts_parse_actions[] = { [144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 1), [146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_raise_statement, 1), [148] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(87), - [150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(88), - [152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(89), + [150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(88), + [152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(89), [154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(90), - [156] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(91), + [156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(91), [158] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(92), - [160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(96), - [162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(97), - [164] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(99), - [166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(100), - [168] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(101), - [170] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(102), - [172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(103), - [174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(106), - [176] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(107), - [178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(111), - [180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(112), - [182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(113), - [184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(114), - [186] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(115), - [188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(116), - [190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(17), - [192] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(121), - [194] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(122), - [196] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(123), - [198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(124), - [200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(125), - [202] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(126), - [204] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(128), - [206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(131), - [208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(132), - [210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(133), - [212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(134), - [214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(135), - [216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_yield, 1), - [218] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(140), - [220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(142), - [222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(143), - [224] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(144), - [226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(145), - [228] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(146), - [230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(147), - [232] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(148), - [234] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(149), - [236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__primary_expression, 1), - [238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__primary_expression, 1), - [240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(153), - [242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(154), - [244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(155), - [246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(156), - [248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(157), - [250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(158), - [252] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(159), - [254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(160), - [256] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(166), - [258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), - [260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 1), - [262] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 1), - [264] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 1), - [266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), - [268] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__statement, 1), - [270] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), - [272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 1), - [274] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 1), - [276] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 1), - [278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_decorated_definition_repeat1, 1), - [280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(169), - [282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(170), - [284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), - [286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(171), - [288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(172), - [290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_list, 1, .fragile = true), - [292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(173), - [294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(174), - [296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), - [298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(176), + [160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(93), + [162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(94), + [164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(95), + [166] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(96), + [168] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(94), + [170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(94), + [172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(97), + [174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(102), + [176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(103), + [178] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(105), + [180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(106), + [182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(107), + [184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(108), + [186] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(109), + [188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(112), + [190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(113), + [192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(117), + [194] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(118), + [196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(119), + [198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(120), + [200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(121), + [202] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(122), + [204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(17), + [206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(127), + [208] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(128), + [210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(129), + [212] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(130), + [214] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(131), + [216] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(132), + [218] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(134), + [220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(137), + [222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(138), + [224] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(139), + [226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(140), + [228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(141), + [230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_yield, 1), + [232] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(146), + [234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(148), + [236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(149), + [238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(150), + [240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(151), + [242] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(152), + [244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(153), + [246] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(154), + [248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(155), + [250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__primary_expression, 1), + [252] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__primary_expression, 1), + [254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(159), + [256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(160), + [258] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(161), + [260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(162), + [262] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(163), + [264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(164), + [266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(165), + [268] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(166), + [270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(172), + [272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), + [274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 1), + [276] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 1), + [278] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 1), + [280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), + [282] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__statement, 1), + [284] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__statement, 1), + [286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 1), + [288] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 1), + [290] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 1), + [292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_decorated_definition_repeat1, 1), + [294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(175), + [296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(176), + [298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 1), [300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(177), - [302] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(178), - [304] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(179), - [306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(180), - [308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), - [310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(181), - [312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(182), - [314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(183), + [302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(178), + [304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_list, 1, .fragile = true), + [306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(179), + [308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(180), + [310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression, 1), + [312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(182), + [314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(183), [316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(184), [318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(185), - [320] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(186), - [322] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(180), + [320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(186), + [322] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__expression, 1), [324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(187), - [326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(188), - [328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_module, 1), - [330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(16), - [332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(21), - [334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_dotted_name, 1), - [336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(194), - [338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_statement, 2), - [340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__import_list, 1), - [342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(196), - [344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(198), - [346] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_import_from_statement_repeat1, 1), - [348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_import_from_statement_repeat1, 1), - [350] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_import_from_statement_repeat1, 1), - [352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(199), - [354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(201), - [356] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(201), - [358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(49), - [360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(204), - [362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(205), - [364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_tuple, 2), - [366] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_tuple, 2), - [368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(208), - [370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(211), - [372] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(213), - [374] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(214), - [376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(215), - [378] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(216), - [380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(217), - [382] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(218), - [384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(222), - [386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(223), - [388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(226), - [390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(227), - [392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(232), - [394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(235), - [396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(236), - [398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(237), - [400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(238), - [402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(239), - [404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(240), - [406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(244), - [408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(245), - [410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(246), - [412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(247), - [414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(248), - [416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(249), - [418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(250), - [420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(246), + [326] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(188), + [328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(189), + [330] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(190), + [332] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(191), + [334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(192), + [336] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(186), + [338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(193), + [340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(194), + [342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_module, 1), + [344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(16), + [346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(21), + [348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_dotted_name, 1), + [350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(200), + [352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_statement, 2), + [354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__import_list, 1), + [356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(202), + [358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(204), + [360] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_import_from_statement_repeat1, 1), + [362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_import_from_statement_repeat1, 1), + [364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_import_from_statement_repeat1, 1), + [366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(205), + [368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(207), + [370] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(207), + [372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(49), + [374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(210), + [376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(211), + [378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_tuple, 2), + [380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_tuple, 2), + [382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(214), + [384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(217), + [386] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(219), + [388] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(220), + [390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(221), + [392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(222), + [394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(223), + [396] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(224), + [398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(228), + [400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(229), + [402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(232), + [404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(233), + [406] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(238), + [408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(241), + [410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(242), + [412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(243), + [414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(244), + [416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(245), + [418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(246), + [420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(250), [422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(251), - [424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(252), + [424] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(252), [426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(253), [428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(254), - [430] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(248), - [432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), - [434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(256), - [436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(259), - [438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(260), - [440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(266), - [442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(268), - [444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(269), - [446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(272), - [448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273), - [450] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(278), - [452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_print_statement, 2), - [454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(280), - [456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(282), - [458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(283), - [460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(284), - [462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(285), - [464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(286), - [466] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(287), - [468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(288), - [470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(289), - [472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), - [474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(291), - [476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(287), + [430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), + [432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(256), + [434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(252), + [436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(257), + [438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(258), + [440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(259), + [442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(260), + [444] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(254), + [446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(261), + [448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(262), + [450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(265), + [452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(266), + [454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(272), + [456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(274), + [458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(275), + [460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(278), + [462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(279), + [464] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(284), + [466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_print_statement, 2), + [468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(286), + [470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(288), + [472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(289), + [474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), + [476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(291), [478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(292), - [480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(293), + [480] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(293), [482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), [484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), - [486] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(289), - [488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), - [490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(297), - [492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assert_statement, 2), - [494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), - [496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), - [498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(302), - [500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_delete_statement, 2), - [502] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(304), - [504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(305), - [506] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(306), - [508] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(307), - [510] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(308), - [512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(312), - [514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_raise_statement, 2), - [516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(315), - [518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(316), - [520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(317), - [522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(318), - [524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(319), - [526] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(321), - [528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(322), + [486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), + [488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(297), + [490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(293), + [492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), + [494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), + [496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), + [498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(301), + [500] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(295), + [502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(302), + [504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(303), + [506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assert_statement, 2), + [508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(306), + [510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_return_statement, 2), + [512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(308), + [514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_delete_statement, 2), + [516] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(310), + [518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(311), + [520] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(312), + [522] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(313), + [524] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(314), + [526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(317), + [528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(318), [530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(323), - [532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(324), - [534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(325), - [536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(321), - [538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(326), - [540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(327), - [542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(328), - [544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(329), - [546] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(323), - [548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(330), - [550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__simple_statements, 2), - [552] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__simple_statements, 2), - [554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__simple_statements, 2), - [556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(332), - [558] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(333), - [560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(334), - [562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(337), - [564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(340), - [566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), - [568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(342), - [570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(343), - [572] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(344), - [574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(345), - [576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(346), - [578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(347), - [580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(348), - [582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(344), - [584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(349), - [586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(350), - [588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(351), - [590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(352), - [592] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(346), - [594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(353), - [596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(356), - [598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(357), - [600] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(358), - [602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(359), - [604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_variables, 1), - [606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(360), - [608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(358), - [610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), - [612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(362), - [614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(363), - [616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(364), - [618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(366), - [620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(367), - [622] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(368), - [624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(372), - [626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(375), - [628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(376), - [630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_with_item, 1), - [632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(378), - [634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(379), - [636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(380), - [638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(381), - [640] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(382), - [642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(383), - [644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(384), - [646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(385), - [648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), - [650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), - [652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(387), - [654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(388), - [656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(389), - [658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(390), - [660] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(384), - [662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(391), - [664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_async_function_definition, 2), - [666] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_async_function_definition, 2), - [668] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_async_function_definition, 2), - [670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(393), - [672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_global_statement, 2), - [674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(395), - [676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_nonlocal_statement, 2), - [678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_exec_statement, 2), - [680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(398), - [682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(399), - [684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(400), - [686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(403), - [688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(404), - [690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_not_operator, 2), - [692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_unary_operator, 2), - [694] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_unary_operator, 2), - [696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list_splat, 1), - [698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(408), - [700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(409), - [702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(410), - [704] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(411), - [706] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(412), - [708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(413), - [710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(416), - [712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__parameters, 1, .alias_sequence_id = 1), - [714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(418), - [716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(421), - [718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__parameters, 1), - [720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(423), - [722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(425), - [724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_parameters, 1), - [726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_yield, 2), - [728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(428), - [730] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(429), - [732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(430), - [734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(431), - [736] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(432), - [738] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(433), - [740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), - [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 2), - [744] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 2), - [746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(440), - [748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(442), - [750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(443), - [752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(444), - [754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(445), - [756] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(448), - [758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), - [760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), - [762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(451), - [764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(452), - [766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(448), - [768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453), - [770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(454), - [772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(455), - [774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(456), - [776] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(450), - [778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), - [780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(459), - [782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(460), - [784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(461), - [786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(462), - [788] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(463), - [790] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(464), - [792] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(465), - [794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(469), - [796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_dictionary, 2), - [798] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_dictionary, 2), - [800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(472), - [802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(473), - [804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475), - [806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(477), - [808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(478), - [810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), - [812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(480), - [814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(481), - [816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(484), - [818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(485), - [820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(486), - [822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), - [824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(488), - [826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(484), - [828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(489), - [830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), - [832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(491), - [834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(492), - [836] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(486), - [838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), - [840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenated_string_repeat1, 1), - [842] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 1), - [844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenated_string, 2), - [846] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenated_string, 2), - [848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_await, 2), - [850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), - [852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_list, 2, .fragile = true), - [854] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(24), - [856] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(503), - [858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(504), - [860] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(505), - [862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(506), - [864] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(507), - [866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(512), - [868] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(514), - [870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(515), - [872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(516), - [874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), - [876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(518), - [878] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(519), - [880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(525), - [882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(525), - [884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), - [886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(532), - [888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533), - [890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(534), - [892] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(535), - [894] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(536), - [896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call, 2), - [898] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call, 2), - [900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comparison_operator, 2), - [902] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_comparison_operator, 2), - [904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 2), - [906] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2), - [909] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3), - [912] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(4), - [915] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(5), - [918] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6), - [921] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(7), - [924] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(8), - [927] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(9), - [930] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(10), - [933] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(11), - [936] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(12), - [939] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(13), - [942] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(14), - [945] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(15), - [948] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(16), - [951] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(17), - [954] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(18), - [957] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(19), - [960] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(20), - [963] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(21), - [966] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(22), - [969] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(23), - [972] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(24), - [975] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(25), - [978] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(26), - [981] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(27), - [984] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(28), - [987] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(29), - [990] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(30), - [993] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(28), - [996] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(28), - [999] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(31), - [1002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_decorated_definition, 2), - [1004] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_decorated_definition, 2), - [1006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_decorated_definition, 2), - [1008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_decorated_definition_repeat1, 2), - [1010] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(22), - [1013] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(541), - [1015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_dotted_name, 2), - [1017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__import_list, 2), - [1019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(545), - [1021] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(547), - [1023] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(548), - [1025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), - [1027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551), - [1029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553), - [1031] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_import_from_statement_repeat1, 2), - [1033] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_import_from_statement_repeat1, 2), SHIFT_REPEAT(48), - [1036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_import_from_statement_repeat1, 2), - [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554), - [1040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), - [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(556), - [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_tuple, 3, .fragile = true), - [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_tuple, 3, .fragile = true), - [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(560), - [1050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(563), - [1052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), - [1054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), - [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(568), - [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(569), - [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(571), - [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(572), - [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(573), - [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(574), - [1068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(575), - [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(571), - [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(576), - [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(577), - [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), - [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(579), - [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(573), - [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(580), - [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(582), - [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), - [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(586), - [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), - [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(588), - [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), - [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), - [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_expression, 3), - [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), + [532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(325), + [534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(326), + [536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(329), + [538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(330), + [540] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(335), + [542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_raise_statement, 2), + [544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), + [546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(339), + [548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(340), + [550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), + [552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(342), + [554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(344), + [556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(345), + [558] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(346), + [560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(347), + [562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(348), + [564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(349), + [566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(350), + [568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(346), + [570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(351), + [572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(352), + [574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(353), + [576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(354), + [578] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(348), + [580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(355), + [582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(356), + [584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__simple_statements, 2), + [586] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__simple_statements, 2), + [588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__simple_statements, 2), + [590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(359), + [592] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(360), + [594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), + [596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(364), + [598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(367), + [600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(368), + [602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(369), + [604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(370), + [606] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(371), + [608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(372), + [610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(373), + [612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(374), + [614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(375), + [616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(371), + [618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(376), + [620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(377), + [622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(378), + [624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(379), + [626] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(373), + [628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(380), + [630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(383), + [632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(384), + [634] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(385), + [636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), + [638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_variables, 1), + [640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(387), + [642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(385), + [644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(388), + [646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(389), + [648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(390), + [650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(391), + [652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(393), + [654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394), + [656] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(395), + [658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(399), + [660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(402), + [662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(403), + [664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_with_item, 1), + [666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(405), + [668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(406), + [670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(407), + [672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(408), + [674] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(409), + [676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(410), + [678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(411), + [680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(412), + [682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(413), + [684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(409), + [686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(414), + [688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(415), + [690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(416), + [692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(417), + [694] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(411), + [696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(418), + [698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_async_function_definition, 2), + [700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_async_function_definition, 2), + [702] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_async_function_definition, 2), + [704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), + [706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_global_statement, 2), + [708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(422), + [710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_nonlocal_statement, 2), + [712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_exec_statement, 2), + [714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(425), + [716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(426), + [718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(427), + [720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(429), + [722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(431), + [724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(432), + [726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_not_operator, 2), + [728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_unary_operator, 2), + [730] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_unary_operator, 2), + [732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list_splat, 1), + [734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436), + [736] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(437), + [738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), + [740] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(439), + [742] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(440), + [744] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(441), + [746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(444), + [748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__parameters, 1, .alias_sequence_id = 1), + [750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(446), + [752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), + [754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__parameters, 1), + [756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(451), + [758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453), + [760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_parameters, 1), + [762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_yield, 2), + [764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(456), + [766] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(457), + [768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), + [770] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(459), + [772] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(460), + [774] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(461), + [776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(465), + [778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 2), + [780] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 2), + [782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(468), + [784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), + [786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(471), + [788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(472), + [790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(473), + [792] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(476), + [794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(477), + [796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(478), + [798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), + [800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(480), + [802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(476), + [804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(481), + [806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(482), + [808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(483), + [810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(484), + [812] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(478), + [814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(485), + [816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), + [818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(488), + [820] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(489), + [822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), + [824] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(491), + [826] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(492), + [828] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(493), + [830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(497), + [832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_dictionary, 2), + [834] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_dictionary, 2), + [836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(500), + [838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(501), + [840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(503), + [842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(505), + [844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(506), + [846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(507), + [848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(508), + [850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(509), + [852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(512), + [854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(513), + [856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), + [858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(515), + [860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(516), + [862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(512), + [864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), + [866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518), + [868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(519), + [870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(520), + [872] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(514), + [874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(521), + [876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenated_string_repeat1, 1), + [878] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 1), + [880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenated_string, 2), + [882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenated_string, 2), + [884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_await, 2), + [886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 2), + [888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_list, 2, .fragile = true), + [890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(24), + [892] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(531), + [894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), + [896] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(533), + [898] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(534), + [900] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(535), + [902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(540), + [904] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(542), + [906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(543), + [908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(544), + [910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(545), + [912] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(546), + [914] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(547), + [916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553), + [918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(553), + [920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(559), + [922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(560), + [924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(561), + [926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(562), + [928] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(563), + [930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(564), + [932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_call, 2), + [934] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_call, 2), + [936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_comparison_operator, 2), + [938] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_comparison_operator, 2), + [940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 2), + [942] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2), + [945] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3), + [948] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(4), + [951] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(5), + [954] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6), + [957] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(7), + [960] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(8), + [963] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(9), + [966] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(10), + [969] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(11), + [972] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(12), + [975] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(13), + [978] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(14), + [981] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(15), + [984] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(16), + [987] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(17), + [990] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(18), + [993] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(19), + [996] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(20), + [999] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(21), + [1002] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(22), + [1005] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(23), + [1008] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(24), + [1011] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(25), + [1014] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(26), + [1017] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(27), + [1020] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(28), + [1023] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(29), + [1026] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(30), + [1029] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(28), + [1032] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(28), + [1035] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(31), + [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_decorated_definition, 2), + [1040] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_decorated_definition, 2), + [1042] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_decorated_definition, 2), + [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_decorated_definition_repeat1, 2), + [1046] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(22), + [1049] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(569), + [1051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_dotted_name, 2), + [1053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__import_list, 2), + [1055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(573), + [1057] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(575), + [1059] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(576), + [1061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), + [1063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(579), + [1065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(581), + [1067] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_import_from_statement_repeat1, 2), + [1069] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_import_from_statement_repeat1, 2), SHIFT_REPEAT(48), + [1072] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_import_from_statement_repeat1, 2), + [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(582), + [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), + [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), + [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_tuple, 3, .fragile = true), + [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_tuple, 3, .fragile = true), + [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(588), + [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(591), + [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(594), + [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), + [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(596), + [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(597), + [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(599), + [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(600), + [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(601), [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(602), - [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__comprehension_body, 1), - [1106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(603), - [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(606), - [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(608), - [1112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(609), - [1114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(610), - [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(616), - [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(616), - [1120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(625), - [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(626), - [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(627), - [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_chevron, 2), - [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(631), - [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(632), - [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(633), - [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(636), - [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(637), - [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), - [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(640), - [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_print_statement, 3), - [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(646), - [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(650), - [1148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), - [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(652), - [1152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), - [1154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(658), - [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assert_statement, 3), - [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(667), - [1160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(669), - [1162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_raise_statement, 3), - [1164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(672), - [1166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(673), - [1168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(674), - [1170] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(675), - [1172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(676), - [1174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(677), - [1176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(678), - [1178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(679), - [1180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(675), - [1182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(680), - [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), - [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(682), - [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(683), - [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(677), - [1192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(684), - [1194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), - [1196] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_list, 2, .fragile = true), - [1198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(693), - [1200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698), - [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(698), - [1204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__simple_statements, 3), - [1206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__simple_statements, 3), - [1208] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__simple_statements, 3), - [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__simple_statements_repeat1, 2), - [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(704), - [1214] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(705), - [1217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(707), - [1219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(710), - [1221] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(711), - [1223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(718), - [1225] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(718), - [1227] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variables, 2), - [1229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(734), - [1231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_variables, 2), - [1233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(736), - [1235] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(737), - [1237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(740), - [1239] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(741), - [1241] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(742), - [1243] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(743), - [1245] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(744), - [1247] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(745), - [1249] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(746), - [1251] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(747), - [1253] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(748), - [1255] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(749), - [1257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(755), - [1259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(756), - [1261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__suite, 1), - [1263] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__suite, 1), - [1265] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__suite, 1), - [1267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(758), - [1269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), - [1271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(764), - [1273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(767), - [1275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(770), - [1277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(778), - [1279] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(778), - [1281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(784), - [1283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(785), - [1285] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(786), - [1287] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(787), - [1289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(791), - [1291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), - [1293] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(793), - [1295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_global_statement, 3), - [1297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_nonlocal_statement, 3), - [1299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(798), - [1301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_decorator, 3), - [1303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(801), - [1305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(804), - [1307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list_splat, 2), - [1309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(807), - [1311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(808), - [1313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(809), - [1315] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(810), - [1317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(811), - [1319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(812), - [1321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(813), - [1323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(814), - [1325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(810), - [1327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(815), - [1329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816), - [1331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(817), - [1333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(818), - [1335] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(812), - [1337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), - [1339] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(821), - [1341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__parameters, 2, .alias_sequence_id = 1), - [1343] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(822), - [1345] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(825), - [1347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(826), - [1349] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(827), - [1351] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(828), - [1353] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(829), - [1355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), - [1357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda, 3, .fragile = true), - [1359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__parameters, 2), - [1361] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(836), - [1363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(837), - [1365] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(838), - [1367] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(839), - [1369] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(840), - [1371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), - [1373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_yield, 3), - [1375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3), - [1377] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 3), - [1379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), - [1381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), - [1383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), - [1385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(855), - [1387] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(856), - [1389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(857), - [1391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(858), - [1393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(859), - [1395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(860), - [1397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), - [1399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(861), - [1401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(862), - [1403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(863), - [1405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(864), - [1407] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(858), - [1409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(865), - [1411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868), - [1413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), - [1415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), - [1417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), - [1419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(879), - [1421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), - [1423] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(884), - [1425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_dictionary, 3), - [1427] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_dictionary, 3), - [1429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), - [1431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), - [1433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(896), - [1435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), - [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(898), - [1439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(899), - [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(900), - [1443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(901), - [1445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(902), - [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), - [1449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), - [1451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(904), - [1453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(905), - [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906), - [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(900), - [1459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(907), - [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(910), - [1463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), - [1465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(913), - [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_set, 3), - [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_set, 3), - [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), - [1473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), - [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), - [1477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(921), - [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(924), - [1481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(925), - [1483] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(926), - [1485] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(927), - [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(928), - [1489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), - [1491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(934), - [1493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), - [1495] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(939), - [1497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), - [1499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1501] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1503] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(166), - [1506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__right_hand_side, 1), - [1508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), - [1510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment, 3), - [1512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_augmented_assignment, 3), - [1514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_print_statement_repeat1, 2), - [1516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), - [1518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(952), - [1520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(953), - [1522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(954), - [1524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(955), - [1526] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(956), - [1528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(957), - [1530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), - [1532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), - [1534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(960), - [1536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(956), - [1538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(961), - [1540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), - [1542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), - [1544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(964), - [1546] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(958), - [1548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965), - [1550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_boolean_operator, 3), - [1552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 3), - [1554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_list, 3), - [1556] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_print_statement_repeat1, 2), SHIFT_REPEAT(967), - [1559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_attribute, 3), - [1561] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_attribute, 3), - [1563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), - [1565] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 2), - [1567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(968), - [1569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(969), - [1571] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(971), - [1573] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(972), - [1575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(973), - [1577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_binary_operator, 3), - [1579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_binary_operator, 3), - [1581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), - [1583] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), - [1585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_slice, 1), - [1587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(976), - [1589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(979), - [1591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(982), - [1593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(983), - [1595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(984), - [1597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(985), - [1599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(986), - [1601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(987), - [1603] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(989), - [1605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), - [1607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(991), - [1609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), - [1611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), - [1613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(989), - [1615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), - [1617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), - [1619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(996), - [1621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(997), - [1623] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(991), - [1625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), - [1627] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(180), - [1630] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(181), - [1633] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(180), - [1636] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(187), - [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_dotted_name_repeat1, 2), - [1641] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(194), - [1644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__import_list_repeat1, 2), - [1646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__import_list, 3), - [1648] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__import_list_repeat1, 2), SHIFT_REPEAT(1000), - [1651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_aliased_import, 3), - [1653] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(199), - [1656] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1001), - [1658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_wildcard_import, 1), - [1660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_from_statement, 4), - [1662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1005), - [1664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1007), - [1666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1008), - [1668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), - [1670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), - [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1017), - [1674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), - [1676] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1022), - [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), - [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), - [1682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1030), - [1684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1031), - [1686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1032), - [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1033), - [1690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1034), - [1692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1035), - [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1036), - [1696] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(232), - [1699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_tuple, 4), - [1701] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_tuple, 4), - [1703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_tuple_repeat1, 2), - [1705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1037), - [1707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1038), - [1709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_generator_expression, 4), - [1711] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_generator_expression, 4), - [1713] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1039), - [1715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), - [1717] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1041), - [1719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1042), - [1721] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1043), - [1723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__comprehension_body_repeat1, 1), - [1725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__comprehension_body, 2), - [1727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), - [1729] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(1048), - [1732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1049), - [1734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), - [1736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1053), - [1738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1054), - [1740] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(248), - [1743] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(249), - [1746] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(248), - [1749] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(255), - [1752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), - [1754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1057), - [1756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1058), - [1758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1060), - [1760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1061), - [1762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), - [1764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), - [1766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1064), - [1768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065), - [1770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), - [1772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), - [1774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1068), - [1776] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(278), - [1779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_print_statement, 4), - [1781] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_print_statement_repeat1, 2), SHIFT_REPEAT(300), - [1784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), - [1786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), - [1788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1071), - [1790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074), - [1792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1075), - [1794] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(289), - [1797] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(290), - [1800] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(289), - [1803] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(296), - [1806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1078), - [1808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1085), - [1810] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1085), - [1812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_raise_statement, 4), - [1814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), - [1816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_list, 3), - [1818] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_print_statement_repeat1, 2), SHIFT_REPEAT(1093), - [1821] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(323), - [1824] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(324), - [1827] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(323), - [1830] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(330), - [1833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__simple_statements, 4), - [1835] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__simple_statements, 4), - [1837] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__simple_statements, 4), - [1839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), - [1841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097), - [1843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), - [1845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1100), - [1847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [1849] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), - [1851] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1102), - [1853] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1103), - [1855] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [1857] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(346), - [1860] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(347), - [1863] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(346), - [1866] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(353), - [1869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), - [1871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), - [1873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_variables_repeat1, 2), - [1875] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variables, 3), - [1877] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_variables_repeat1, 2), SHIFT_REPEAT(1111), - [1880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), - [1882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114), - [1884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1115), - [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 4), - [1888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 4), - [1890] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 4), - [1892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__suite, 2), - [1894] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__suite, 2), - [1896] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__suite, 2), - [1898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1118), - [1900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1119), - [1902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1124), - [1904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(748), - [1906] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1127), - [1908] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1128), - [1910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1129), - [1912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747), - [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(749), - [1916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1132), - [1918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1133), - [1920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1134), - [1922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1136), - [1924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_try_statement_repeat1, 1), - [1926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_try_statement_repeat1, 1), - [1928] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_try_statement_repeat1, 1), - [1930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_try_statement, 4), - [1932] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_try_statement, 4), - [1934] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_try_statement, 4), - [1936] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1137), - [1938] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(758), - [1940] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(759), - [1942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_with_statement_repeat1, 2), - [1944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1142), - [1946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_with_statement, 4), - [1948] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_with_statement, 4), - [1950] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_with_statement, 4), - [1952] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_with_statement_repeat1, 2), SHIFT_REPEAT(375), - [1955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_with_item, 3), - [1957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), - [1959] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(384), - [1962] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(385), - [1965] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(384), - [1968] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(391), - [1971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameters, 2), - [1973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1147), - [1975] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1148), - [1977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1149), - [1979] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1150), - [1981] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1151), - [1983] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1152), - [1985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1155), - [1987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1156), - [1989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1157), - [1991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1159), - [1993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1160), - [1995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1161), - [1997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1163), - [1999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), - [2001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_global_statement_repeat1, 2), - [2003] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(395), - [2006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_exec_statement, 4), - [2008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 4), - [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_class_definition, 4), - [2012] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 4), - [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_decorator, 4), - [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_dictionary_splat, 3), - [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), - [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1178), - [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1178), - [2024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__parameters_repeat1, 2, .alias_sequence_id = 2), - [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__parameters_repeat1, 2), - [2028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), - [2030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1188), - [2032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type, 1), - [2034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), - [2036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), - [2038] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1191), - [2040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1192), - [2042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1193), - [2044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1194), - [2046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1195), - [2048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), - [2050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1196), - [2052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1197), - [2054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1198), - [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1199), - [2058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1193), - [2060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200), - [2062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1202), - [2064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_default_parameter, 3, .alias_sequence_id = 1), - [2066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__parameters, 3, .alias_sequence_id = 1), - [2068] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1203), - [2071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1205), - [2073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208), - [2075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), - [2077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), - [2079] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1211), - [2081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1212), - [2083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1213), - [2085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1214), - [2087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1215), - [2089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1211), - [2091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1216), - [2093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1217), - [2095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), - [2097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1219), - [2099] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1213), - [2101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1220), - [2103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_typed_parameter, 3), - [2105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), - [2107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_default_parameter, 3), - [2109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__parameters, 3), - [2111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda, 4, .fragile = true), - [2113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1224), - [2115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), - [2117] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1231), - [2119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 4), - [2121] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 4), - [2123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_list_repeat1, 2), - [2125] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), - [2127] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1239), - [2130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1240), - [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1241), - [2134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list_comprehension, 4), - [2136] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list_comprehension, 4), - [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1242), - [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), - [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1244), - [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1245), - [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1246), - [2148] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(450), - [2151] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(451), - [2154] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(450), - [2157] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(457), - [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1252), - [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259), - [2164] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1259), - [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_set, 4), - [2168] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_set, 4), - [2170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1266), - [2172] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1267), - [2175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_dictionary, 4), - [2177] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_dictionary, 4), - [2179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_dictionary_repeat1, 2), - [2181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1268), - [2183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1269), - [2185] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(1270), - [2188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1271), - [2190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), - [2192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pair, 3), - [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1276), - [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), - [2198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1278), - [2200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1279), - [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1280), - [2204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1281), - [2206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), - [2208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1283), - [2210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279), - [2212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1284), - [2214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), - [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1286), - [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), - [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1281), - [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1288), - [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1290), - [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_set_comprehension, 4), - [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_set_comprehension, 4), - [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1291), - [2232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1292), - [2234] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1293), - [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1294), - [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1295), - [2240] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(486), - [2243] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(487), - [2246] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(486), - [2249] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(493), - [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_dictionary_comprehension, 4), - [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_dictionary_comprehension, 4), - [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), - [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1302), - [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1310), - [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1310), - [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), - [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 3), - [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1319), - [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1322), - [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 3), - [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 3), - [2276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_slice, 2), - [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1325), - [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1327), - [2282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1329), - [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), - [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 4), - [2288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1335), - [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1340), - [2292] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1340), - [2294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1347), - [2296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1348), - [2298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1350), - [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_from_statement, 5), - [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1352), - [2304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1354), - [2306] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_print_statement_repeat1, 2), SHIFT_REPEAT(1355), - [2309] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(573), - [2312] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(574), - [2315] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(573), - [2318] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(580), - [2321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1357), - [2323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1358), - [2325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1359), - [2327] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1361), - [2329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1366), - [2331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_clause, 2), - [2333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1370), - [2335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1371), - [2337] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1372), - [2339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1373), - [2341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1374), - [2343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1375), - [2345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1376), - [2347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1372), - [2349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1377), - [2351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1378), - [2353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1379), - [2355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1380), - [2357] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1374), - [2359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1381), - [2361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__comprehension_body_repeat1, 2), - [2363] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__comprehension_body_repeat1, 2), SHIFT_REPEAT(603), - [2366] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__comprehension_body_repeat1, 2), SHIFT_REPEAT(238), - [2369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_tuple, 5), - [2371] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_tuple, 5), - [2373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1383), - [2375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1384), - [2377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1385), - [2379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1386), - [2381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1387), - [2383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1388), - [2385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1389), - [2387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1390), - [2389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1392), - [2391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1393), - [2393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1394), - [2395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1395), - [2397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1397), - [2399] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(677), - [2402] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(678), - [2405] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(677), - [2408] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(684), - [2411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1401), - [2413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1402), - [2415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1403), - [2417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1405), - [2419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), - [2421] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_if_statement_repeat1, 1), - [2423] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), - [2425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [2427] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), - [2429] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [2431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1410), - [2433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1412), - [2435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1413), - [2437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1414), - [2439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), - [2441] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 5), - [2443] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), - [2445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1415), - [2447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1416), - [2449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1417), - [2451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1418), - [2453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1419), - [2455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1421), - [2457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1424), - [2459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__suite, 3), - [2461] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__suite, 3), - [2463] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__suite, 3), - [2465] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(741), - [2468] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(742), - [2471] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(743), - [2474] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(744), - [2477] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(745), - [2480] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(746), - [2483] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(747), - [2486] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(748), - [2489] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(749), - [2492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1426), - [2494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1428), - [2496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1429), - [2498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1431), - [2500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_try_statement, 5), - [2502] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_try_statement, 5), - [2504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_try_statement, 5), - [2506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_try_statement_repeat1, 2), - [2508] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_try_statement_repeat1, 2), - [2510] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(758), - [2513] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_try_statement_repeat1, 2), - [2515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1433), - [2517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_with_statement, 5), - [2519] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_with_statement, 5), - [2521] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_with_statement, 5), - [2523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1437), - [2525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1440), - [2527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1441), - [2529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442), - [2531] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1443), - [2533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1444), - [2535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1445), - [2537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1446), - [2539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1447), - [2541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1443), - [2543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1448), - [2545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1449), - [2547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1450), - [2549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1451), - [2551] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1445), - [2553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1452), - [2555] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1454), - [2557] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1455), - [2559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1459), - [2561] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1461), - [2563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1462), - [2565] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1463), - [2567] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1464), - [2569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1465), - [2571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1470), - [2573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameters, 3), - [2575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__function_definition, 5), - [2577] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__function_definition, 5), - [2579] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__function_definition, 5), - [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1472), - [2583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_exec_statement, 5), - [2585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 5), - [2587] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_class_definition, 5), - [2589] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 5), - [2591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1474), - [2593] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(812), - [2596] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(813), - [2599] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(812), - [2602] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(819), - [2605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1477), - [2607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1484), - [2609] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1484), - [2611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1492), - [2613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1499), - [2615] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1499), - [2617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1507), - [2619] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(858), - [2622] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(859), - [2625] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(858), - [2628] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(865), - [2631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 5), - [2633] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 5), - [2635] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1510), - [2637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1514), - [2639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1518), - [2641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1519), - [2643] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1520), - [2645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1521), - [2647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1522), - [2649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1523), - [2651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1524), - [2653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1520), - [2655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1525), - [2657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1526), - [2659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1527), - [2661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1528), - [2663] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1522), - [2665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1529), - [2667] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__comprehension_body_repeat1, 2), SHIFT_REPEAT(879), - [2670] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__comprehension_body_repeat1, 2), SHIFT_REPEAT(443), - [2673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1532), - [2675] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(900), - [2678] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(901), - [2681] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(900), - [2684] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(907), - [2687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_set, 5), - [2689] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_set, 5), - [2691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_dictionary, 5), - [2693] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_dictionary, 5), - [2695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1537), - [2697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1544), - [2699] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1544), - [2701] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1550), - [2703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1554), - [2705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1558), - [2707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559), - [2709] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1560), - [2711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1561), - [2713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1562), - [2715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1563), - [2717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1564), - [2719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1560), - [2721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1565), - [2723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1566), - [2725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1567), - [2727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1568), - [2729] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1562), - [2731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1569), - [2733] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__comprehension_body_repeat1, 2), SHIFT_REPEAT(934), - [2736] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__comprehension_body_repeat1, 2), SHIFT_REPEAT(479), - [2739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1572), - [2741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), - [2743] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(958), - [2746] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(959), - [2749] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(958), - [2752] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(965), - [2755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_keyword_argument, 3, .alias_sequence_id = 1), - [2757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_keyword_argument, 3), - [2759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 4), - [2761] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 4), - [2763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_argument_list_repeat1, 2), - [2765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1574), - [2767] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1575), - [2770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_slice, 3), - [2772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5), - [2774] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5), - [2776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_subscript_repeat1, 2), - [2778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1578), - [2780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1579), - [2782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1580), - [2784] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_subscript_repeat1, 2), SHIFT_REPEAT(1581), - [2787] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(991), - [2790] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(992), - [2793] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(991), - [2796] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(998), - [2799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_from_statement, 6), - [2801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1586), - [2803] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1588), - [2805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1589), - [2807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1591), - [2809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_in_clause, 4), - [2811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1593), - [2813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression_within_for_in_clause, 1), - [2815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression_within_for_in_clause, 1, .alias_sequence_id = 3), - [2817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1596), - [2819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1603), - [2821] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1603), - [2823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1609), - [2825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1610), - [2827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1611), - [2829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1612), - [2831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1614), - [2833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1615), - [2835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [2837] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), - [2839] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [2841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2843] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2845] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(1102), - [2848] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [2852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), - [2854] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), - [2856] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_print_statement_repeat1, 2), SHIFT_REPEAT(1618), - [2859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1619), - [2861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1620), - [2863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1621), - [2865] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1622), - [2867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1626), - [2869] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1627), - [2871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1630), - [2873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1631), - [2875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1635), - [2877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1638), - [2879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1639), - [2881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1640), - [2883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1642), - [2885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_except_clause, 3), - [2887] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_except_clause, 3), - [2889] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_except_clause, 3), - [2891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_finally_clause, 3), - [2893] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_finally_clause, 3), - [2895] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_finally_clause, 3), - [2897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1645), - [2899] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1646), - [2901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_try_statement, 6), - [2903] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_try_statement, 6), - [2905] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_try_statement, 6), - [2907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1650), - [2909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1657), - [2911] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1657), - [2913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1663), - [2915] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1664), - [2918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1666), - [2920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1669), - [2922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1670), - [2924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1671), - [2926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1672), - [2928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1673), - [2930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1674), - [2932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1675), - [2934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1676), - [2936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1672), - [2938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1677), - [2940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1678), - [2942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1679), - [2944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1680), - [2946] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1674), - [2948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1681), - [2950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1683), - [2952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1687), - [2954] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1193), - [2957] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1194), - [2960] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1193), - [2963] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1200), - [2966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_typed_default_parameter, 5, .alias_sequence_id = 1), - [2968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1690), - [2970] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1213), - [2973] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1214), - [2976] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1213), - [2979] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1220), - [2982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_typed_default_parameter, 5), - [2984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1693), - [2986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1695), - [2988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1698), - [2990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1705), - [2992] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1705), - [2994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1713), - [2996] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1281), - [2999] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1282), - [3002] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1281), - [3005] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1288), - [3008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1715), - [3010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1717), - [3012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1720), - [3014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1727), - [3016] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1727), - [3018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 5), - [3020] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 5), - [3022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_slice, 4), - [3024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6), - [3026] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6), - [3028] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__import_list_repeat1, 2), SHIFT_REPEAT(1736), - [3031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_from_statement, 7), - [3033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1738), - [3035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_in_clause, 5), - [3037] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_in_clause, 5), - [3039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1740), - [3041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1369), - [3043] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1743), - [3045] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1374), - [3048] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1375), - [3051] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1374), - [3054] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1381), - [3057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_else_clause, 3), - [3059] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 3), - [3061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_else_clause, 3), - [3063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), - [3065] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), - [3067] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), - [3069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1746), - [3071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1748), - [3073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1749), - [3075] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1751), - [3077] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1752), - [3079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1756), - [3081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1757), - [3083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1759), - [3085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1760), - [3087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1763), - [3089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1765), - [3091] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1766), - [3093] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1630), - [3095] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1631), - [3097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1770), - [3099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1776), - [3101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_except_clause, 4), - [3103] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_except_clause, 4), - [3105] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_except_clause, 4), - [3107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1777), - [3109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1779), - [3111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1780), - [3113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1783), - [3115] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1445), - [3118] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1446), - [3121] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1445), - [3124] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1452), - [3127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1787), - [3129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1794), - [3131] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1794), - [3133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__function_definition, 7), - [3135] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__function_definition, 7), - [3137] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__function_definition, 7), - [3139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1803), - [3141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1804), - [3143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1517), - [3145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1807), - [3147] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1522), - [3150] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1523), - [3153] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1522), - [3156] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1529), - [3159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1810), - [3161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1811), - [3163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1557), - [3165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1814), - [3167] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1562), - [3170] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1563), - [3173] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1562), - [3176] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1569), - [3179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_slice, 5), - [3181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_within_for_in_clause, 3), - [3183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_in_clause_repeat1, 2), - [3185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_in_clause, 6), - [3187] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_in_clause, 6), - [3189] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(1817), - [3192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_elif_clause, 4), - [3194] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), - [3196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_elif_clause, 4), - [3198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1819), - [3200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1820), - [3202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1821), - [3204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1823), - [3206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1827), - [3208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1828), - [3210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1829), - [3212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1830), - [3214] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1831), - [3216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1834), - [3218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1835), - [3220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1837), - [3222] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1630), - [3225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1839), - [3227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1840), - [3229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1842), - [3231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1843), - [3233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1844), - [3235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1847), - [3237] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1674), - [3240] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1675), - [3243] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1674), - [3246] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1681), - [3249] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(1849), - [3252] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(1851), - [3255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_within_for_in_clause, 4), - [3257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1853), - [3259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1854), - [3261] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(1751), - [3264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1857), - [3266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1858), - [3268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1860), - [3270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1861), - [3272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1865), - [3274] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1866), - [3276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_except_clause, 6), - [3278] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_except_clause, 6), - [3280] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_except_clause, 6), - [3282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1870), - [3284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1873), - [3286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1874), - [3288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1875), - [3290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1876), - [3292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1877), - [3294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1879), - [3296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1880), - [3298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1882), - [3300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1884), - [3302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1885), - [3304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1886), - [3306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1887), + [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(603), + [1106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(599), + [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(604), + [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), + [1112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(606), + [1114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(607), + [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(601), + [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(608), + [1120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(610), + [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(611), + [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), + [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(615), + [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(616), + [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(618), + [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parenthesized_expression, 3), + [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_parenthesized_expression, 3), + [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(623), + [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(630), + [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__comprehension_body, 1), + [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(631), + [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(634), + [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(636), + [1148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(637), + [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), + [1152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(644), + [1154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(644), + [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(653), + [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(654), + [1160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(655), + [1162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_chevron, 2), + [1164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(659), + [1166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(660), + [1168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(661), + [1170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(664), + [1172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(665), + [1174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(666), + [1176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(668), + [1178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_print_statement, 3), + [1180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(674), + [1182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(678), + [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(679), + [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(680), + [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686), + [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(686), + [1192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assert_statement, 3), + [1194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(695), + [1196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(697), + [1198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_raise_statement, 3), + [1200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(700), + [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(701), + [1204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(702), + [1206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(703), + [1208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(704), + [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(705), + [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(706), + [1214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(707), + [1216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(703), + [1218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(708), + [1220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(709), + [1222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(710), + [1224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(711), + [1226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(705), + [1228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(712), + [1230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(714), + [1232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(715), + [1234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(716), + [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(720), + [1238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(721), + [1240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(722), + [1242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(725), + [1244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(726), + [1246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(727), + [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(729), + [1250] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_list, 2, .fragile = true), + [1252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(739), + [1254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(741), + [1256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742), + [1258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(743), + [1260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(749), + [1262] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(749), + [1264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__simple_statements, 3), + [1266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__simple_statements, 3), + [1268] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__simple_statements, 3), + [1270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__simple_statements_repeat1, 2), + [1272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(758), + [1274] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(759), + [1277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), + [1279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(764), + [1281] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(765), + [1283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(772), + [1285] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(772), + [1287] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variables, 2), + [1289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(788), + [1291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_variables, 2), + [1293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(790), + [1295] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(791), + [1297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794), + [1299] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(795), + [1301] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(796), + [1303] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(797), + [1305] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(798), + [1307] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(799), + [1309] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(800), + [1311] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(801), + [1313] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(802), + [1315] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(803), + [1317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(809), + [1319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(810), + [1321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__suite, 1), + [1323] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__suite, 1), + [1325] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__suite, 1), + [1327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(812), + [1329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(813), + [1331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(818), + [1333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(821), + [1335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), + [1337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(832), + [1339] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(832), + [1341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), + [1343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(839), + [1345] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(840), + [1347] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(841), + [1349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), + [1351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(846), + [1353] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(847), + [1355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_global_statement, 3), + [1357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_nonlocal_statement, 3), + [1359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(852), + [1361] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(853), + [1363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_decorator, 3), + [1365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(855), + [1367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), + [1369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(859), + [1371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(862), + [1373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list_splat, 2), + [1375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(865), + [1377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(866), + [1379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), + [1381] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(868), + [1383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), + [1385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), + [1387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(871), + [1389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(872), + [1391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868), + [1393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), + [1395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(874), + [1397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(875), + [1399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), + [1401] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(870), + [1403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(877), + [1405] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(879), + [1407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__parameters, 2, .alias_sequence_id = 1), + [1409] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(880), + [1411] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(883), + [1413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), + [1415] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(885), + [1417] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(886), + [1419] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(887), + [1421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), + [1423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda, 3, .fragile = true), + [1425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__parameters, 2), + [1427] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(894), + [1429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), + [1431] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(896), + [1433] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(897), + [1435] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(898), + [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), + [1439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_yield, 3), + [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3), + [1443] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 3), + [1445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(908), + [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), + [1449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), + [1451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(913), + [1453] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(914), + [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), + [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(916), + [1459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), + [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), + [1463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(914), + [1465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), + [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(920), + [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(921), + [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), + [1473] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(916), + [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(923), + [1477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926), + [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(928), + [1481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(931), + [1483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), + [1485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(937), + [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(942), + [1489] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(942), + [1491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_dictionary, 3), + [1493] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_dictionary, 3), + [1495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), + [1497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(953), + [1499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(954), + [1501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(955), + [1503] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(956), + [1505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(957), + [1507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), + [1509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), + [1511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(960), + [1513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(956), + [1515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(961), + [1517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), + [1519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), + [1521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(964), + [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(958), + [1525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965), + [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(968), + [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970), + [1531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), + [1533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_set, 3), + [1535] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_set, 3), + [1537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(973), + [1539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(975), + [1541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(976), + [1543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(979), + [1545] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(982), + [1547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(983), + [1549] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(984), + [1551] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(985), + [1553] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(986), + [1555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(991), + [1557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), + [1559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(997), + [1561] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(997), + [1563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), + [1565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1567] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1569] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(172), + [1572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__right_hand_side, 1), + [1574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1004), + [1576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_assignment, 3), + [1578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_augmented_assignment, 3), + [1580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_print_statement_repeat1, 2), + [1582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1007), + [1584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1010), + [1586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011), + [1588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), + [1590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1013), + [1592] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1014), + [1594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1015), + [1596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1016), + [1598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1017), + [1600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), + [1602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1014), + [1604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1019), + [1606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), + [1608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), + [1610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), + [1612] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1016), + [1614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1023), + [1616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_boolean_operator, 3), + [1618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_statement, 3), + [1620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expression_list, 3), + [1622] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_print_statement_repeat1, 2), SHIFT_REPEAT(1025), + [1625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_attribute, 3), + [1627] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_attribute, 3), + [1629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 2), + [1631] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 2), + [1633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1026), + [1635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), + [1637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1029), + [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1030), + [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1031), + [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_binary_operator, 3), + [1645] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_binary_operator, 3), + [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), + [1649] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), + [1651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_slice, 1), + [1653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1034), + [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1037), + [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), + [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1041), + [1661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1042), + [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), + [1665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044), + [1667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1045), + [1669] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1047), + [1671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), + [1673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1049), + [1675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), + [1677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1051), + [1679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), + [1681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1052), + [1683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1053), + [1685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1054), + [1687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1055), + [1689] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1049), + [1691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), + [1693] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(186), + [1696] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(187), + [1699] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(186), + [1702] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(193), + [1705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_dotted_name_repeat1, 2), + [1707] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(200), + [1710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__import_list_repeat1, 2), + [1712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__import_list, 3), + [1714] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__import_list_repeat1, 2), SHIFT_REPEAT(1058), + [1717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_aliased_import, 3), + [1719] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(205), + [1722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1059), + [1724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_wildcard_import, 1), + [1726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_from_statement, 4), + [1728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), + [1730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065), + [1732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), + [1734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), + [1736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), + [1738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1075), + [1740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1080), + [1742] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1080), + [1744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), + [1746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), + [1748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), + [1750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), + [1752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), + [1754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), + [1756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), + [1758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), + [1760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1094), + [1762] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(238), + [1765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_tuple, 4), + [1767] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_tuple, 4), + [1769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_tuple_repeat1, 2), + [1771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), + [1773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), + [1775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_generator_expression, 4), + [1777] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_generator_expression, 4), + [1779] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1097), + [1781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1098), + [1783] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1099), + [1785] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1100), + [1787] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1101), + [1789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__comprehension_body_repeat1, 1), + [1791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__comprehension_body, 2), + [1793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105), + [1795] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(1106), + [1798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1107), + [1800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), + [1802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1111), + [1804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), + [1806] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(254), + [1809] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(255), + [1812] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(254), + [1815] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(261), + [1818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114), + [1820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1115), + [1822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1116), + [1824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1118), + [1826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1119), + [1828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1120), + [1830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1121), + [1832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1122), + [1834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1123), + [1836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1124), + [1838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1125), + [1840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), + [1842] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(284), + [1845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_print_statement, 4), + [1847] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_print_statement_repeat1, 2), SHIFT_REPEAT(306), + [1850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1127), + [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1128), + [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1129), + [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1132), + [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1133), + [1860] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(295), + [1863] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(296), + [1866] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(295), + [1869] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(302), + [1872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1136), + [1874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1143), + [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1143), + [1878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1149), + [1880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1150), + [1882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1151), + [1884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1153), + [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1154), + [1888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1155), + [1890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1156), + [1892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1157), + [1894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1158), + [1896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1159), + [1898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1160), + [1900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1161), + [1902] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(335), + [1905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_raise_statement, 4), + [1907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1162), + [1909] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expression_list, 3), + [1911] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_print_statement_repeat1, 2), SHIFT_REPEAT(1163), + [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), + [1916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1165), + [1918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), + [1920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1169), + [1922] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(348), + [1925] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(349), + [1928] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(348), + [1931] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(355), + [1934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__simple_statements, 4), + [1936] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__simple_statements, 4), + [1938] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__simple_statements, 4), + [1940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1172), + [1942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1173), + [1944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), + [1946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1176), + [1948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [1950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), + [1952] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1178), + [1954] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1179), + [1956] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [1958] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(373), + [1961] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(374), + [1964] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(373), + [1967] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(380), + [1970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1184), + [1972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), + [1974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_variables_repeat1, 2), + [1976] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variables, 3), + [1978] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_variables_repeat1, 2), SHIFT_REPEAT(1187), + [1981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1188), + [1983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), + [1985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), + [1987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 4), + [1989] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 4), + [1991] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 4), + [1993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__suite, 2), + [1995] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__suite, 2), + [1997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__suite, 2), + [1999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1194), + [2001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1195), + [2003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200), + [2005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(802), + [2007] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1203), + [2009] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1204), + [2011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1205), + [2013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(801), + [2015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803), + [2017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208), + [2019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), + [2021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), + [2023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1212), + [2025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_try_statement_repeat1, 1), + [2027] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_try_statement_repeat1, 1), + [2029] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_try_statement_repeat1, 1), + [2031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_try_statement, 4), + [2033] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_try_statement, 4), + [2035] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_try_statement, 4), + [2037] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1213), + [2039] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(812), + [2041] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(813), + [2043] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_with_statement_repeat1, 2), + [2045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), + [2047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_with_statement, 4), + [2049] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_with_statement, 4), + [2051] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_with_statement, 4), + [2053] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_with_statement_repeat1, 2), SHIFT_REPEAT(402), + [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_with_item, 3), + [2058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1221), + [2060] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(411), + [2063] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(412), + [2066] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(411), + [2069] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(418), + [2072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameters, 2), + [2074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1223), + [2076] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1224), + [2078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1225), + [2080] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1226), + [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1227), + [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1228), + [2086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), + [2088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), + [2090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233), + [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1235), + [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), + [2096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1237), + [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), + [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1240), + [2102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_global_statement_repeat1, 2), + [2104] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(422), + [2107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_exec_statement, 4), + [2109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 4), + [2111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_class_definition, 4), + [2113] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 4), + [2115] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(429), + [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), + [2120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), + [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_decorator, 4), + [2124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_dictionary_splat, 3), + [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1250), + [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1257), + [2130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1257), + [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__parameters_repeat1, 2, .alias_sequence_id = 2), + [2134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__parameters_repeat1, 2), + [2136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1264), + [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1267), + [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_type, 1), + [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1268), + [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1269), + [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1270), + [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1271), + [2150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1272), + [2152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), + [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274), + [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1270), + [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1275), + [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1276), + [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), + [2164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1278), + [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1272), + [2168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279), + [2170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1281), + [2172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_default_parameter, 3, .alias_sequence_id = 1), + [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__parameters, 3, .alias_sequence_id = 1), + [2176] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1282), + [2179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1284), + [2181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), + [2183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1288), + [2185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), + [2187] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1290), + [2189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1291), + [2191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1292), + [2193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1293), + [2195] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1294), + [2197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1290), + [2199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1295), + [2201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1296), + [2203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1297), + [2205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), + [2207] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1292), + [2209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1299), + [2211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_typed_parameter, 3), + [2213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1301), + [2215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_default_parameter, 3), + [2217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__parameters, 3), + [2219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda, 4, .fragile = true), + [2221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1303), + [2223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1310), + [2225] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1310), + [2227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 4), + [2229] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 4), + [2231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_list_repeat1, 2), + [2233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1317), + [2235] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1318), + [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1319), + [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1320), + [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list_comprehension, 4), + [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list_comprehension, 4), + [2246] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1321), + [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1322), + [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1323), + [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1324), + [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1325), + [2256] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(478), + [2259] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(479), + [2262] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(478), + [2265] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(485), + [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1331), + [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1338), + [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1338), + [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_set, 4), + [2276] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_set, 4), + [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1345), + [2280] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1346), + [2283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_dictionary, 4), + [2285] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_dictionary, 4), + [2287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_dictionary_repeat1, 2), + [2289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1347), + [2291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1348), + [2293] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(1349), + [2296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1350), + [2298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1352), + [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pair, 3), + [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1355), + [2304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1356), + [2306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1357), + [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1358), + [2310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1359), + [2312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1360), + [2314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1361), + [2316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1362), + [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1358), + [2320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1363), + [2322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1364), + [2324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1365), + [2326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1366), + [2328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1360), + [2330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367), + [2332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1369), + [2334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_set_comprehension, 4), + [2336] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_set_comprehension, 4), + [2338] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1370), + [2340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1371), + [2342] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1372), + [2344] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1373), + [2346] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1374), + [2348] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(514), + [2351] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(515), + [2354] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(514), + [2357] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(521), + [2360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_dictionary_comprehension, 4), + [2362] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_dictionary_comprehension, 4), + [2364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1379), + [2366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1381), + [2368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1389), + [2370] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1389), + [2372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 3), + [2374] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 3), + [2376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1398), + [2378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1401), + [2380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 3), + [2382] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 3), + [2384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_slice, 2), + [2386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1404), + [2388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1406), + [2390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1408), + [2392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), + [2394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 4), + [2396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1414), + [2398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1419), + [2400] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1419), + [2402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1426), + [2404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1427), + [2406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1429), + [2408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_from_statement, 5), + [2410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1431), + [2412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1433), + [2414] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_print_statement_repeat1, 2), SHIFT_REPEAT(1434), + [2417] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(601), + [2420] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(602), + [2423] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(601), + [2426] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(608), + [2429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1436), + [2431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1437), + [2433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1438), + [2435] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1440), + [2437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1445), + [2439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_clause, 2), + [2441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1449), + [2443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1450), + [2445] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1451), + [2447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1452), + [2449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1453), + [2451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1454), + [2453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1455), + [2455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1451), + [2457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1456), + [2459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1457), + [2461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1458), + [2463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1459), + [2465] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1453), + [2467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1460), + [2469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__comprehension_body_repeat1, 2), + [2471] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__comprehension_body_repeat1, 2), SHIFT_REPEAT(631), + [2474] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__comprehension_body_repeat1, 2), SHIFT_REPEAT(244), + [2477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_tuple, 5), + [2479] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_tuple, 5), + [2481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1462), + [2483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1463), + [2485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1464), + [2487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1465), + [2489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1466), + [2491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1467), + [2493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1468), + [2495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1469), + [2497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1471), + [2499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1472), + [2501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1473), + [2503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1474), + [2505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1476), + [2507] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(705), + [2510] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(706), + [2513] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(705), + [2516] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(712), + [2519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1478), + [2521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1479), + [2523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1480), + [2525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1481), + [2527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1483), + [2529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1484), + [2531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1485), + [2533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1486), + [2535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1488), + [2537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1489), + [2539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1490), + [2541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1492), + [2543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), + [2545] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_if_statement_repeat1, 1), + [2547] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), + [2549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [2551] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), + [2553] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [2555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1497), + [2557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1499), + [2559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1500), + [2561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1501), + [2563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), + [2565] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 5), + [2567] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 5), + [2569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1502), + [2571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1503), + [2573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1504), + [2575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1505), + [2577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1506), + [2579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1508), + [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1511), + [2583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__suite, 3), + [2585] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__suite, 3), + [2587] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__suite, 3), + [2589] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(795), + [2592] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(796), + [2595] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(797), + [2598] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(798), + [2601] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(799), + [2604] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(800), + [2607] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(801), + [2610] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(802), + [2613] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(803), + [2616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1513), + [2618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1515), + [2620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1516), + [2622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1518), + [2624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_try_statement, 5), + [2626] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_try_statement, 5), + [2628] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_try_statement, 5), + [2630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_try_statement_repeat1, 2), + [2632] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_try_statement_repeat1, 2), + [2634] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(812), + [2637] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_try_statement_repeat1, 2), + [2639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1520), + [2641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_with_statement, 5), + [2643] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_with_statement, 5), + [2645] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_with_statement, 5), + [2647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1524), + [2649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1527), + [2651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1528), + [2653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1529), + [2655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1530), + [2657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1531), + [2659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1532), + [2661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1533), + [2663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1534), + [2665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1530), + [2667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1535), + [2669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1536), + [2671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1537), + [2673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1538), + [2675] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1532), + [2677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1539), + [2679] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1541), + [2681] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1542), + [2683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1546), + [2685] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1548), + [2687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1549), + [2689] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1550), + [2691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1551), + [2693] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1552), + [2695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1557), + [2697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_parameters, 3), + [2699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__function_definition, 5), + [2701] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__function_definition, 5), + [2703] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__function_definition, 5), + [2705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559), + [2707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_exec_statement, 5), + [2709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 5), + [2711] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_class_definition, 5), + [2713] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_class_definition, 5), + [2715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1560), + [2717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1561), + [2719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1563), + [2721] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(870), + [2724] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(871), + [2727] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(870), + [2730] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(877), + [2733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1566), + [2735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1573), + [2737] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1573), + [2739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1581), + [2741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1588), + [2743] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1588), + [2745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1596), + [2747] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(916), + [2750] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(917), + [2753] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(916), + [2756] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(923), + [2759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 5), + [2761] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 5), + [2763] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1599), + [2765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1603), + [2767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1607), + [2769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1608), + [2771] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1609), + [2773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1610), + [2775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1611), + [2777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1612), + [2779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1613), + [2781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1609), + [2783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1614), + [2785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1615), + [2787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1616), + [2789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1617), + [2791] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1611), + [2793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1618), + [2795] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__comprehension_body_repeat1, 2), SHIFT_REPEAT(937), + [2798] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__comprehension_body_repeat1, 2), SHIFT_REPEAT(471), + [2801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1621), + [2803] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(958), + [2806] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(959), + [2809] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(958), + [2812] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(965), + [2815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_set, 5), + [2817] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_set, 5), + [2819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_dictionary, 5), + [2821] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_dictionary, 5), + [2823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1626), + [2825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1633), + [2827] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1633), + [2829] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1639), + [2831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1643), + [2833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1647), + [2835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1648), + [2837] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1649), + [2839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1650), + [2841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1651), + [2843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1652), + [2845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1653), + [2847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1649), + [2849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1654), + [2851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1655), + [2853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1656), + [2855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1657), + [2857] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1651), + [2859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1658), + [2861] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__comprehension_body_repeat1, 2), SHIFT_REPEAT(992), + [2864] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__comprehension_body_repeat1, 2), SHIFT_REPEAT(507), + [2867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1661), + [2869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_conditional_expression, 5, .fragile = true), + [2871] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1016), + [2874] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1017), + [2877] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1016), + [2880] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1023), + [2883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_keyword_argument, 3, .alias_sequence_id = 1), + [2885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_keyword_argument, 3), + [2887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 4), + [2889] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 4), + [2891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1663), + [2895] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1664), + [2898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_slice, 3), + [2900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5), + [2902] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5), + [2904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_subscript_repeat1, 2), + [2906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1667), + [2908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1668), + [2910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1669), + [2912] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_subscript_repeat1, 2), SHIFT_REPEAT(1670), + [2915] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1049), + [2918] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1050), + [2921] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1049), + [2924] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1056), + [2927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_from_statement, 6), + [2929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1675), + [2931] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1677), + [2933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1678), + [2935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1680), + [2937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_in_clause, 4), + [2939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1682), + [2941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression_within_for_in_clause, 1), + [2943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__expression_within_for_in_clause, 1, .alias_sequence_id = 3), + [2945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1685), + [2947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1692), + [2949] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1692), + [2951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1698), + [2953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1699), + [2955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1700), + [2957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1701), + [2959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1703), + [2961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1704), + [2963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1705), + [2965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1706), + [2967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [2969] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), + [2971] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [2973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), + [2975] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_if_statement_repeat1, 2), + [2977] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(1178), + [2980] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), + [2982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), + [2984] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6), + [2986] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6), + [2988] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_print_statement_repeat1, 2), SHIFT_REPEAT(1709), + [2991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1710), + [2993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1711), + [2995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1712), + [2997] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1713), + [2999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1717), + [3001] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1718), + [3003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1721), + [3005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1722), + [3007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1726), + [3009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1729), + [3011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1730), + [3013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1731), + [3015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1733), + [3017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_except_clause, 3), + [3019] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_except_clause, 3), + [3021] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_except_clause, 3), + [3023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_finally_clause, 3), + [3025] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_finally_clause, 3), + [3027] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_finally_clause, 3), + [3029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1736), + [3031] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1737), + [3033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_try_statement, 6), + [3035] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_try_statement, 6), + [3037] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_try_statement, 6), + [3039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1741), + [3041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1748), + [3043] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1748), + [3045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1754), + [3047] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1755), + [3050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1757), + [3052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1760), + [3054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1761), + [3056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1762), + [3058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1763), + [3060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1764), + [3062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1765), + [3064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1766), + [3066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1767), + [3068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1763), + [3070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1768), + [3072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1769), + [3074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1770), + [3076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1771), + [3078] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1765), + [3080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1772), + [3082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1774), + [3084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1776), + [3086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1779), + [3088] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1272), + [3091] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1273), + [3094] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1272), + [3097] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1279), + [3100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_typed_default_parameter, 5, .alias_sequence_id = 1), + [3102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1782), + [3104] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1292), + [3107] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1293), + [3110] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1292), + [3113] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1299), + [3116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_typed_default_parameter, 5), + [3118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1785), + [3120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1787), + [3122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1790), + [3124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1797), + [3126] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1797), + [3128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1805), + [3130] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1360), + [3133] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1361), + [3136] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1360), + [3139] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1367), + [3142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1807), + [3144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1809), + [3146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1812), + [3148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1819), + [3150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1819), + [3152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_argument_list, 5), + [3154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_argument_list, 5), + [3156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_slice, 4), + [3158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6), + [3160] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6), + [3162] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym__import_list_repeat1, 2), SHIFT_REPEAT(1828), + [3165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_import_from_statement, 7), + [3167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1830), + [3169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_in_clause, 5), + [3171] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_in_clause, 5), + [3173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1832), + [3175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1448), + [3177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1835), + [3179] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1453), + [3182] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1454), + [3185] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1453), + [3188] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1460), + [3191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_else_clause, 3), + [3193] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 3), + [3195] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_else_clause, 3), + [3197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), + [3199] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 7), + [3201] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 7), + [3203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1838), + [3205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1840), + [3207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1841), + [3209] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1843), + [3211] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1844), + [3213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1848), + [3215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1849), + [3217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1851), + [3219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1852), + [3221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1855), + [3223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1857), + [3225] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1858), + [3227] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1721), + [3229] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1722), + [3231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1862), + [3233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1868), + [3235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_except_clause, 4), + [3237] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_except_clause, 4), + [3239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_except_clause, 4), + [3241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1869), + [3243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1871), + [3245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1872), + [3247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1875), + [3249] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1532), + [3252] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1533), + [3255] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1532), + [3258] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1539), + [3261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1879), + [3263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1886), + [3265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1886), + [3267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__function_definition, 7), + [3269] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__function_definition, 7), + [3271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__function_definition, 7), + [3273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1895), + [3275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1896), + [3277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1606), + [3279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1899), + [3281] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1611), + [3284] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1612), + [3287] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1611), + [3290] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1618), + [3293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1902), + [3295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1903), + [3297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1646), + [3299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1906), + [3301] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1651), + [3304] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1652), + [3307] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1651), + [3310] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1658), + [3313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_slice, 5), + [3315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_within_for_in_clause, 3), + [3317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_in_clause_repeat1, 2), + [3319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_in_clause, 6), + [3321] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_in_clause, 6), + [3323] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(1909), + [3326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_elif_clause, 4), + [3328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), + [3330] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_elif_clause, 4), + [3332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1911), + [3334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1912), + [3336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1913), + [3338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1915), + [3340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1919), + [3342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1920), + [3344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1921), + [3346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1922), + [3348] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1923), + [3350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1926), + [3352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1927), + [3354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1929), + [3356] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1721), + [3359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1931), + [3361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1932), + [3363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1934), + [3365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1935), + [3367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1936), + [3369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1939), + [3371] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1765), + [3374] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1766), + [3377] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1765), + [3380] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_comparison_operator_repeat1, 2), SHIFT_REPEAT(1772), + [3383] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(1941), + [3386] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(1943), + [3389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_lambda_within_for_in_clause, 4), + [3391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1945), + [3393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1946), + [3395] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(1843), + [3398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1949), + [3400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1950), + [3402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1952), + [3404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1953), + [3406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1957), + [3408] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1958), + [3410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_except_clause, 6), + [3412] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_except_clause, 6), + [3414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_except_clause, 6), + [3416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1962), + [3418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1965), + [3420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1966), + [3422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1967), + [3424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1968), + [3426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1969), + [3428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1971), + [3430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1972), + [3432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1974), + [3434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1976), + [3436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1977), + [3438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1978), + [3440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1979), }; void *tree_sitter_python_external_scanner_create();